first commit
This commit is contained in:
2
modules/account_stock_eu/__init__.py
Normal file
2
modules/account_stock_eu/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
BIN
modules/account_stock_eu/__pycache__/__init__.cpython-311.pyc
Normal file
BIN
modules/account_stock_eu/__pycache__/__init__.cpython-311.pyc
Normal file
Binary file not shown.
BIN
modules/account_stock_eu/__pycache__/account.cpython-311.pyc
Normal file
BIN
modules/account_stock_eu/__pycache__/account.cpython-311.pyc
Normal file
Binary file not shown.
Binary file not shown.
BIN
modules/account_stock_eu/__pycache__/carrier.cpython-311.pyc
Normal file
BIN
modules/account_stock_eu/__pycache__/carrier.cpython-311.pyc
Normal file
Binary file not shown.
BIN
modules/account_stock_eu/__pycache__/company.cpython-311.pyc
Normal file
BIN
modules/account_stock_eu/__pycache__/company.cpython-311.pyc
Normal file
Binary file not shown.
BIN
modules/account_stock_eu/__pycache__/country.cpython-311.pyc
Normal file
BIN
modules/account_stock_eu/__pycache__/country.cpython-311.pyc
Normal file
Binary file not shown.
BIN
modules/account_stock_eu/__pycache__/customs.cpython-311.pyc
Normal file
BIN
modules/account_stock_eu/__pycache__/customs.cpython-311.pyc
Normal file
Binary file not shown.
BIN
modules/account_stock_eu/__pycache__/exceptions.cpython-311.pyc
Normal file
BIN
modules/account_stock_eu/__pycache__/exceptions.cpython-311.pyc
Normal file
Binary file not shown.
BIN
modules/account_stock_eu/__pycache__/sale.cpython-311.pyc
Normal file
BIN
modules/account_stock_eu/__pycache__/sale.cpython-311.pyc
Normal file
Binary file not shown.
BIN
modules/account_stock_eu/__pycache__/stock.cpython-311.pyc
Normal file
BIN
modules/account_stock_eu/__pycache__/stock.cpython-311.pyc
Normal file
Binary file not shown.
13
modules/account_stock_eu/account.py
Normal file
13
modules/account_stock_eu/account.py
Normal file
@@ -0,0 +1,13 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from trytond.model import fields
|
||||
from trytond.pool import PoolMeta
|
||||
|
||||
|
||||
class FiscalYear(metaclass=PoolMeta):
|
||||
__name__ = 'account.fiscalyear'
|
||||
|
||||
intrastat_extended = fields.Boolean(
|
||||
"Intrastat Extended",
|
||||
help="Check to generate extended declaration.")
|
||||
12
modules/account_stock_eu/account.xml
Normal file
12
modules/account_stock_eu/account.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.ui.view" id="account_fiscalyear_view_form">
|
||||
<field name="model">account.fiscalyear</field>
|
||||
<field name="inherit" ref="account.fiscalyear_view_form"/>
|
||||
<field name="name">account_fiscalyear_form</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
547
modules/account_stock_eu/account_stock_eu.py
Normal file
547
modules/account_stock_eu/account_stock_eu.py
Normal file
@@ -0,0 +1,547 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
import csv
|
||||
import zipfile
|
||||
from io import BytesIO, TextIOWrapper
|
||||
from itertools import groupby
|
||||
|
||||
from sql import Null
|
||||
from sql.aggregate import Min, Sum
|
||||
from sql.functions import Extract, Round
|
||||
|
||||
from trytond.cache import Cache
|
||||
from trytond.model import (
|
||||
Check, DeactivableMixin, Index, ModelSQL, ModelView, Unique, Workflow,
|
||||
fields)
|
||||
from trytond.modules.account.exceptions import FiscalYearNotFoundError
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
from trytond.pyson import Eval
|
||||
from trytond.tools import grouped_slice
|
||||
from trytond.transaction import Transaction
|
||||
from trytond.wizard import Button, StateTransition, StateView, Wizard
|
||||
|
||||
|
||||
class IntrastatTransaction(DeactivableMixin, ModelSQL, ModelView):
|
||||
__name__ = 'account.stock.eu.intrastat.transaction'
|
||||
_rec_name = 'code'
|
||||
|
||||
code = fields.Char("Code", size=2, required=True)
|
||||
parent = fields.Many2One(
|
||||
'account.stock.eu.intrastat.transaction', "Parent")
|
||||
description = fields.Char("Name", translate=True, required=True)
|
||||
|
||||
_code_cache = Cache(
|
||||
'account.stock.eu.intrastat.transaction.code', context=False)
|
||||
|
||||
@classmethod
|
||||
def get(cls, code, date=None):
|
||||
pool = Pool()
|
||||
Date = pool.get('ir.date')
|
||||
if date is None:
|
||||
date = Date.today()
|
||||
if date.year < 2022:
|
||||
code = code[:1]
|
||||
transaction_id = cls._code_cache.get(code, -1)
|
||||
if transaction_id == -1:
|
||||
transactions = cls.search([
|
||||
('code', '=', code)
|
||||
], limit=1)
|
||||
if transactions:
|
||||
transaction, = transactions
|
||||
cls._code_cache.set(code, transaction.id)
|
||||
else:
|
||||
transaction = None
|
||||
cls._code_cache.set(code, None)
|
||||
elif transaction_id is not None:
|
||||
transaction = cls(transaction_id)
|
||||
else:
|
||||
transaction = None
|
||||
return transaction
|
||||
|
||||
@classmethod
|
||||
def on_modification(cls, mode, transactions, field_names=None):
|
||||
super().on_modification(mode, transactions, field_names=field_names)
|
||||
cls._code_cache.clear()
|
||||
|
||||
|
||||
class IntrastatTransport(DeactivableMixin, ModelSQL, ModelView):
|
||||
__name__ = 'account.stock.eu.intrastat.transport'
|
||||
|
||||
name = fields.Char("Name", translate=True, required=True)
|
||||
code = fields.Char("Code", size=2, required=True)
|
||||
|
||||
|
||||
class IntrastatDeclaration(Workflow, ModelSQL, ModelView):
|
||||
__name__ = 'account.stock.eu.intrastat.declaration'
|
||||
|
||||
_states = {
|
||||
'readonly': Eval('id', -1) >= 0,
|
||||
}
|
||||
|
||||
company = fields.Many2One(
|
||||
'company.company', "Company", required=True,
|
||||
states=_states)
|
||||
country = fields.Many2One(
|
||||
'country.country', "Country", required=True,
|
||||
states=_states)
|
||||
month = fields.Date(
|
||||
"Month", required=True,
|
||||
states=_states)
|
||||
state = fields.Selection([
|
||||
('opened', "Opened"),
|
||||
('closed', "Closed"),
|
||||
], "State", readonly=True, required=True, sort=False)
|
||||
|
||||
extended = fields.Function(
|
||||
fields.Boolean("Extended"),
|
||||
'on_change_with_extended')
|
||||
|
||||
del _states
|
||||
|
||||
_get_cache = Cache(
|
||||
'account.stock.eu.intrastat.declaration.get', context=False)
|
||||
|
||||
@classmethod
|
||||
def __setup__(cls):
|
||||
super().__setup__()
|
||||
t = cls.__table__()
|
||||
cls._sql_constraints += [
|
||||
('company_country_month_unique',
|
||||
Unique(t, t.company, t.country, t.month),
|
||||
'account_stock_eu'
|
||||
'.msg_intrastat_declaration_company_country_month_unique'),
|
||||
('month_first_day', Check(t, Extract('DAY', t.month) == 1),
|
||||
'account_stock_eu'
|
||||
'.msg_intrastat_declaration_month_first_day'),
|
||||
]
|
||||
cls._sql_indexes.add(
|
||||
Index(
|
||||
t,
|
||||
(t.state, Index.Equality(cardinality='low')),
|
||||
where=t.state == 'opened'))
|
||||
cls._order = [
|
||||
('month', 'DESC'),
|
||||
('company.id', 'DESC'),
|
||||
('country.id', 'DESC'),
|
||||
('id', 'DESC'),
|
||||
]
|
||||
cls._transitions |= {
|
||||
('opened', 'closed'),
|
||||
('closed', 'opened'),
|
||||
}
|
||||
cls._buttons.update({
|
||||
'export': {},
|
||||
})
|
||||
|
||||
@classmethod
|
||||
def default_state(cls):
|
||||
return 'opened'
|
||||
|
||||
@fields.depends('company', 'month')
|
||||
def on_change_with_extended(self, name=None):
|
||||
pool = Pool()
|
||||
FiscalYear = pool.get('account.fiscalyear')
|
||||
if self.company and self.month:
|
||||
try:
|
||||
fiscalyear = FiscalYear.find(
|
||||
self.company.id,
|
||||
date=self.month)
|
||||
except FiscalYearNotFoundError:
|
||||
pass
|
||||
else:
|
||||
return fiscalyear.intrastat_extended
|
||||
|
||||
def get_rec_name(self, name):
|
||||
pool = Pool()
|
||||
Lang = pool.get('ir.lang')
|
||||
lang = Lang.get()
|
||||
return '-'.join([
|
||||
self.country.rec_name,
|
||||
self.company.rec_name,
|
||||
lang.strftime(self.month, '%m/%Y')])
|
||||
|
||||
@classmethod
|
||||
def get(cls, company, country, date):
|
||||
month = date.replace(day=1)
|
||||
key = (company.id, country.id, date)
|
||||
declaration = cls._get_cache.get(key)
|
||||
if declaration is None:
|
||||
declarations = cls.search([
|
||||
('company', '=', company.id),
|
||||
('country', '=', country.id),
|
||||
('month', '=', month),
|
||||
], limit=1)
|
||||
if declarations:
|
||||
declaration, = declarations
|
||||
else:
|
||||
declaration = cls(
|
||||
company=company, country=country, month=month)
|
||||
declaration.save()
|
||||
cls._get_cache.set(key, declaration.id)
|
||||
else:
|
||||
declaration = cls(declaration)
|
||||
cls.open([declaration])
|
||||
return declaration
|
||||
|
||||
@classmethod
|
||||
@Workflow.transition('opened')
|
||||
def open(cls, declarations):
|
||||
pass
|
||||
|
||||
@classmethod
|
||||
@Workflow.transition('closed')
|
||||
def close(cls, declarations):
|
||||
pass
|
||||
|
||||
@classmethod
|
||||
@ModelView.button_action(
|
||||
'account_stock_eu.wizard_intrastat_declaration_export')
|
||||
def export(cls, declarations):
|
||||
cls.close(declarations)
|
||||
|
||||
@classmethod
|
||||
def on_modification(cls, mode, declarations, field_names=None):
|
||||
super().on_modification(mode, declarations, field_names=field_names)
|
||||
cls._get_cache.clear()
|
||||
|
||||
|
||||
class IntrastatDeclarationContext(ModelView):
|
||||
__name__ = 'account.stock.eu.intrastat.declaration.context'
|
||||
|
||||
company = fields.Many2One('company.company', "Company", required=True)
|
||||
declaration = fields.Many2One(
|
||||
'account.stock.eu.intrastat.declaration', "Declaration", required=True,
|
||||
domain=[
|
||||
('company', '=', Eval('company', -1)),
|
||||
])
|
||||
|
||||
@classmethod
|
||||
def default_company(cls):
|
||||
pool = Pool()
|
||||
Declaration = pool.get('account.stock.eu.intrastat.declaration')
|
||||
declaration = cls.default_declaration()
|
||||
if declaration is not None:
|
||||
declaration = Declaration(declaration)
|
||||
return declaration.company.id
|
||||
return Transaction().context.get('company')
|
||||
|
||||
@fields.depends('company', 'declaration')
|
||||
def on_change_company(self):
|
||||
if not self.company:
|
||||
self.declaration = None
|
||||
else:
|
||||
if self.declaration.company != self.company:
|
||||
self.declaration = None
|
||||
|
||||
@classmethod
|
||||
def default_declaration(cls):
|
||||
return Transaction().context.get('declaration')
|
||||
|
||||
|
||||
class IntrastatDeclarationLine(ModelSQL, ModelView):
|
||||
__name__ = 'account.stock.eu.intrastat.declaration.line'
|
||||
|
||||
type = fields.Selection([
|
||||
('arrival', "Arrival"),
|
||||
('dispatch', "Dispatch"),
|
||||
], "Type", sort=False)
|
||||
country = fields.Many2One('country.country', "Country")
|
||||
subdivision = fields.Many2One('country.subdivision', "Subdivision")
|
||||
tariff_code = fields.Many2One('customs.tariff.code', "Tariff Code")
|
||||
weight = fields.Float("Weight", digits=(None, 3))
|
||||
value = fields.Numeric("Value", digits=(None, 2))
|
||||
transaction = fields.Many2One(
|
||||
'account.stock.eu.intrastat.transaction', "Transaction")
|
||||
additional_unit = fields.Float("Additional Unit", digits=(None, 3))
|
||||
country_of_origin = fields.Many2One('country.country', "Country of Origin")
|
||||
vat = fields.Many2One(
|
||||
'party.identifier', "VAT",
|
||||
states={
|
||||
'invisible': Eval('type') != 'dispatch',
|
||||
})
|
||||
|
||||
@classmethod
|
||||
def __setup__(cls):
|
||||
super().__setup__()
|
||||
cls._order[0:0] = [
|
||||
('type', 'ASC'),
|
||||
('country', 'ASC'),
|
||||
('tariff_code', 'ASC'),
|
||||
('transaction', 'ASC'),
|
||||
('country_of_origin', 'ASC'),
|
||||
('vat', 'ASC'),
|
||||
]
|
||||
|
||||
@classmethod
|
||||
def view_attributes(cls):
|
||||
pool = Pool()
|
||||
Declaration = pool.get('account.stock.eu.intrastat.declaration')
|
||||
context = Transaction().context
|
||||
attributes = super().view_attributes()
|
||||
if context.get('declaration') is not None:
|
||||
declaration = Declaration(context['declaration'])
|
||||
if not declaration.extended:
|
||||
attributes.append(
|
||||
('//field[@name="transport"]|//field[@name="incoterm"]',
|
||||
'tree_invisible', True))
|
||||
return attributes
|
||||
|
||||
@classmethod
|
||||
def table_query(cls):
|
||||
pool = Pool()
|
||||
Move = pool.get('stock.move')
|
||||
context = Transaction().context
|
||||
|
||||
move = Move.__table__()
|
||||
|
||||
where = move.intrastat_type != Null
|
||||
where &= move.state == 'done'
|
||||
where &= move.company == context.get('company')
|
||||
where &= move.intrastat_declaration == context.get('declaration')
|
||||
|
||||
return (move
|
||||
.select(
|
||||
Min(move.id).as_('id'),
|
||||
*cls._columns(move),
|
||||
where=where,
|
||||
group_by=cls._group_by(move),
|
||||
))
|
||||
|
||||
@classmethod
|
||||
def _columns(cls, move):
|
||||
weight_factor = 10 ** cls.weight.digits[1]
|
||||
value_precision = cls.value.digits[1]
|
||||
additional_unit_factor = 10 ** cls.additional_unit.digits[1]
|
||||
return [
|
||||
move.intrastat_type.as_('type'),
|
||||
move.intrastat_country.as_('country'),
|
||||
move.intrastat_subdivision.as_('subdivision'),
|
||||
move.intrastat_tariff_code.as_('tariff_code'),
|
||||
(Round(Sum(move.internal_weight) * weight_factor)
|
||||
/ weight_factor).as_('weight'),
|
||||
Round(Sum(move.intrastat_value), value_precision).as_('value'),
|
||||
move.intrastat_transaction.as_('transaction'),
|
||||
(Round(
|
||||
Sum(move.intrastat_additional_unit)
|
||||
* additional_unit_factor)
|
||||
/ additional_unit_factor).as_('additional_unit'),
|
||||
move.intrastat_country_of_origin.as_('country_of_origin'),
|
||||
move.intrastat_vat.as_('vat'),
|
||||
]
|
||||
|
||||
@classmethod
|
||||
def _group_by(cls, move):
|
||||
return [
|
||||
move.intrastat_type,
|
||||
move.intrastat_country,
|
||||
move.intrastat_subdivision,
|
||||
move.intrastat_tariff_code,
|
||||
move.intrastat_transaction,
|
||||
move.intrastat_country_of_origin,
|
||||
move.intrastat_vat,
|
||||
]
|
||||
|
||||
|
||||
class IntrastatDeclarationLine_Incoterm(metaclass=PoolMeta):
|
||||
__name__ = 'account.stock.eu.intrastat.declaration.line'
|
||||
|
||||
transport = fields.Many2One(
|
||||
'account.stock.eu.intrastat.transport', "Transport")
|
||||
incoterm = fields.Many2One('incoterm.incoterm', "Incoterm")
|
||||
|
||||
@classmethod
|
||||
def _columns(cls, move):
|
||||
return super()._columns(move) + [
|
||||
move.intrastat_transport.as_('transport'),
|
||||
move.intrastat_incoterm.as_('incoterm'),
|
||||
]
|
||||
|
||||
@classmethod
|
||||
def _group_by(cls, move):
|
||||
return super()._group_by(move) + [
|
||||
move.intrastat_transport,
|
||||
move.intrastat_incoterm,
|
||||
]
|
||||
|
||||
|
||||
class IntrastatDeclarationExport(Wizard):
|
||||
__name__ = 'account.stock.eu.intrastat.declaration.export'
|
||||
start_state = 'generate'
|
||||
|
||||
generate = StateTransition()
|
||||
result = StateView(
|
||||
'account.stock.eu.intrastat.declaration.export.result',
|
||||
'account_stock_eu.intrastat_declaration_export_result_view_form', [
|
||||
Button("Close", 'end', 'tryton-close'),
|
||||
])
|
||||
|
||||
def transition_generate(self):
|
||||
pool = Pool()
|
||||
Line = pool.get('account.stock.eu.intrastat.declaration.line')
|
||||
declaration = self.record
|
||||
with Transaction().set_context(
|
||||
company=declaration.company.id,
|
||||
declaration=declaration.id):
|
||||
lines = Line.search([], order=[('type', 'ASC')])
|
||||
|
||||
content, extension = self.export(lines)
|
||||
self.result.file = self.result.__class__.file.cast(content)
|
||||
self.result.filename = f'{declaration.rec_name}.{extension}'
|
||||
return 'result'
|
||||
|
||||
def export(self, lines):
|
||||
country = self.record.country
|
||||
method = getattr(
|
||||
self, 'export_%s' % country.code.lower(), self.export_fallback)
|
||||
return method(lines)
|
||||
|
||||
def export_fallback(self, lines):
|
||||
data = BytesIO()
|
||||
writer = csv.writer(
|
||||
TextIOWrapper(data, encoding='utf-8', write_through=True))
|
||||
for line in lines:
|
||||
writer.writerow(self.export_fallback_row(line))
|
||||
return data.getvalue(), 'csv'
|
||||
|
||||
def export_fallback_row(self, line):
|
||||
dispatch = line.type == 'dispatch'
|
||||
return [
|
||||
line.type,
|
||||
line.country.code,
|
||||
line.subdivision.intrastat_code,
|
||||
line.tariff_code.code,
|
||||
round(line.weight, 3),
|
||||
round(line.value, 2),
|
||||
line.transaction.code,
|
||||
line.additional_unit if line.additional_unit is not None else '',
|
||||
line.country_of_origin.code
|
||||
if dispatch and line.country_of_origin else '',
|
||||
line.vat.code if dispatch and line.vat else '',
|
||||
]
|
||||
|
||||
def default_result(self, fields):
|
||||
file = self.result.file
|
||||
self.result.file = None # No need to store in session
|
||||
return {
|
||||
'file': file,
|
||||
'filename': self.result.filename,
|
||||
}
|
||||
|
||||
|
||||
class IntrastatDeclarationExport_Incoterm(metaclass=PoolMeta):
|
||||
__name__ = 'account.stock.eu.intrastat.declaration.export'
|
||||
|
||||
def export_fallback_row(self, line):
|
||||
row = super().export_fallback_row(line)
|
||||
if self.record.extended:
|
||||
row.append(line.transport.code if line.transport else '')
|
||||
row.append(line.incoterm.code if line.incoterm else '')
|
||||
return row
|
||||
|
||||
|
||||
class IntrastatDeclarationExportResult(ModelView):
|
||||
__name__ = 'account.stock.eu.intrastat.declaration.export.result'
|
||||
|
||||
file = fields.Binary("File", readonly=True, filename='filename')
|
||||
filename = fields.Char("File Name", readonly=True)
|
||||
|
||||
|
||||
class IntrastatDeclarationExport_BE(metaclass=PoolMeta):
|
||||
__name__ = 'account.stock.eu.intrastat.declaration.export'
|
||||
|
||||
def export_be(self, lines):
|
||||
data = BytesIO()
|
||||
writer = csv.writer(
|
||||
TextIOWrapper(data, encoding='utf-8', write_through=True),
|
||||
delimiter=';')
|
||||
for line in lines:
|
||||
writer.writerow(self.export_be_row(line))
|
||||
return data.getvalue(), 'csv'
|
||||
|
||||
def export_be_row(self, line):
|
||||
dispatch = line.type == 'dispatch'
|
||||
type = {
|
||||
'arrival': '19',
|
||||
'dispatch': '29',
|
||||
}[line.type]
|
||||
return [
|
||||
type,
|
||||
line.country.code,
|
||||
line.transaction.code,
|
||||
line.subdivision.intrastat_code,
|
||||
line.tariff_code.code,
|
||||
round(line.weight, 2),
|
||||
round(line.additional_unit, 2)
|
||||
if line.additional_unit is not None else '',
|
||||
round(line.value, 2),
|
||||
line.country_of_origin.code
|
||||
if dispatch and line.country_of_origin else '',
|
||||
line.vat.code if dispatch and line.vat else '',
|
||||
]
|
||||
|
||||
|
||||
class IntrastatDeclarationExport_BE_Incoterm(metaclass=PoolMeta):
|
||||
__name__ = 'account.stock.eu.intrastat.declaration.export'
|
||||
|
||||
def export_be_row(self, line):
|
||||
row = super().export_be_row(line)
|
||||
if self.record.extended:
|
||||
row.insert(8, line.transport.code if line.transport else '')
|
||||
row.insert(9, line.incoterm.code if line.incoterm else '')
|
||||
return row
|
||||
|
||||
|
||||
class IntrastatDeclarationExport_ES(metaclass=PoolMeta):
|
||||
__name__ = 'account.stock.eu.intrastat.declaration.export'
|
||||
|
||||
def export_es(self, lines):
|
||||
data = BytesIO()
|
||||
with zipfile.ZipFile(data, 'w') as zip:
|
||||
for type, lines in groupby(lines, key=lambda l: l.type):
|
||||
for i, lines in enumerate(grouped_slice(lines, 999)):
|
||||
content, extension = self._export_es(lines)
|
||||
filename = f'{type}-{i}.{extension}'
|
||||
zip.writestr(filename, content)
|
||||
return data.getvalue(), 'zip'
|
||||
|
||||
def _export_es(self, lines):
|
||||
data = BytesIO()
|
||||
writer = csv.writer(
|
||||
TextIOWrapper(data, encoding='utf-8', write_through=True),
|
||||
delimiter=';')
|
||||
for line in lines:
|
||||
writer.writerow(self.export_es_row(line))
|
||||
return data.getvalue(), 'csv'
|
||||
|
||||
def export_es_row(self, line):
|
||||
dispatch = line.type == 'dispatch'
|
||||
return [
|
||||
line.country.code,
|
||||
line.subdivision.intrastat_code,
|
||||
'', # incoterm
|
||||
line.transaction.code,
|
||||
'', # transport
|
||||
'',
|
||||
line.tariff_code.code,
|
||||
line.country_of_origin.code
|
||||
if dispatch and line.country_of_origin else '',
|
||||
'',
|
||||
round(line.weight, 3),
|
||||
round(line.additional_unit, 3)
|
||||
if line.additional_unit is not None else '',
|
||||
round(line.value, 2),
|
||||
round(line.value, 2),
|
||||
line.vat.code if dispatch and line.vat else '',
|
||||
]
|
||||
|
||||
|
||||
class IntrastatDeclarationExport_ES_Incoterm(metaclass=PoolMeta):
|
||||
__name__ = 'account.stock.eu.intrastat.declaration.export'
|
||||
|
||||
def export_es_row(self, line):
|
||||
row = super().export_es_row(line)
|
||||
if self.record.extended:
|
||||
row[2] = line.incoterm.code if line.incoterm else ''
|
||||
row[4] = line.transport.code if line.transport else ''
|
||||
return row
|
||||
365
modules/account_stock_eu/account_stock_eu.xml
Normal file
365
modules/account_stock_eu/account_stock_eu.xml
Normal file
@@ -0,0 +1,365 @@
|
||||
<?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="intrastat_transaction_view_form">
|
||||
<field name="model">account.stock.eu.intrastat.transaction</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">intrastat_transaction_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="intrastat_transaction_view_list">
|
||||
<field name="model">account.stock.eu.intrastat.transaction</field>
|
||||
<field name="type">tree</field>
|
||||
<field name="name">intrastat_transaction_list</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.access" id="access_intrastat_transaction">
|
||||
<field name="model">account.stock.eu.intrastat.transaction</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
<field name="perm_create" eval="False"/>
|
||||
<field name="perm_delete" eval="False"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="intrastat_transport_view_form">
|
||||
<field name="model">account.stock.eu.intrastat.transport</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">intrastat_transport_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="intrastat_transport_view_list">
|
||||
<field name="model">account.stock.eu.intrastat.transport</field>
|
||||
<field name="type">tree</field>
|
||||
<field name="name">intrastat_transport_list</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.access" id="access_intrastat_transport">
|
||||
<field name="model">account.stock.eu.intrastat.transport</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
<field name="perm_create" eval="False"/>
|
||||
<field name="perm_delete" eval="False"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="intrastat_declaration_view_form">
|
||||
<field name="model">account.stock.eu.intrastat.declaration</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">intrastat_declaration_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="intrastat_declaration_view_list">
|
||||
<field name="model">account.stock.eu.intrastat.declaration</field>
|
||||
<field name="type">tree</field>
|
||||
<field name="name">intrastat_declaration_list</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.act_window" id="act_intrastat_declaration_form">
|
||||
<field name="name">Intrastat Declarations</field>
|
||||
<field name="res_model">account.stock.eu.intrastat.declaration</field>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_intrastat_declaration_form_view1">
|
||||
<field name="sequence" eval="10"/>
|
||||
<field name="view" ref="intrastat_declaration_view_list"/>
|
||||
<field name="act_window" ref="act_intrastat_declaration_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_intrastat_declaration_form_view2">
|
||||
<field name="sequence" eval="20"/>
|
||||
<field name="view" ref="intrastat_declaration_view_form"/>
|
||||
<field name="act_window" ref="act_intrastat_declaration_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.domain" id="act_intrastat_declaration_form_domain_opened">
|
||||
<field name="name">Opened</field>
|
||||
<field name="sequence" eval="10"/>
|
||||
<field name="domain" eval="[('state', '=', 'opened')]" pyson="1"/>
|
||||
<field name="count" eval="True"/>
|
||||
<field name="act_window" ref="act_intrastat_declaration_form"/>
|
||||
</record>
|
||||
<record model="ir.action.act_window.domain" id="act_intrastat_declaration_form_domain_all">
|
||||
<field name="name">All</field>
|
||||
<field name="sequence" eval="9999"/>
|
||||
<field name="domain"></field>
|
||||
<field name="act_window" ref="act_intrastat_declaration_form"/>
|
||||
</record>
|
||||
|
||||
<menuitem
|
||||
parent="account.menu_processing"
|
||||
action="act_intrastat_declaration_form"
|
||||
sequence="50"
|
||||
id="menu_intrastat_declaration"/>
|
||||
|
||||
<record model="ir.model.button" id="intrastat_declaration_export_button">
|
||||
<field name="model">account.stock.eu.intrastat.declaration</field>
|
||||
<field name="name">export</field>
|
||||
<field name="string">Export</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.access" id="access_intrastat_declaration">
|
||||
<field name="model">account.stock.eu.intrastat.declaration</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_intrastat_declaration_account">
|
||||
<field name="model">account.stock.eu.intrastat.declaration</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="False"/>
|
||||
<field name="perm_delete" eval="False"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.rule.group" id="rule_group_intrastat_declaration_companies">
|
||||
<field name="name">User in companies</field>
|
||||
<field name="model">account.stock.eu.intrastat.declaration</field>
|
||||
<field name="global_p" eval="True"/>
|
||||
</record>
|
||||
<record model="ir.rule" id="rule_intrastat_declaration_companies">
|
||||
<field name="domain"
|
||||
eval="[('company', 'in', Eval('companies', []))]"
|
||||
pyson="1"/>
|
||||
<field name="rule_group" ref="rule_group_intrastat_declaration_companies"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="intrastat_declaration_context_view_form">
|
||||
<field name="model">account.stock.eu.intrastat.declaration.context</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">intrastat_declaration_context_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="intrastat_declaration_line_view_list">
|
||||
<field name="model">account.stock.eu.intrastat.declaration.line</field>
|
||||
<field name="type">tree</field>
|
||||
<field name="name">intrastat_declaration_line_list</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.access" id="access_intrastat_declaration_line">
|
||||
<field name="model">account.stock.eu.intrastat.declaration.line</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_intrastat_declaration_line_account">
|
||||
<field name="model">account.stock.eu.intrastat.declaration.line</field>
|
||||
<field name="group" ref="account.group_account"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
<field name="perm_create" eval="False"/>
|
||||
<field name="perm_delete" eval="False"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.act_window" id="act_intrastat_declaration_line_form">
|
||||
<field name="name">Intrastat Declaration Lines</field>
|
||||
<field name="res_model">account.stock.eu.intrastat.declaration.line</field>
|
||||
<field name="context" eval="{'declaration': Eval('active_id')}" pyson="1"/>
|
||||
<field name="context_model">account.stock.eu.intrastat.declaration.context</field>
|
||||
</record>
|
||||
<record model="ir.action.act_window.view" id="act_intrastat_declaration_line_form_view1">
|
||||
<field name="sequence" eval="10"/>
|
||||
<field name="view" ref="intrastat_declaration_line_view_list"/>
|
||||
<field name="act_window" ref="act_intrastat_declaration_line_form"/>
|
||||
</record>
|
||||
<record model="ir.action.keyword" id="act_intrastat_declaration_line_form_keyword1">
|
||||
<field name="keyword">tree_open</field>
|
||||
<field name="model">account.stock.eu.intrastat.declaration,-1</field>
|
||||
<field name="action" ref="act_intrastat_declaration_line_form"/>
|
||||
</record>
|
||||
<record model="ir.action.keyword" id="act_intrastat_declaration_line_form_keyword2">
|
||||
<field name="keyword">form_relate</field>
|
||||
<field name="model">account.stock.eu.intrastat.declaration,-1</field>
|
||||
<field name="action" ref="act_intrastat_declaration_line_form"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.action.wizard" id="wizard_intrastat_declaration_export">
|
||||
<field name="name">Export Intrastat Declaration</field>
|
||||
<field name="wiz_name">account.stock.eu.intrastat.declaration.export</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="intrastat_declaration_export_result_view_form">
|
||||
<field name="model">account.stock.eu.intrastat.declaration.export.result</field>
|
||||
<field name="type">form</field>
|
||||
<field name="name">intrastat_declaration_export_result_form</field>
|
||||
</record>
|
||||
</data>
|
||||
<data depends="incoterm">
|
||||
<record model="ir.ui.view" id="intrastat_declaration_line_view_list_incoterm">
|
||||
<field name="model">account.stock.eu.intrastat.declaration.line</field>
|
||||
<field name="inherit" ref="intrastat_declaration_line_view_list"/>
|
||||
<field name="name">intrastat_declaration_line_list_incoterm</field>
|
||||
</record>
|
||||
</data>
|
||||
<data grouped="1">
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_1">
|
||||
<field name="code">1</field>
|
||||
<field name="description">Transactions involving actual change of ownership with financial compensation</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_2">
|
||||
<field name="code">2</field>
|
||||
<field name="description">Return and replacement of goods free of charge after registration of the original transaction</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_3">
|
||||
<field name="code">3</field>
|
||||
<field name="description">Transactions involving intended change of ownership or change of ownership without financial compensation</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_4">
|
||||
<field name="code">4</field>
|
||||
<field name="description">Transactions with a view to processing under contract (not involving change of ownership)</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_5">
|
||||
<field name="code">5</field>
|
||||
<field name="description">Transactions following processing under contract (not involving change of ownership)</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_6">
|
||||
<field name="code">6</field>
|
||||
<field name="description">Particular transactions recorded for national purposes</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_7">
|
||||
<field name="code">7</field>
|
||||
<field name="description">Transactions with a view to/following customs clearance (not involving change of ownership, related to goods in quasi-import or export)</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_8">
|
||||
<field name="code">8</field>
|
||||
<field name="description">Transactions involving the supply of building materials and technical equipment under a general construction or civil engineering contract for which no separate invoicing of the goods is required and an invoice for the total contract is issued</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_9">
|
||||
<field name="code">9</field>
|
||||
<field name="description">Other transactions which cannot be classified under other codes</field>
|
||||
</record>
|
||||
</data>
|
||||
<data grouped="1">
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_11">
|
||||
<field name="code">11</field>
|
||||
<field name="parent" ref="intrastat_transaction_1"/>
|
||||
<field name="description">Outright sale/purchase except direct trade with/by private consumers</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_12">
|
||||
<field name="code">12</field>
|
||||
<field name="parent" ref="intrastat_transaction_1"/>
|
||||
<field name="description">Direct trade with/by private consumers (incl. distance sale)</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_21">
|
||||
<field name="code">21</field>
|
||||
<field name="parent" ref="intrastat_transaction_2"/>
|
||||
<field name="description">Return of goods</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_22">
|
||||
<field name="code">22</field>
|
||||
<field name="parent" ref="intrastat_transaction_2"/>
|
||||
<field name="description">Replacement for returned goods</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_23">
|
||||
<field name="code">23</field>
|
||||
<field name="parent" ref="intrastat_transaction_2"/>
|
||||
<field name="description">Replacement (e.g. under warranty) for goods not being returned</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_31">
|
||||
<field name="code">31</field>
|
||||
<field name="parent" ref="intrastat_transaction_3"/>
|
||||
<field name="description">Movements to/from a warehouse (excluding call off and consignment stock)</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_32">
|
||||
<field name="code">32</field>
|
||||
<field name="parent" ref="intrastat_transaction_3"/>
|
||||
<field name="description">Supply for sale on approval or after trial (including call-off and consignment stock)</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_33">
|
||||
<field name="code">33</field>
|
||||
<field name="parent" ref="intrastat_transaction_3"/>
|
||||
<field name="description">Financial leasing</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_34">
|
||||
<field name="code">34</field>
|
||||
<field name="parent" ref="intrastat_transaction_3"/>
|
||||
<field name="description">Transactions involving transfer of ownership without financial compensation</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_41">
|
||||
<field name="code">41</field>
|
||||
<field name="parent" ref="intrastat_transaction_4"/>
|
||||
<field name="description">Goods expected to return to the initial Member State/country of export</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_42">
|
||||
<field name="code">42</field>
|
||||
<field name="parent" ref="intrastat_transaction_4"/>
|
||||
<field name="description">Goods not expected to return to the initial Member State/country of export</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_51">
|
||||
<field name="code">51</field>
|
||||
<field name="parent" ref="intrastat_transaction_5"/>
|
||||
<field name="description">Goods returning to the initial Member State/country of export</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_52">
|
||||
<field name="code">52</field>
|
||||
<field name="parent" ref="intrastat_transaction_5"/>
|
||||
<field name="description">Goods not returning to the initial Member State/country of export</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_60">
|
||||
<field name="code">60</field>
|
||||
<field name="parent" ref="intrastat_transaction_6"/>
|
||||
<field name="description">Particular transactions recorded for national purposes</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_71">
|
||||
<field name="code">71</field>
|
||||
<field name="parent" ref="intrastat_transaction_7"/>
|
||||
<field name="description">Release of goods for free circulation in a Member State with a subsequent export to another Member State</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_72">
|
||||
<field name="code">72</field>
|
||||
<field name="parent" ref="intrastat_transaction_7"/>
|
||||
<field name="description">Transportation of goods from one Member State to another Member State to place the goods under the export procedure</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_80">
|
||||
<field name="code">80</field>
|
||||
<field name="parent" ref="intrastat_transaction_8"/>
|
||||
<field name="description">Transactions involving the supply of building materials and technical equipment under a general construction or civil engineering contract for which no separate invoicing of the goods is required and an invoice for the total contract is issued</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_91">
|
||||
<field name="code">91</field>
|
||||
<field name="parent" ref="intrastat_transaction_9"/>
|
||||
<field name="description">Hire, loan, and operational leasing longer than 24 months</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transaction" id="intrastat_transaction_99">
|
||||
<field name="code">99</field>
|
||||
<field name="parent" ref="intrastat_transaction_9"/>
|
||||
<field name="description">Other</field>
|
||||
</record>
|
||||
</data>
|
||||
<data grouped="1">
|
||||
<record model="account.stock.eu.intrastat.transport" id="intrastat_transport_1">
|
||||
<field name="code">1</field>
|
||||
<field name="name">Sea transport</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transport" id="intrastat_transport_2">
|
||||
<field name="code">2</field>
|
||||
<field name="name">Railway transport</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transport" id="intrastat_transport_3">
|
||||
<field name="code">3</field>
|
||||
<field name="name">Road transport</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transport" id="intrastat_transport_4">
|
||||
<field name="code">4</field>
|
||||
<field name="name">Air transport</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transport" id="intrastat_transport_5">
|
||||
<field name="code">5</field>
|
||||
<field name="name">Postal consignments</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transport" id="intrastat_transport_7">
|
||||
<field name="code">7</field>
|
||||
<field name="name">Fixed transport devices</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transport" id="intrastat_transport_8">
|
||||
<field name="code">8</field>
|
||||
<field name="name">Inland waterway transport</field>
|
||||
</record>
|
||||
<record model="account.stock.eu.intrastat.transport" id="intrastat_transport_9">
|
||||
<field name="code">9</field>
|
||||
<field name="name">Own propulsion</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
12
modules/account_stock_eu/carrier.py
Normal file
12
modules/account_stock_eu/carrier.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from trytond.model import fields
|
||||
from trytond.pool import PoolMeta
|
||||
|
||||
|
||||
class Carrier(metaclass=PoolMeta):
|
||||
__name__ = 'carrier'
|
||||
|
||||
intrastat_transport = fields.Many2One(
|
||||
'account.stock.eu.intrastat.transport', "Intrastat Transport")
|
||||
12
modules/account_stock_eu/carrier.xml
Normal file
12
modules/account_stock_eu/carrier.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tryton>
|
||||
<data depends="carrier,incoterm">
|
||||
<record model="ir.ui.view" id="carrier_view_form">
|
||||
<field name="model">carrier</field>
|
||||
<field name="inherit" ref="carrier.carrier_view_form"/>
|
||||
<field name="name">carrier_form</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
33
modules/account_stock_eu/company.py
Normal file
33
modules/account_stock_eu/company.py
Normal file
@@ -0,0 +1,33 @@
|
||||
# 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 Pool, PoolMeta
|
||||
|
||||
|
||||
class Company(metaclass=PoolMeta):
|
||||
__name__ = 'company.company'
|
||||
|
||||
intrastat_currency = fields.Function(
|
||||
fields.Many2One('currency.currency', "Intrastat Currency"),
|
||||
'get_intrastat_currency')
|
||||
|
||||
@classmethod
|
||||
def get_intrastat_currency(cls, companies, name):
|
||||
pool = Pool()
|
||||
Currency = pool.get('currency.currency')
|
||||
|
||||
currencies = {}
|
||||
eur = None
|
||||
for company in companies:
|
||||
if company.currency.code == 'EUR':
|
||||
currency = company.currency
|
||||
else:
|
||||
if not eur:
|
||||
try:
|
||||
eur, = Currency.search([('code', '=', 'EUR')], limit=1)
|
||||
except ValueError:
|
||||
pass
|
||||
currency = eur
|
||||
currencies[company.id] = currency
|
||||
return currencies
|
||||
60
modules/account_stock_eu/country.py
Normal file
60
modules/account_stock_eu/country.py
Normal file
@@ -0,0 +1,60 @@
|
||||
# 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 Pool, PoolMeta
|
||||
from trytond.pyson import Eval
|
||||
from trytond.transaction import Transaction
|
||||
|
||||
_ANY_DATE = object()
|
||||
|
||||
|
||||
class Country(metaclass=PoolMeta):
|
||||
__name__ = 'country.country'
|
||||
|
||||
def in_intrastat(self, date=_ANY_DATE):
|
||||
pool = Pool()
|
||||
Date = pool.get('ir.date')
|
||||
ModelData = pool.get('ir.model.data')
|
||||
Organization = pool.get('country.organization')
|
||||
|
||||
ctx = {}
|
||||
if date is _ANY_DATE:
|
||||
ctx['active_test'] = False
|
||||
else:
|
||||
ctx['active_test'] = True
|
||||
if date is None:
|
||||
date = Date.today()
|
||||
ctx['date'] = date
|
||||
|
||||
with Transaction().set_context(ctx):
|
||||
eu = Organization(ModelData.get_id('country', 'organization_eu'))
|
||||
return self in eu.countries
|
||||
|
||||
|
||||
class Subdivision(metaclass=PoolMeta):
|
||||
__name__ = 'country.subdivision'
|
||||
|
||||
intrastat_code = fields.Char(
|
||||
"Intrastat Code",
|
||||
states={
|
||||
'invisible': ~Eval('country_in_intrastat'),
|
||||
})
|
||||
|
||||
country_in_intrastat = fields.Function(
|
||||
fields.Boolean("Country in Intrastat"),
|
||||
'on_change_with_country_in_intrastat')
|
||||
|
||||
@fields.depends('country', '_parent_country.id')
|
||||
def on_change_with_country_in_intrastat(self, name=None):
|
||||
if self.country:
|
||||
return self.country.in_intrastat()
|
||||
|
||||
def get_intrastat(self):
|
||||
"Return the first subdivision with intrastat code in parents"
|
||||
subdivision = self
|
||||
while not subdivision.intrastat_code:
|
||||
subdivision = subdivision.parent
|
||||
if not subdivision:
|
||||
break
|
||||
return subdivision
|
||||
18
modules/account_stock_eu/country.xml
Normal file
18
modules/account_stock_eu/country.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?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="country_subdivision_view_form">
|
||||
<field name="model">country.subdivision</field>
|
||||
<field name="inherit" ref="country.subdivision_view_form"/>
|
||||
<field name="name">country_subdivision_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="country_subdivision_view_list">
|
||||
<field name="model">country.subdivision</field>
|
||||
<field name="inherit" ref="country.subdivision_view_tree"/>
|
||||
<field name="name">country_subdivision_list</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
12
modules/account_stock_eu/customs.py
Normal file
12
modules/account_stock_eu/customs.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from trytond.model import fields
|
||||
from trytond.pool import PoolMeta
|
||||
|
||||
|
||||
class TariffCode(metaclass=PoolMeta):
|
||||
__name__ = 'customs.tariff.code'
|
||||
|
||||
intrastat_uom = fields.Many2One(
|
||||
'product.uom', "Intrastat Additional Unit")
|
||||
12
modules/account_stock_eu/customs.xml
Normal file
12
modules/account_stock_eu/customs.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tryton>
|
||||
<data>
|
||||
<record model="ir.ui.view" id="customs_tariff_code_view_form">
|
||||
<field name="model">customs.tariff.code</field>
|
||||
<field name="inherit" ref="customs.tariff_code_view_form"/>
|
||||
<field name="name">customs_tariff_code_form</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
12
modules/account_stock_eu/exceptions.py
Normal file
12
modules/account_stock_eu/exceptions.py
Normal file
@@ -0,0 +1,12 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from trytond.exceptions import UserWarning
|
||||
|
||||
|
||||
class CounterPartyNotFound(UserWarning):
|
||||
pass
|
||||
|
||||
|
||||
class CountryNotFound(UserWarning):
|
||||
pass
|
||||
614
modules/account_stock_eu/locale/bg.po
Normal file
614
modules/account_stock_eu/locale/bg.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
645
modules/account_stock_eu/locale/ca.po
Normal file
645
modules/account_stock_eu/locale/ca.po
Normal file
@@ -0,0 +1,645 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr "Intrastat ampliat"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr "País"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr "Ampliat"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr "Mes"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr "Estat"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr "Declaració"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr "Fitxer"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr "Nom del fitxer"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr "Unitat addicional"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr "País"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr "País d'origen"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr "Incoterm"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr "Subdivisió"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr "Codi aranzelari"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr "Transacció"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr "Transport"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr "Tipus"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr "Valor"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr "CIF/NIF"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr "Pes"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr "Codi"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr "Pare"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr "Codi"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr "Transport intrastat"
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr "Moneda intrastat"
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr "País entrada intrastat"
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr "Codi Intrastat"
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr "Unitat adicional Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr "Unitat adicional Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr "País Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr "País d'origen Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr "Declaració Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr "Intrastat ampliat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr "Incoterm Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr "Subdivisió intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr "Codi aranzelari Intastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr "Codi unitat aranzelaria Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr "Transacció Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr "Transport intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr "Tipus Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr "Valor Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr "NIF/CIF Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr "País magatzem Intrastat"
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Des del país"
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Cap al país"
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Des del país"
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Cap al país"
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Des del país"
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Cap al país"
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Des del país"
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Cap al país"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Des del país"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Cap al país"
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr "Marqueu per generar la declaració ampliada."
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr "Declaració Intrastat de la UE"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr "Context Declaració Intrastat de la UE"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr "Resultat exportar declaració Intrastat"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr "Línia declaració intrastat de la UE"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
"Transaccions que involucren el canvi de propietat amb compensació financera"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
"Compra/venda directa excepte comerç directe amb/per consumidors privats"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
"Comerç directe amb/per consumidors privats (inclosa venda a distància)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
"Devolució i substitució de béns gratuïtament després del registre de la "
|
||||
"transacció original"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr "Devolució de béns"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr "Substitució dels béns retornats"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr "Substitució (p. ex. en garantia) de béns que no es retornen"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
"Transaccions que impliquen un canvi de titularitat previst o un canvi de "
|
||||
"titularitat sense compensació financera"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr "Moviments cap a/des d'un magatzem (excepte moviments de consigna)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
"Subministrament per a la venda amb l'aprovació o després de la prova (inclòs"
|
||||
" moviments de consigna)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr "Arrendament financer"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
"Operacions que impliquen transferència de propietat sense compensació "
|
||||
"econòmica"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
"Transaccions amb vista a la tramitació contractual (que no impliquen canvi "
|
||||
"de titularitat)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr "Béns amb retorn previst a l'estat membre/país d'exportació inicial"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr "Béns sense retorn previst a l'estat membre/país d'exportació inicial"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
"Transaccions posteriors al processament sota contracte (que no impliquen "
|
||||
"canvi de titularitat)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr "Béns que retornen a l'estat membre/país d'exportació inicial"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr "Béns que no retornen a l'estat membre/país d'exportació inicial"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr "Transaccions particulars registrades a efectes nacionals"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr "Transaccions particulars registrades a efectes nacionals"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
"Transaccions amb vista o després del despatx de duana (que no impliquen "
|
||||
"canvi de titularitat, relacionades amb mercaderies en quasi importació o "
|
||||
"exportació)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
"Lliurament de béns a lliure pràctica en un Estat membre amb una exportació "
|
||||
"posterior a un altre Estat membre"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
"Transport de béns d'un Estat membre a un altre Estat membre per posar els "
|
||||
"béns sota el procediment d'exportació"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
"Transaccions que impliquen el subministrament de materials de construcció i "
|
||||
"equipament tècnic en virtut d'un contracte general de construcció o "
|
||||
"d'enginyeria civil per a les quals no es requereix una facturació separada "
|
||||
"dels béns i s'emet una factura per la totalitat del contracte"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
"Transaccions que impliquen el subministrament de materials de construcció i "
|
||||
"equipament tècnic en virtut d'un contracte general de construcció o "
|
||||
"d'enginyeria civil per a les quals no es requereix una facturació separada "
|
||||
"dels béns i s'emet una factura per la totalitat del contracte"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr "Altres operacions que no es poden classificar en altres codis"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr "Lloguer, préstec i arrendament operatiu de més de 24 mesos"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr "Altres"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr "Transacció Intrastat"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr "Transport marítim"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr "Transport per tren"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr "Transport per carretera"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr "Transport aeri"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr "Consignes postals"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr "Dispositius de transport fixos"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr "Transport per via navegable interior"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr "Propulsió pròpia"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr "Transport intrastat"
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr "Declaracions intrastat"
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr "Linies declaració intrastat"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr "Exportar declaració Intrastat"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Tot"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr "Oberta"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr "La declaració intrastat ha de ser unica per més, páis i empresa."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr "El dia de la declaració intrastat ha de ser el primer del més."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
"No s'ha pogut trobar una contrapartida intrastat pel moviment \"%(move)s\"."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr "No s'han pogut trobar els paisos intrastat pels moviments \"%(moves)s\"."
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr "Exporta"
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr "Usuari a les empreses"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr "Declaracions intrastat"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr "Tancada"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr "Oberta"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr "Arribada"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr "Enviament"
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr "Arribada"
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr "Enviament"
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr "Unitat addicional"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr "País"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr "País d'origen"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr "Subdivisió"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr "Codi aranzelari"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr "Transacció"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr "Tipus"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr "CIF/NIF"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr "Valor"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr "País magatzem"
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr "Tanca"
|
||||
614
modules/account_stock_eu/locale/cs.po
Normal file
614
modules/account_stock_eu/locale/cs.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
658
modules/account_stock_eu/locale/de.po
Normal file
658
modules/account_stock_eu/locale/de.po
Normal file
@@ -0,0 +1,658 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr "Intrastat Erweitert"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr "Land"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr "Erweitert"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr "Monat"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr "Meldung"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr "Datei"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr "Dateiname"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr "Besondere Maßeinheit"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr "Land"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr "Ursprungsland"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr "Incoterm"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr "Verwaltungseinheit"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr "Zolltarifnummer"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr "Art des Geschäfts"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr "Verkehrszweig"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr "Verkehrsrichtung"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr "Rechnungsbetrag"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr "Europäische USt-IdNr."
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr "Eigenmasse"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr "Schlüsselnummer"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr "Übergeordnete Art des Geschäfts"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr "Schlüssel"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr "Intrastat Verkehrszweig"
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr "Intrastat Währung"
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr "Ist Intrastat-Land"
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr "Intrastat Schlüssel"
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr "Intrastat Besondere Maßeinheit"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr "Intrastat Besondere Maßeinheit"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr "Intrastat Land"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr "Intrastat Ursprungsland"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr "Intrastat-Meldung"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr "Intrastat Erweitert"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr "Intrastat-Incoterm"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr "Intrastat Verwaltungseinheit"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr "Intrastat Zolltarifnummer"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr "Intrastat Zolltarifnummer Maßeinheit"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr "Intrastat Art des Geschäfts"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr "Intrastat Verkehrszweig"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr "Intrastat Verkehrsrichtung"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr "Intrastat Rechnungsbetrag"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr "Intrastat Europäische USt-IdNr."
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr "Intrastat Land Logistikstandort"
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Versendungsmitgliedstaat"
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Bestimmungsmitgliedstaat"
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Versendungsmitgliedstaat"
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Bestimmungsmitgliedstaat"
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Versendungsmitgliedstaat"
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Bestimmungsmitgliedstaat"
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Versendungsmitgliedstaat"
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Bestimmungsmitgliedstaat"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Versendungsmitgliedstaat"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Bestimmungsmitgliedstaat"
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr "Auswählen um erweiterte Intrastat-Meldung zu erstellen."
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr "Buchhaltung Lager EU Intrastat-Meldung"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr "Buchhaltung Lager EU Intrastat-Meldung Kontext"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr "Buchhaltung Lager EU Intrastat-Meldung Export Ergebnis"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr "Buchhaltung Lager EU Intrastat-Meldeposition"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
"Geschäfte mit tatsächlicher Eigentumsübertragung und finanzieller "
|
||||
"Gegenleistung"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
"Endgültiger Verkauf/Kauf, ausgenommen direkter Handel mit/durch private(n) "
|
||||
"Verbraucher(n)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr "Direkter Handel privater Verbraucher (einschließlich Fernverkauf)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
"Rücksendung und unentgeltliche Ersatzlieferung von Waren, die bereits "
|
||||
"erfasst wurden"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr "Rücksendung von Waren"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr "Ersatz für zurückgesandte Waren"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr "Ersatz (z.B. wegen Garantie) für nicht zurückgesandte Waren"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
"Geschäfte mit geplanter Eigentumsübertragung oder Geschäfte mit "
|
||||
"Eigentumsübertragung ohne finanzielle Gegenleistung"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
"Beförderungen in/aus ein(em) Lager (ausgenommen Auslieferungs- und "
|
||||
"Konsignationslager, sowie Kommissionsgeschäfte)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
"Ansichts- oder Probesendungen (einschließlich Auslieferungs- und "
|
||||
"Konsignationslager, sowie Kommissionsgeschäfte)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr "Finanzierungsleasing (Mietkauf)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
"Geschäfte mit Eigentumsübertragung ohne finanzielle Gegenleistung, "
|
||||
"einschließlich Tauschhandel"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr "Geschäfte zur Lohnveredelung (ohne Eigentumsübertragung)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Waren, die voraussichtlich in den ursprünglichen Versendungsmitgliedstaat "
|
||||
"zurückgelangen"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Waren, die voraussichtlich nicht in den ursprünglichen "
|
||||
"Versendungsmitgliedstaat zurückgelangen"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr "Geschäfte nach der Lohnveredelung (ohne Eigentumsübertragung)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Waren, die in den ursprünglichen Versendungsmitgliedstaat zurückgelangen"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Waren, die nicht in den ursprünglichen Versendungsmitgliedstaat "
|
||||
"zurückgelangen"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
"Spezielle, für nationale Zwecke kodierte Geschäfte (Schlüsselnummer „6“) - "
|
||||
"Nur für den Extrahandel –"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
"Spezielle, für nationale Zwecke kodierte Geschäfte (Schlüsselnummer „6“) - "
|
||||
"Nur für den Extrahandel –"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
"Geschäfte nach der Zollabfertigung (ohne Eigentumsübertragung, betrifft "
|
||||
"Waren in Quasi-Einfuhr)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
"Versendung in einen anderen Mitgliedstaat nach vorheriger Überführung der "
|
||||
"Waren in den zollrechtlich freien Verkehr in Deutschland"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
"Verbringung von Waren aus einem Mitgliedstaat nach Deutschland zur "
|
||||
"Überführung der Waren in das Ausfuhrverfahren – nur für den Extrahandel –"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
"Geschäfte mit Lieferung von Baumaterial und technischen Ausrüstungen im "
|
||||
"Rahmen von Hoch- oder Tiefbauarbeiten als Teil eines Generalvertrags, bei "
|
||||
"denen keine einzelnen Waren in Rechnung gestellt werden, sondern eine "
|
||||
"einzige Rechnung über den Gesamtwert des Vertrags ausgestellt wird"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
"Geschäfte mit Lieferung von Baumaterial und technischen Ausrüstungen im "
|
||||
"Rahmen von Hoch- oder Tiefbau-arbeiten als Teil eines Generalvertrags, bei "
|
||||
"denen keine einzelnen Waren in Rechnung gestellt werden, sondern eine "
|
||||
"einzige Rechnung über den Gesamtwert des Vertrags ausgestellt wird"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr "Andere Geschäfte, die sich den anderen Codes nicht zuordnen lassen"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr "Miete, Leihe und Operate Leasing über mehr als 24 Monate"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr "Sonstige Warenverkehre, nicht anderweitig erfasst"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr "Buchhaltung Lager EU Intrastat Art des Geschäfts"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr "Seeverkehr"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr "Eisenbahnverkehr"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr "Straßenverkehr"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr "Luftverkehr"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr "Postsendungen"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr "Stationäre Transporteinrichtungen (z.B. Rohrleitungen)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr "Binnenschifffahrt"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr "Eigener Antrieb"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr "Buchhaltung Lager EU Intrastat Verkehrszweig"
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr "Intrastat-Meldungen"
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr "Intrastat Meldepositionen"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr "Export Intrastat-Meldung"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr "Offen"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
"Eine Intrastat-Meldung muss pro Monat, Land und Unternehmen eindeutig sein."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr "Der Tag der Intrastat-Meldung muss der erste des Monats sein."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
"Der Intrastat Geschäftspartner der Warenbewegung \"%(move)s\" konnte nicht "
|
||||
"gefunden werden."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
"Die Intrastat Länder für die Warenbewegungen \"%(moves)s\" konnten nicht "
|
||||
"gefunden werden."
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr "Export"
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr "Benutzer in Unternehmen"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr "Intrastat-Meldungen"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr "Abgeschlossen"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr "Offen"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr "Eingang"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr "Versendung"
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr "Eingang"
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr "Versendung"
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr "Besondere Maßeinheit"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr "Land"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr "Ursprungsland"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr "Verwaltungseinheit"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr "Zolltarifnummer"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr "Art des Geschäfts"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr "Verkehrsrichtung"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr "Europäische USt-IdNr."
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr "Rechnungsbetrag"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr "Land Logistikstandort"
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
656
modules/account_stock_eu/locale/es.po
Normal file
656
modules/account_stock_eu/locale/es.po
Normal file
@@ -0,0 +1,656 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr "Intrastat ampliado"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr "País"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr "Ampliado"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr "Mes"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr "Declaración"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr "Archivo"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr "Nombre del archivo"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr "Unidad adicional"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr "País"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr "País de origen"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr "Incoterm"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr "Subdivisión"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr "Código arancelario"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr "Transacción"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr "Transporte"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr "Valor"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr "CIF/NIF"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr "Peso"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr "Padre"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr "Transporte intrastat"
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr "Moneda Intrastat"
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr "País entrada intrastat"
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr "Código intrastat"
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr "Unidad adicional intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr "Unidad adicional intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr "Páis intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr "País orígen intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr "Declración intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr "Intrastat ampliado"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr "Incoterm intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr "Subdivisión intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr "Codigo aranzelario Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr "Codigo unidad aranzelaria Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr "Transacción intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr "Transporte intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr "Tipo intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr "Valor intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr "CIF/NIF Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr "País almacén Intrastat"
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Desde el país"
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Hacia el país"
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Desde el país"
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Hacia el país"
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Desde el país"
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Hacia el país"
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Desde el país"
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Hacia el país"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Desde el país"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Hacia el país"
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr "Marcar para generar la declaración ampliada."
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr "Declaracion Intrastat de la UE"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr "Contexto declaración intrastat de la UE"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr "Resultado exportar declaración Intrastat"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr "Línea declaración intrastat de la UE"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
"Transacciones que implican un cambio real de propiedad con compensación "
|
||||
"financiera"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
"Venta/compra directa excepto comercio directo con/por consumidores privados"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
"Comercio directo con/por consumidores privados (incluida la venta a "
|
||||
"distancia)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
"Devolución y reemplazo de bienes sin cargo después del registro de la "
|
||||
"transacción original"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr "Devolución de bienes"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr "Reemplazo de bienes devueltos"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr "Reemplazo (p. ej., en garantía) de productos que no se devuelven"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
"Transacciones que implican un cambio de propiedad intencional o un cambio de"
|
||||
" propiedad sin compensación financiera"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
"Movimientos hacia/desde un almacén (excluidos los pedidos y el stock en "
|
||||
"consignación)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
"Suministro para la venta previa aprobación o después de la prueba (incluidas"
|
||||
" las existencias canceladas y en consignación)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr "Arrendamiento financiero"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
"Transacciones que implican transferencia de propiedad sin compensación "
|
||||
"financiera"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
"Transacciones con vistas al procesamiento bajo contrato (que no implican un "
|
||||
"cambio de propiedad)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Mercancías que se espera que regresen al Estado miembro/país de exportación "
|
||||
"inicial"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Mercancías que no se espera que regresen al Estado miembro/país de "
|
||||
"exportación inicial"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
"Transacciones posteriores al procesamiento bajo contrato (que no implican un"
|
||||
" cambio de propiedad)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr "Mercancías que regresan al Estado miembro/país de exportación inicial"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Mercancías que no regresan al Estado miembro/país de exportación inicial"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr "Transacciones particulares registradas a efectos nacionales"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr "Transacciones particulares registradas a efectos nacionales"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
"Transacciones con vistas a/después del despacho de aduana (que no impliquen "
|
||||
"cambio de propiedad, relacionadas con mercancías en cuasi importación o "
|
||||
"exportación)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
"Despacho de mercancías a libre práctica en un Estado miembro con posterior "
|
||||
"exportación a otro Estado miembro"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
"Transporte de mercancías de un Estado miembro a otro Estado miembro para "
|
||||
"incluir las mercancías en el régimen de exportación"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
"Transacciones que involucran el suministro de materiales de construcción y "
|
||||
"equipo técnico bajo un contrato de construcción general o de ingeniería "
|
||||
"civil para el cual no se requiere facturación por separado de los bienes y "
|
||||
"se emite una factura por el contrato total"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
"Transacciones que involucran el suministro de materiales de construcción y "
|
||||
"equipo técnico bajo un contrato de construcción general o de ingeniería "
|
||||
"civil para el cual no se requiere facturación por separado de los bienes y "
|
||||
"se emite una factura por el contrato total"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr "Otras transacciones que no pueden clasificarse en otros códigos"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr "Alquiler, préstamo y arrendamiento operativo por más de 24 meses"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr "Otros"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr "Transacción intrastat"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr "Trasnporte marítimo"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr "Transporte en tren"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr "Transporte por carretera"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr "Transporte aerio"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr "Consignas postales"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr "Dispositivos de transporte fijos"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr "Transporte por via navegable interior"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr "Propulsión propia"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr "Transporte intrastat"
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr "Declaraciones intrastat"
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr "Líneas declaración intrastat"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr "Exportar declaracion Intrastat"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Todo"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr "Abierta"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr "La declaración intrastat debe ser única por mes, país y empresa."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr "El dia de la declaración intrastat debe ser el primero del mes."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
"No se ha podido encontrar una contrapartida para el movimiento \"%(move)s\"."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
"No se han podido encontrar los paises intrastat para los movimientos "
|
||||
"\"%(moves)s\"."
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr "Exportar"
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr "Usuario en las empresas"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr "Declaraciones intrastat"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr "Cerrada"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr "Abierta"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr "Llegada"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr "Envío"
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr "Llegada"
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr "Envío"
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr "Unidad adicional"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr "País"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr "País de origen"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr "Subdivisión"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr "Código arancelario"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr "Transacción"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr "CIF/NIF"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr "Valor"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr "País almacén"
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr "Cerrar"
|
||||
614
modules/account_stock_eu/locale/es_419.po
Normal file
614
modules/account_stock_eu/locale/es_419.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
614
modules/account_stock_eu/locale/et.po
Normal file
614
modules/account_stock_eu/locale/et.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
614
modules/account_stock_eu/locale/fa.po
Normal file
614
modules/account_stock_eu/locale/fa.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
614
modules/account_stock_eu/locale/fi.po
Normal file
614
modules/account_stock_eu/locale/fi.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
656
modules/account_stock_eu/locale/fr.po
Normal file
656
modules/account_stock_eu/locale/fr.po
Normal file
@@ -0,0 +1,656 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr "Intrastat étendu"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr "Société"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr "Pays"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr "Étendu"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr "Mois"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr "État"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr "Société"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr "Déclaration"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr "Fichier"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr "Nom du fichier"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr "Unité supplémentaire"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr "Pays"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr "Pays d'origine"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr "Incoterm"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr "Subdivision"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr "Code tarifaire"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr "Transaction"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr "Transport"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr "Valeur"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr "TVA"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr "Poids"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr "Parent"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr "Transport Intrastat"
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr "Devise Intrastat"
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr "Pays dans Intrastat"
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr "Code Intrastat"
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr "Unité supplémentaire Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr "Unité supplémentaire Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr "Pays Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr "Pays d'origine Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr "Déclaration Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr "Intrastat étendu"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr "Incoterm Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr "Subdivision Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr "Code tarifaire Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr "Unité du code tarifaire Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr "Transaction Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr "Transport Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr "Type Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr "Valeur Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr "TVA Intrastat"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr "Pays de l'entrepôt Intrastat"
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Du pays"
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Vers le pays"
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Du pays"
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Vers le pays"
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Du pays"
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Vers le pays"
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Du pays"
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Vers le pays"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Du pays"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Vers le pays"
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr "Cochez pour générer une déclaration étendue."
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr "Comptabilité de stock EU Déclaration Intrastat"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr "Comptabilité de stock EU Contexte de déclaration Intrastat"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr "Comptabilité de stock EU Export de déclaration Intrastat Résultat"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr "Comptabilité de stock EU Ligne de déclaration Intrastat"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
"Transactions impliquant un transfert effectif de propriété avec compensation"
|
||||
" financière"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
"Vente/achat pur et simple sauf commerce direct avec/par des consommateurs "
|
||||
"privés"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
"Commerce direct avec/par des consommateurs privés (y compris la vente à "
|
||||
"distance)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
"Retour et remplacement de marchandises gratuits après enregistrement de la "
|
||||
"transaction d'origine"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr "Retour des marchandises"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr "Remplacement des marchandises retournées"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
"Remplacement (par exemple sous garantie) pour les marchandises non "
|
||||
"retournées"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
"Transactions avec intention de changement de propriétaire ou changement de "
|
||||
"propriétaire sans contrepartie financière"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
"Mouvements vers/depuis un entrepôt (hors appel et stock en consignation)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
"Fourniture à la vente sur agrément ou après essai (y compris sur appel et "
|
||||
"stock en consignation)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr "Leasing financier"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
"Transactions impliquant un transfert de propriété sans contrepartie "
|
||||
"financière"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
"Transactions en vue d'un traitement sous contrat (n'impliquant pas de "
|
||||
"transfert de propriété)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Marchandises censées retourner dans l'État membre/pays d'exportation initial"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Marchandises pas censées retourner dans l'État membre/pays d'exportation "
|
||||
"initial"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
"Transactions consécutives à une transformation sous contrat (sans changement"
|
||||
" de propriété)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr "Marchandises retournant dans l'État membre/pays d'exportation initial"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Marchandises retournant pas dans l'État membre/pays d'exportation initial"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr "Transactions particulières enregistrées à des fins nationales"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr "Transactions particulières enregistrées à des fins nationales"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
"Transactions en vue/à la suite du dédouanement (n'impliquant pas de "
|
||||
"changement de propriété, portant sur des marchandises en quasi-importation "
|
||||
"ou exportation)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
"Mise en libre circulation de marchandises dans un État membre avec "
|
||||
"exportation ultérieure vers un autre État membre"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
"Transport de marchandises d'un État membre vers un autre État membre pour "
|
||||
"placer les marchandises sous le régime de l'exportation"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
"Transactions impliquant la fourniture de matériaux de construction et "
|
||||
"d'équipements techniques dans le cadre d'un contrat général de construction "
|
||||
"ou de génie civil pour lequel aucune facturation séparée des biens n'est "
|
||||
"requise et une facture pour l'ensemble du contrat est émise"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
"Transactions impliquant la fourniture de matériaux de construction et "
|
||||
"d'équipements techniques dans le cadre d'un contrat général de construction "
|
||||
"ou de génie civil pour lequel aucune facturation séparée des biens n'est "
|
||||
"requise et une facture pour l'ensemble du contrat est émise"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr "Autres transactions ne pouvant être classées sous d'autres codes"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr "Location, prêt et leasing opérationnel de plus de 24 mois"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr "Autre"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr "Comptabilité de stock EU Transaction Intrastat"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr "Transport maritime"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr "Transport ferroviaire"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr "Transport routier"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr "Transport aérien"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr "Envois postaux"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr "Dispositifs de transport fixes"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr "Transport fluvial"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr "Propre propulsion"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr "Comptabilité de stock EU Transport Intrastat"
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr "Déclarations Intrastat"
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr "Lignes de déclaration Intrastat"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr "Déclaration Intrastat d'exportation"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Toutes"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr "Ouvertes"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr "La déclaration Intrastat doit être unique par mois, pays et société."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr "Le jour de la déclaration Intrastat doit être le premier du mois."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
"Impossible de trouver la contrepartie Intrastat du mouvement « %(move)s »."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
"Impossible de trouver les pays Intrastat pour les mouvements « %(moves)s »."
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr "Exporter"
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr "Utilisateur dans les sociétés"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr "Déclarations Intrastat"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr "Clôturée"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr "Ouverte"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr "Arrivée"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr "Expédition"
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr "Arrivée"
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr "Expédition"
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr "Unité supplémentaire"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr "Pays"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr "Pays d'origine"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr "Subdivision"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr "Code tarifaire"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr "Transaction"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr "Type"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr "TVA"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr "Valeur"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr "Pays de l'entrepôt"
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr "Clôturer"
|
||||
614
modules/account_stock_eu/locale/hu.po
Normal file
614
modules/account_stock_eu/locale/hu.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
614
modules/account_stock_eu/locale/id.po
Normal file
614
modules/account_stock_eu/locale/id.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
614
modules/account_stock_eu/locale/it.po
Normal file
614
modules/account_stock_eu/locale/it.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
614
modules/account_stock_eu/locale/lo.po
Normal file
614
modules/account_stock_eu/locale/lo.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
614
modules/account_stock_eu/locale/lt.po
Normal file
614
modules/account_stock_eu/locale/lt.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
650
modules/account_stock_eu/locale/nl.po
Normal file
650
modules/account_stock_eu/locale/nl.po
Normal file
@@ -0,0 +1,650 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr "Intrastat uitgebreid"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr "Land"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr "Uitgebreid"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr "Maand"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr "Aangifte"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr "Bestand"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr "Bestandsnaam"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr "Extra eenheid"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr "Land"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr "Land van herkomst"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr "Incoterm"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr "Regio"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr "Tariefcode"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr "Transactie"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr "Vervoer"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr "Soort"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr "Waarde"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr "BTW"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr "Gewicht"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr "Bovenliggend niveau"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr "Intrastat transport"
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr "Intrastat valuta"
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr "Land in intrastat"
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr "Intrastat code"
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr "Intrastat extra eenheid"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr "Intrastat extra eenheid"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr "Intrastat land"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr "Intrastat land van herkomst"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr "Intrastat aangifte"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr "Intrastat uitgebreid"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr "Intrastat incoterm"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr "Intrastat onderverdeling"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr "Intrastat tarief code"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr "Intrastat tarief code eenheid"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr "Intrastat transactie"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr "Intrastat transport"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr "Intrastat soort"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr "Intrastat waarde"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr "Intrastat BTW"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr "Land intrastat magazijn"
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Van land"
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Naar land"
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Van land"
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Naar land"
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Van land"
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Naar land"
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Van land"
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Naar land"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Van land"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "Naar land"
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr "Vink aan om uitgebreide aangifte te genereren."
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr "Grootboek voorraad EU Intrastat aangifte"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr "Grootboek voorraad EU Intrastat aangifte context"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr "Grootboek export voorraad EU Intrastat aangifte resultaat"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr "Grootboek voorraad EU Intrastat aangifte regel"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
"Transacties met daadwerkelijke eigendomsoverdracht en financiële compensatie"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
"Rechtstreekse verkoop / inkoop behalve directe handel met / door "
|
||||
"particuliere consumenten"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
"Directe handel met / door particuliere consumenten (incl. verkoop op "
|
||||
"afstand)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
"Kosteloos retourneren en vervangen van goederen na registratie van de "
|
||||
"oorspronkelijke transactie"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr "Retourneren van goederen"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr "Vervangen van geretourneerde goederen"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr "Vervangen (bv. onder garantie) van niet-geretourneerde goederen"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
"Transacties met voorgenomen eigendomsoverdracht of eigendomsoverdracht "
|
||||
"zonder financiële compensatie"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
"Mutaties van / naar een magazijn (exclusief afroep- en af te leveren "
|
||||
"zendingen)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
"Levering voor verkoop op zicht of na proef (inclusief afroep- en af te "
|
||||
"leveren zendingen)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr "Financial lease"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr "Transacties met eigendomsoverdracht zonder financiële vergoeding"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
"Transacties met het oog op contractuele verwerking (geen "
|
||||
"eigendomsoverdracht)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Goederen die naar verwachting zullen terugkeren naar het oorspronkelijke "
|
||||
"lidstaat / het oorspronkelijke land van uitvoer"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Goederen die naar verwachting niet zullen terugkeren naar het "
|
||||
"oorspronkelijke lidstaat / het oorspronkelijke land van uitvoer"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
"Transacties volgens contractuele verwerking (zonder eigendomsoverdracht)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Goederen die terugkeren naar het oorspronkelijke lidstaat / land van uitvoer"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Goederen die niet terugkeren naar het oorspronkelijke lidstaat / land van "
|
||||
"uitvoer"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr "Bijzondere transacties geregistreerd voor nationale doeleinden"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr "Bijzondere transacties geregistreerd voor nationale doeleinden"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
"Transacties met het oog op/volgen van inklaring (geen eigendomsoverdracht, "
|
||||
"betreft goederen in quasi-import of export)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
"Vrijgave goederen voor vrij verkeer in een lidstaat met daaropvolgende "
|
||||
"uitvoer naar een andere lidstaat"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
"Vervoer van goederen van de ene lidstaat naar een andere lidstaat om de "
|
||||
"goederen onder de uitvoer regeling te plaatsen"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
"Verzendingen van bouw- en technisch materiaal in het kader van een contract "
|
||||
"waarin is opgenomen dat de goederen niet afzonderlijk hoeven te worden "
|
||||
"gefactureerd en een factuur voor de totale opdracht wordt opgesteld"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
"Verzendingen van bouw- en technisch materiaal in het kader van een contract "
|
||||
"waarin is opgenomen dat de goederen niet afzonderlijk hoeven te worden "
|
||||
"gefactureerd en een factuur voor de totale opdracht wordt opgesteld"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr "Transacties die niet ingedeeld kunnen worden onder andere codes"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr "Huur, lening en operational lease langer dan 24 maanden"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr "Overig"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr "Grootboek voorraad EU Intrastat transactie"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr "Transport over zee"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr "Transport via spoor"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr "Transport via de weg"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr "Transport via de lucht"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr "Postzendingen"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr "Vaste transportmiddelen"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr "Vervoer over de binnenwateren"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr "Eigen voortstuwing"
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr "Grootboek voorraad EU Intrastat transport"
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr "Intrastat aangiftes"
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr "Intrastat aangifte regels"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr "Exporteer intrastat aangifte"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Alles"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr "Geopend"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr "Intrastat aangifte moet uniek zijn per maand, land en bedrijf."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr "De dag van de intrastat aangifte moet de eerste van de maand zijn."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr "Kan de intrastat relatie van voorraad mutatie \"%(move)s\" niet vinden."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
"Kan de intrastat landen voor de voorraad mutaties \"%(moves)s\" niet vinden."
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr "Exporteren"
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr "Gebruiker in bedrijven"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr "Intrastat aangiftes"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr "Gesloten"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr "Geopend"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr "Aankomst"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr "Verzenden"
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr "Aankomst"
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr "Verzenden"
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr "Extra eenheid"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr "Land"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr "Land van herkomst"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr "Regio"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr "Tariefcode"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr "Transactie"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr "Soort"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr "BTW"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr "Waarde"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr "Land magazijn"
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr "Afronden"
|
||||
614
modules/account_stock_eu/locale/pl.po
Normal file
614
modules/account_stock_eu/locale/pl.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
614
modules/account_stock_eu/locale/pt.po
Normal file
614
modules/account_stock_eu/locale/pt.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
614
modules/account_stock_eu/locale/ro.po
Normal file
614
modules/account_stock_eu/locale/ro.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
614
modules/account_stock_eu/locale/ru.po
Normal file
614
modules/account_stock_eu/locale/ru.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
636
modules/account_stock_eu/locale/sl.po
Normal file
636
modules/account_stock_eu/locale/sl.po
Normal file
@@ -0,0 +1,636 @@
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr "Družba"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr "Država"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr "Mesec"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr "Stanje"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr "Družba"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr "Deklaracija"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr "Datoteka"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr "Ime datoteke"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr "Država"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr "Država porekla"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr "Incoterm"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr "Regija"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr "Tarifna številka"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr "Transakcija"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr "Transport"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr "Vrsta"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr "Vrednost"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr "DDV"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr "Teža"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr "Šifra"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr "Matična transakcija"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr "Šifra"
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr "Intrastat valuta"
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr "Intrastat šifra"
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr "Intrastat država"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr "Intrastat država porekla"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr "Intrastat deklaracija"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr "Intrastat incoterm"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr "Intrastat regija"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr "Intrastat tarifna številka"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr "Intrastat enota tarifne številke"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr "Intrastat transakcija"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr "Intrastat vrsta"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr "Intrastat vrednost"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr "Intrastat DDV"
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr "Intrastat država skladišča"
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Iz države"
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "V državo"
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Iz države"
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "V državo"
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Iz države"
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "V državo"
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Iz države"
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "V državo"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr "Iz države"
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr "V državo"
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr "Izvoz intrastat deklaracij"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr "Intrastat vrstica deklaracije"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr "Intrastat izvoz deklaracije"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr "Intrastat vrstica deklaracije"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr "Vračilo blaga"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Blago, za katero se pričakuje, da se bo vrnilo v začetno državo "
|
||||
"članico/državo izvoza"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
"Blago, za katero se ne pričakuje, da se bo vrnilo v začetno državo "
|
||||
"članico/državo izvoza"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr "Blago, ki se vrne v začetno državo članico/državo izvoza"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr "Blago, ki se ne vrne v začetno državo članico/državo izvoza"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr "Posebni posli, zabeleženi za nacionalne namene"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr "Posebni posli, zabeleženi za nacionalne namene"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
"Sprostitev blaga v prosti promet v državi članici z nadaljnjim izvozom v "
|
||||
"drugo državo članico"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
"Prevoz blaga iz ene države članice v drugo za dajanje blaga v izvozni "
|
||||
"postopek"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
"Posli, ki vključujejo dobavo gradbenega materiala in tehnične opreme v "
|
||||
"okviru splošne pogodbe o gradnji ali projektiranju, ki ne zahteva ločenega "
|
||||
"računa za blago, izda pa se račun za celotno pogodbeno vrednost"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
"Posli, ki vključujejo dobavo gradbenega materiala in tehnične opreme v "
|
||||
"okviru splošne pogodbe o gradnji ali projektiranju, ki ne zahteva ločenega "
|
||||
"računa za blago, izda pa se račun za celotno pogodbeno vrednost"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr "Drugi posli, ki jih ni mogoče uvrstiti pod druge oznake"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr "Najem, izposoja, operativni zakup, ki presega 24 mesecev"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr "Drugo"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr "Intrastat transakcija"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr "Prevoz po morju"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr "Železniški prevoz"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr "Cestni prevoz"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr "Zračni prevoz"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr "Poštna pošiljka"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr "Transportne napeljave (cevovodi, plinovodi, daljnovodi, ipd.)"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr "Prevoz po celinskih vodah"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr "Lastni pogon"
|
||||
|
||||
#, fuzzy
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr "Intrastat transport"
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr "Intrastat deklaracije"
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr "Vrstice intrastat deklaracij"
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr "Izvoz intrastat deklaracij"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr "Vse"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr "Odprto"
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
"Intrastat deklaracija mora biti edinstvena za mesec, državo in družbo."
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr "Datum intrastat deklaracije mora biti prvi dan v mesecu."
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr "Izvoz"
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr "Uporabnik v družbah"
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr "Intrastat deklaracije"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr "Zaprto"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr "Odprto"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr "Prihod"
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr "Odprema"
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr "Prihod"
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr "Odprema"
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr "Država"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr "Država porekla"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr "Regija"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr "Tarifna številka"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr "Transakcija"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr "Vrsta"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr "DDV"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr "Vrednost"
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr "Država skladišča"
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr "Intrastat"
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr "Zapri"
|
||||
614
modules/account_stock_eu/locale/tr.po
Normal file
614
modules/account_stock_eu/locale/tr.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
614
modules/account_stock_eu/locale/uk.po
Normal file
614
modules/account_stock_eu/locale/uk.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
614
modules/account_stock_eu/locale/zh_CN.po
Normal file
614
modules/account_stock_eu/locale/zh_CN.po
Normal file
@@ -0,0 +1,614 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt "field:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,extended:"
|
||||
msgid "Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,month:"
|
||||
msgid "Month"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,company:"
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.context,declaration:"
|
||||
msgid "Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,file:"
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.export.result,filename:"
|
||||
msgid "File Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,additional_unit:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,country_of_origin:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,incoterm:"
|
||||
msgid "Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,subdivision:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,tariff_code:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transaction:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,transport:"
|
||||
msgid "Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,value:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,vat:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.declaration.line,weight:"
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,description:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transaction,parent:"
|
||||
msgid "Parent"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,code:"
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:account.stock.eu.intrastat.transport,name:"
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:carrier,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:company.company,intrastat_currency:"
|
||||
msgid "Intrastat Currency"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,country_in_intrastat:"
|
||||
msgid "Country in Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:country.subdivision,intrastat_code:"
|
||||
msgid "Intrastat Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:customs.tariff.code,intrastat_uom:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_additional_unit:"
|
||||
msgid "Intrastat Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country:"
|
||||
msgid "Intrastat Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_country_of_origin:"
|
||||
msgid "Intrastat Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_declaration:"
|
||||
msgid "Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_extended:"
|
||||
msgid "Intrastat Extended"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_incoterm:"
|
||||
msgid "Intrastat Incoterm"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_subdivision:"
|
||||
msgid "Intrastat Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code:"
|
||||
msgid "Intrastat Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_tariff_code_uom:"
|
||||
msgid "Intrastat Tariff Code Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transaction:"
|
||||
msgid "Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_transport:"
|
||||
msgid "Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_type:"
|
||||
msgid "Intrastat Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_value:"
|
||||
msgid "Intrastat Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_vat:"
|
||||
msgid "Intrastat VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.move,intrastat_warehouse_country:"
|
||||
msgid "Intrastat Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.in.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.internal,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_from_country:"
|
||||
msgid "From Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "field:stock.shipment.out.return,intrastat_to_country:"
|
||||
msgid "To Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "help:account.fiscalyear,intrastat_extended:"
|
||||
msgid "Check to generate extended declaration."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.context,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Context"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.export.result,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Export Result"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.declaration.line,string:"
|
||||
msgid "Account Stock Eu Intrastat Declaration Line"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_1"
|
||||
msgid ""
|
||||
"Transactions involving actual change of ownership with financial "
|
||||
"compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_11"
|
||||
msgid "Outright sale/purchase except direct trade with/by private consumers"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_12"
|
||||
msgid "Direct trade with/by private consumers (incl. distance sale)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_2"
|
||||
msgid ""
|
||||
"Return and replacement of goods free of charge after registration of the "
|
||||
"original transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_21"
|
||||
msgid "Return of goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_22"
|
||||
msgid "Replacement for returned goods"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_23"
|
||||
msgid "Replacement (e.g. under warranty) for goods not being returned"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_3"
|
||||
msgid ""
|
||||
"Transactions involving intended change of ownership or change of ownership "
|
||||
"without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_31"
|
||||
msgid ""
|
||||
"Movements to/from a warehouse (excluding call off and consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_32"
|
||||
msgid ""
|
||||
"Supply for sale on approval or after trial (including call-off and "
|
||||
"consignment stock)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_33"
|
||||
msgid "Financial leasing"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_34"
|
||||
msgid ""
|
||||
"Transactions involving transfer of ownership without financial compensation"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_4"
|
||||
msgid ""
|
||||
"Transactions with a view to processing under contract (not involving change "
|
||||
"of ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_41"
|
||||
msgid "Goods expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_42"
|
||||
msgid ""
|
||||
"Goods not expected to return to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_5"
|
||||
msgid ""
|
||||
"Transactions following processing under contract (not involving change of "
|
||||
"ownership)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_51"
|
||||
msgid "Goods returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_52"
|
||||
msgid "Goods not returning to the initial Member State/country of export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_6"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_60"
|
||||
msgid "Particular transactions recorded for national purposes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_7"
|
||||
msgid ""
|
||||
"Transactions with a view to/following customs clearance (not involving "
|
||||
"change of ownership, related to goods in quasi-import or export)"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_71"
|
||||
msgid ""
|
||||
"Release of goods for free circulation in a Member State with a subsequent "
|
||||
"export to another Member State"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_72"
|
||||
msgid ""
|
||||
"Transportation of goods from one Member State to another Member State to "
|
||||
"place the goods under the export procedure"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_8"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_80"
|
||||
msgid ""
|
||||
"Transactions involving the supply of building materials and technical "
|
||||
"equipment under a general construction or civil engineering contract for "
|
||||
"which no separate invoicing of the goods is required and an invoice for the "
|
||||
"total contract is issued"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_9"
|
||||
msgid "Other transactions which cannot be classified under other codes"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_91"
|
||||
msgid "Hire, loan, and operational leasing longer than 24 months"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transaction,description:intrastat_transaction_99"
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transaction,string:"
|
||||
msgid "Account Stock Eu Intrastat Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_1"
|
||||
msgid "Sea transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_2"
|
||||
msgid "Railway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_3"
|
||||
msgid "Road transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_4"
|
||||
msgid "Air transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_5"
|
||||
msgid "Postal consignments"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_7"
|
||||
msgid "Fixed transport devices"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_8"
|
||||
msgid "Inland waterway transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.stock.eu.intrastat.transport,name:intrastat_transport_9"
|
||||
msgid "Own propulsion"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:account.stock.eu.intrastat.transport,string:"
|
||||
msgid "Account Stock Eu Intrastat Transport"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_form"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:act_intrastat_declaration_line_form"
|
||||
msgid "Intrastat Declaration Lines"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.action,name:wizard_intrastat_declaration_export"
|
||||
msgid "Export Intrastat Declaration"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_all"
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.action.act_window.domain,name:act_intrastat_declaration_form_domain_opened"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:ir.message,text:msg_intrastat_declaration_company_country_month_unique"
|
||||
msgid "Intrastat declaration must be unique per month, country and company."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.message,text:msg_intrastat_declaration_month_first_day"
|
||||
msgid "The day of intrastat declaration must be the first of the month."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_counterparty_not_found"
|
||||
msgid "Could not find the intrastat counterparty of move \"%(move)s\"."
|
||||
msgstr ""
|
||||
|
||||
#, python-format
|
||||
msgctxt "model:ir.message,text:msg_move_country_not_found"
|
||||
msgid "Could not find the intrastat countries for moves \"%(moves)s\"."
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.model.button,string:intrastat_declaration_export_button"
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.rule.group,name:rule_group_intrastat_declaration_companies"
|
||||
msgid "User in companies"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "model:ir.ui.menu,name:menu_intrastat_declaration"
|
||||
msgid "Intrastat Declarations"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration,state:"
|
||||
msgid "Opened"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:account.stock.eu.intrastat.declaration.line,type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Arrival"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "selection:stock.move,intrastat_type:"
|
||||
msgid "Dispatch"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:account.fiscalyear:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Additional Unit"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Country of Origin"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Subdivision"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Tariff Code"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Transaction"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "VAT"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.move:"
|
||||
msgid "Warehouse Country"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.in:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out.return:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "view:stock.shipment.out:"
|
||||
msgid "Intrastat"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"wizard_button:account.stock.eu.intrastat.declaration.export,result,end:"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
20
modules/account_stock_eu/message.xml
Normal file
20
modules/account_stock_eu/message.xml
Normal 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_intrastat_declaration_company_country_month_unique">
|
||||
<field name="text">Intrastat declaration must be unique per month, country and company.</field>
|
||||
</record>
|
||||
<record model="ir.message" id="msg_intrastat_declaration_month_first_day">
|
||||
<field name="text">The day of intrastat declaration must be the first of the month.</field>
|
||||
</record>
|
||||
<record model="ir.message" id="msg_move_counterparty_not_found">
|
||||
<field name="text">Could not find the intrastat counterparty of move "%(move)s".</field>
|
||||
</record>
|
||||
<record model="ir.message" id="msg_move_country_not_found">
|
||||
<field name="text">Could not find the intrastat countries for moves "%(moves)s".</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
48
modules/account_stock_eu/sale.py
Normal file
48
modules/account_stock_eu/sale.py
Normal file
@@ -0,0 +1,48 @@
|
||||
# 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.account.exceptions import FiscalYearNotFoundError
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
|
||||
|
||||
class Sale_Incoterm(metaclass=PoolMeta):
|
||||
__name__ = 'sale.sale'
|
||||
|
||||
@property
|
||||
@fields.depends('company')
|
||||
def _incoterm_required(self):
|
||||
pool = Pool()
|
||||
FiscalYear = pool.get('account.fiscalyear')
|
||||
|
||||
required = super()._incoterm_required
|
||||
|
||||
if not required and self.company and self.company.incoterms:
|
||||
if (self.warehouse and self.warehouse.address
|
||||
and self.shipment_address):
|
||||
try:
|
||||
fiscalyear = FiscalYear.find(
|
||||
self.company.id,
|
||||
date=self.sale_date)
|
||||
except FiscalYearNotFoundError:
|
||||
pass
|
||||
else:
|
||||
if fiscalyear.intrastat_extended:
|
||||
from_country = self.warehouse.address.country
|
||||
if from_country:
|
||||
from_europe = from_country.is_member(
|
||||
'country.organization_eu',
|
||||
self.sale_date)
|
||||
else:
|
||||
from_europe = None
|
||||
to_country = self.shipment_address.country
|
||||
if to_country:
|
||||
to_europe = to_country.is_member(
|
||||
'country.organization_eu',
|
||||
self.sale_date)
|
||||
else:
|
||||
to_europe = None
|
||||
if (from_country != to_country
|
||||
and from_europe and to_europe):
|
||||
required = True
|
||||
return required
|
||||
717
modules/account_stock_eu/stock.py
Normal file
717
modules/account_stock_eu/stock.py
Normal file
@@ -0,0 +1,717 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
|
||||
from decimal import Decimal
|
||||
|
||||
from sql import Null
|
||||
|
||||
from trytond.i18n import gettext
|
||||
from trytond.model import Index, ModelView, Workflow, fields
|
||||
from trytond.modules.account.exceptions import FiscalYearNotFoundError
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
from trytond.pyson import Eval
|
||||
from trytond.transaction import Transaction
|
||||
|
||||
from .exceptions import CounterPartyNotFound, CountryNotFound
|
||||
|
||||
|
||||
class Move(metaclass=PoolMeta):
|
||||
__name__ = 'stock.move'
|
||||
|
||||
_states = {
|
||||
'required': Eval('intrastat_type') & (Eval('state') == 'done'),
|
||||
'invisible': ~Eval('intrastat_type'),
|
||||
}
|
||||
_states_dispatch = {
|
||||
'required': (
|
||||
(Eval('intrastat_type') == 'dispatch')
|
||||
& (Eval('state') == 'done')),
|
||||
'invisible': Eval('intrastat_type') != 'dispatch',
|
||||
}
|
||||
|
||||
intrastat_type = fields.Selection([
|
||||
(None, ""),
|
||||
('arrival', "Arrival"),
|
||||
('dispatch', "Dispatch"),
|
||||
], "Intrastat Type", sort=False, readonly=True)
|
||||
intrastat_warehouse_country = fields.Many2One(
|
||||
'country.country', "Intrastat Warehouse Country",
|
||||
ondelete='RESTRICT', states=_states)
|
||||
intrastat_country = fields.Many2One(
|
||||
'country.country', "Intrastat Country",
|
||||
ondelete='RESTRICT', states=_states)
|
||||
intrastat_subdivision = fields.Many2One(
|
||||
'country.subdivision', "Intrastat Subdivision",
|
||||
ondelete='RESTRICT',
|
||||
domain=[
|
||||
('country', '=', Eval('intrastat_warehouse_country', -1)),
|
||||
('intrastat_code', '!=', None),
|
||||
],
|
||||
states=_states)
|
||||
intrastat_tariff_code = fields.Many2One(
|
||||
'customs.tariff.code', "Intrastat Tariff Code",
|
||||
ondelete='RESTRICT', states=_states)
|
||||
intrastat_value = fields.Numeric(
|
||||
"Intrastat Value", digits=(None, 2), readonly=True, states=_states)
|
||||
intrastat_transaction = fields.Many2One(
|
||||
'account.stock.eu.intrastat.transaction', "Intrastat Transaction",
|
||||
ondelete='RESTRICT', states=_states)
|
||||
intrastat_additional_unit = fields.Float(
|
||||
"Intrastat Additional Unit", digits=(None, 3),
|
||||
states={
|
||||
'required': (
|
||||
_states['required'] & Eval('intrastat_tariff_code_uom')),
|
||||
'invisible': _states['invisible'],
|
||||
})
|
||||
intrastat_country_of_origin = fields.Many2One(
|
||||
'country.country', "Intrastat Country of Origin",
|
||||
ondelete='RESTRICT', states=_states_dispatch)
|
||||
intrastat_vat = fields.Many2One(
|
||||
'party.identifier', "Intrastat VAT",
|
||||
ondelete='RESTRICT',
|
||||
domain=[
|
||||
('type', '=', 'eu_vat'),
|
||||
],
|
||||
states={
|
||||
'invisible': _states_dispatch['invisible'],
|
||||
})
|
||||
intrastat_declaration = fields.Many2One(
|
||||
'account.stock.eu.intrastat.declaration', "Intrastat Declaration",
|
||||
readonly=True, states=_states, ondelete='RESTRICT',
|
||||
domain=[
|
||||
('company', '=', Eval('company', -1)),
|
||||
('country', '=', Eval('intrastat_warehouse_country', -1)),
|
||||
])
|
||||
|
||||
intrastat_tariff_code_uom = fields.Function(
|
||||
fields.Many2One('product.uom', "Intrastat Tariff Code Unit"),
|
||||
'on_change_with_intrastat_tariff_code_uom')
|
||||
|
||||
del _states, _states_dispatch
|
||||
|
||||
@classmethod
|
||||
def __setup__(cls):
|
||||
super().__setup__()
|
||||
intrastat_required = Eval('intrastat_type') & (Eval('state') == 'done')
|
||||
weight_required = cls.internal_weight.states.get('required')
|
||||
if weight_required:
|
||||
weight_required |= intrastat_required
|
||||
else:
|
||||
weight_required = intrastat_required
|
||||
cls.internal_weight.states['required'] = weight_required
|
||||
|
||||
t = cls.__table__()
|
||||
cls._sql_indexes.add(
|
||||
Index(
|
||||
t,
|
||||
(t.intrastat_declaration, Index.Range()),
|
||||
(t.company, Index.Range()),
|
||||
where=(t.intrastat_type != Null) & (t.state == 'done')))
|
||||
|
||||
@fields.depends(
|
||||
'effective_date', 'planned_date',
|
||||
'from_location', 'to_location',
|
||||
methods=['intrastat_from_country', 'intrastat_to_country'])
|
||||
def on_change_with_intrastat_type(self):
|
||||
from_country = self.intrastat_from_country
|
||||
to_country = self.intrastat_to_country
|
||||
if (from_country != to_country
|
||||
and from_country and from_country.in_intrastat(
|
||||
date=self.effective_date or self.planned_date)
|
||||
and to_country and to_country.in_intrastat(
|
||||
date=self.effective_date or self.planned_date)):
|
||||
if self.from_location.type == 'storage' and self.from_warehouse:
|
||||
return 'dispatch'
|
||||
elif self.to_location.type == 'storage' and self.to_warehouse:
|
||||
return 'arrival'
|
||||
|
||||
@fields.depends('intrastat_tariff_code')
|
||||
def on_change_with_intrastat_tariff_code_uom(self, name=None):
|
||||
if self.intrastat_tariff_code:
|
||||
return self.intrastat_tariff_code.intrastat_uom
|
||||
|
||||
@property
|
||||
@fields.depends(
|
||||
'from_location', 'to_location', 'shipment',
|
||||
methods=['intrastat_to_country'])
|
||||
def intrastat_from_country(self):
|
||||
if self.from_location:
|
||||
if self.from_warehouse and self.from_warehouse.address:
|
||||
return self.from_warehouse.address.country
|
||||
elif (self.from_location.type in {'supplier', 'customer'}
|
||||
and hasattr(self.shipment, 'intrastat_from_country')):
|
||||
return self.shipment.intrastat_from_country
|
||||
elif self.from_location.type == 'lost_found':
|
||||
if (self.to_location
|
||||
and self.to_location.type != 'lost_found'):
|
||||
return self.intrastat_to_country
|
||||
|
||||
@property
|
||||
@fields.depends(
|
||||
'to_location', 'from_location', 'shipment',
|
||||
methods=['intrastat_from_country'])
|
||||
def intrastat_to_country(self):
|
||||
if self.to_location:
|
||||
if self.to_warehouse and self.to_warehouse.address:
|
||||
return self.to_warehouse.address.country
|
||||
elif (self.to_location.type in {'supplier', 'customer'}
|
||||
and hasattr(self.shipment, 'intrastat_to_country')):
|
||||
return self.shipment.intrastat_to_country
|
||||
elif self.to_location.type == 'lost_found':
|
||||
if (self.from_location
|
||||
and self.from_location.type != 'lost_found'):
|
||||
return self.intrastat_from_country
|
||||
|
||||
@classmethod
|
||||
def _reopen_intrastat(cls, moves):
|
||||
pool = Pool()
|
||||
IntrastatDeclaration = pool.get(
|
||||
'account.stock.eu.intrastat.declaration')
|
||||
declarations = {
|
||||
m.intrastat_declaration for m in moves
|
||||
if m.intrastat_declaration}
|
||||
if declarations:
|
||||
IntrastatDeclaration.open(
|
||||
IntrastatDeclaration.browse(declarations))
|
||||
|
||||
@classmethod
|
||||
def view_attributes(cls):
|
||||
return super().view_attributes() + [
|
||||
('//page[@id="intrastat"]', 'states', {
|
||||
'invisible': ~Eval('intrastat_type'),
|
||||
}),
|
||||
]
|
||||
|
||||
def compute_fields(self, field_names=None):
|
||||
cls = self.__class__
|
||||
values = super().compute_fields(field_names=field_names)
|
||||
if (self.state not in {'done', 'cancelled'}
|
||||
and (field_names is None
|
||||
or (cls.intrastat_type.on_change_with & field_names))):
|
||||
intrastat_type = self.on_change_with_intrastat_type()
|
||||
if getattr(self, 'intrastat_type', None) != intrastat_type:
|
||||
values['intrastat_type'] = intrastat_type
|
||||
if (field_names is None
|
||||
or (cls.intrastat_value.on_change_with & field_names)):
|
||||
intrastat_value = self.on_change_with_intrastat_value()
|
||||
if getattr(self, 'intrastat_value', None) != intrastat_value:
|
||||
values['intrastat_value'] = intrastat_value
|
||||
return values
|
||||
|
||||
@classmethod
|
||||
def on_write(cls, moves, values):
|
||||
callback = super().on_write(moves, values)
|
||||
callback.append(lambda: cls._reopen_intrastat(moves))
|
||||
if any(f.startswith('intrastat_') for f in values):
|
||||
cls._reopen_intrastat(moves)
|
||||
return callback
|
||||
|
||||
@classmethod
|
||||
def copy(cls, moves, default=None):
|
||||
default = default.copy() if default else {}
|
||||
default.setdefault('intrastat_type')
|
||||
default.setdefault('intrastat_warehouse_country')
|
||||
default.setdefault('intrastat_country')
|
||||
default.setdefault('intrastat_subdivision')
|
||||
default.setdefault('intrastat_tariff_code')
|
||||
default.setdefault('intrastat_value')
|
||||
default.setdefault('intrastat_transaction')
|
||||
default.setdefault('intrastat_additional_unit')
|
||||
default.setdefault('intrastat_country_of_origin')
|
||||
default.setdefault('intrastat_vat')
|
||||
default.setdefault('intrastat_declaration')
|
||||
return super().copy(moves, default=default)
|
||||
|
||||
@classmethod
|
||||
@ModelView.button
|
||||
@Workflow.transition('cancelled')
|
||||
def cancel(cls, moves):
|
||||
pool = Pool()
|
||||
IntrastatDeclaration = pool.get(
|
||||
'account.stock.eu.intrastat.declaration')
|
||||
super().cancel(moves)
|
||||
declarations = {
|
||||
m.intrastat_declaration for m in moves if m.intrastat_declaration}
|
||||
if declarations:
|
||||
IntrastatDeclaration.open(
|
||||
IntrastatDeclaration.browse(declarations))
|
||||
|
||||
@classmethod
|
||||
@ModelView.button
|
||||
@Workflow.transition('done')
|
||||
def do(cls, moves):
|
||||
pool = Pool()
|
||||
Warning = pool.get('res.user.warning')
|
||||
unknown_country = []
|
||||
for move in moves:
|
||||
move._set_intrastat()
|
||||
if (move.intrastat_type
|
||||
and (not move.intrastat_from_country
|
||||
or not move.intrastat_to_country)):
|
||||
unknown_country.append(move)
|
||||
if unknown_country:
|
||||
warning_name = Warning.format(
|
||||
'intrastat_country', unknown_country)
|
||||
if Warning.check(warning_name):
|
||||
names = ', '.join(m.rec_name for m in unknown_country[:5])
|
||||
if len(unknown_country) > 5:
|
||||
names + '...'
|
||||
raise CountryNotFound(warning_name,
|
||||
gettext('account_stock_eu.msg_move_country_not_found',
|
||||
moves=names))
|
||||
cls.save(moves)
|
||||
super().do(moves)
|
||||
|
||||
def _set_intrastat(self):
|
||||
pool = Pool()
|
||||
IntrastatTransaction = pool.get(
|
||||
'account.stock.eu.intrastat.transaction')
|
||||
IntrastatDeclaration = pool.get(
|
||||
'account.stock.eu.intrastat.declaration')
|
||||
Warning = pool.get('res.user.warning')
|
||||
if not self.intrastat_type:
|
||||
return
|
||||
self.set_effective_date()
|
||||
self.intrastat_value = self.on_change_with_intrastat_value()
|
||||
if self.intrastat_type == 'arrival':
|
||||
if not self.intrastat_warehouse_country:
|
||||
self.intrastat_warehouse_country = self.intrastat_to_country
|
||||
if not self.intrastat_country:
|
||||
self.intrastat_country = self.intrastat_from_country
|
||||
if not self.intrastat_subdivision:
|
||||
if (self.to_warehouse
|
||||
and self.to_warehouse.address
|
||||
and self.to_warehouse.address.subdivision):
|
||||
subdivision = self.to_warehouse.address.subdivision
|
||||
self.intrastat_subdivision = subdivision.get_intrastat()
|
||||
if self.intrastat_country_of_origin:
|
||||
self.intrastat_country_of_origin = None
|
||||
if self.intrastat_vat:
|
||||
self.intrastat_vat = None
|
||||
elif self.intrastat_type == 'dispatch':
|
||||
if not self.intrastat_warehouse_country:
|
||||
self.intrastat_warehouse_country = self.intrastat_from_country
|
||||
if not self.intrastat_country:
|
||||
self.intrastat_country = self.intrastat_to_country
|
||||
if not self.intrastat_subdivision:
|
||||
if (self.from_warehouse
|
||||
and self.from_warehouse.address
|
||||
and self.from_warehouse.address.subdivision):
|
||||
subdivision = self.from_warehouse.address.subdivision
|
||||
self.intrastat_subdivision = subdivision.get_intrastat()
|
||||
if not self.intrastat_country_of_origin:
|
||||
self.intrastat_country_of_origin = (
|
||||
self.product.country_of_origin)
|
||||
if not self.intrastat_vat:
|
||||
counterparty = self._intrastat_counterparty()
|
||||
if not counterparty:
|
||||
warning_name = Warning.format(
|
||||
'intrastat_counterparty', [self])
|
||||
if Warning.check(warning_name):
|
||||
raise CounterPartyNotFound(warning_name,
|
||||
gettext('account_stock_eu'
|
||||
'.msg_move_counterparty_not_found',
|
||||
move=self.rec_name))
|
||||
else:
|
||||
fallback = None
|
||||
for identifier in counterparty.identifiers:
|
||||
if identifier.type == 'eu_vat':
|
||||
if not fallback:
|
||||
fallback = identifier
|
||||
if (self.intrastat_country
|
||||
and identifier.code.startswith(
|
||||
self.intrastat_country.code)):
|
||||
break
|
||||
else:
|
||||
identifier = fallback
|
||||
self.intrastat_vat = identifier
|
||||
if self.intrastat_warehouse_country:
|
||||
self.intrastat_declaration = IntrastatDeclaration.get(
|
||||
self.company,
|
||||
self.intrastat_warehouse_country,
|
||||
self.effective_date or self.planned_date)
|
||||
if not self.intrastat_tariff_code:
|
||||
self.intrastat_tariff_code = self.product.get_tariff_code(
|
||||
self._intrastat_tariff_code_pattern())
|
||||
if not self.intrastat_transaction:
|
||||
self.intrastat_transaction = IntrastatTransaction.get(
|
||||
self._intrastat_transaction_code())
|
||||
if (not self.intrastat_additional_unit
|
||||
and self.intrastat_tariff_code
|
||||
and self.intrastat_tariff_code.intrastat_uom):
|
||||
quantity = self._intrastat_quantity(
|
||||
self.intrastat_tariff_code.intrastat_uom)
|
||||
if quantity is not None:
|
||||
ndigits = self.__class__.intrastat_additional_unit.digits[1]
|
||||
self.intrastat_additional_unit = round(quantity, ndigits)
|
||||
|
||||
def _intrastat_tariff_code_pattern(self):
|
||||
return {
|
||||
'date': self.effective_date,
|
||||
'country': (
|
||||
self.intrastat_country.id if self.intrastat_country else None),
|
||||
}
|
||||
|
||||
def _intrastat_transaction_code(self):
|
||||
pool = Pool()
|
||||
ShipmentIn = pool.get('stock.shipment.in')
|
||||
ShipmentInReturn = pool.get('stock.shipment.in.return')
|
||||
ShipmentOut = pool.get('stock.shipment.out')
|
||||
ShipmentOutReturn = pool.get('stock.shipment.out.return')
|
||||
ShipmentInternal = pool.get('stock.shipment.internal')
|
||||
|
||||
if isinstance(self.shipment, ShipmentInternal):
|
||||
return '31'
|
||||
|
||||
try:
|
||||
SaleLine = pool.get('sale.line')
|
||||
except KeyError:
|
||||
pass
|
||||
else:
|
||||
if isinstance(self.origin, SaleLine):
|
||||
sale = self.origin.sale
|
||||
party = sale.invoice_party or sale.party
|
||||
if self.quantity >= 0:
|
||||
if party.tax_identifier:
|
||||
return '11'
|
||||
else:
|
||||
return '12'
|
||||
else:
|
||||
return '21'
|
||||
try:
|
||||
PurchaseLine = pool.get('purchase.line')
|
||||
except KeyError:
|
||||
pass
|
||||
else:
|
||||
if isinstance(self.origin, PurchaseLine):
|
||||
purchase = self.origin.purchase
|
||||
party = purchase.invoice_party or purchase.party
|
||||
if self.quantity >= 0:
|
||||
if party.tax_identifier:
|
||||
return '11'
|
||||
else:
|
||||
return '12'
|
||||
else:
|
||||
return '21'
|
||||
|
||||
if isinstance(self.shipment, ShipmentIn):
|
||||
if self.shipment.supplier.tax_identifier:
|
||||
return '11'
|
||||
else:
|
||||
return '12'
|
||||
elif isinstance(self.shipment, ShipmentInReturn):
|
||||
return '21'
|
||||
elif isinstance(self.shipment, ShipmentOut):
|
||||
if self.shipment.customer.tax_identifier:
|
||||
return '11'
|
||||
else:
|
||||
return '12'
|
||||
elif isinstance(self.shipment, ShipmentOutReturn):
|
||||
return '21'
|
||||
|
||||
@fields.depends(
|
||||
'state', 'unit_price', 'currency', 'quantity', 'effective_date',
|
||||
'planned_date', 'company')
|
||||
def on_change_with_intrastat_value(self):
|
||||
pool = Pool()
|
||||
Currency = pool.get('currency.currency')
|
||||
if self.state == 'done' and self.unit_price is not None:
|
||||
ndigits = self.__class__.intrastat_value.digits[1]
|
||||
with Transaction().set_context(
|
||||
date=self.effective_date or self.planned_date):
|
||||
return round(Currency.compute(
|
||||
self.currency,
|
||||
self.unit_price * Decimal(str(self.quantity)),
|
||||
self.company.intrastat_currency or self.currency,
|
||||
round=False), ndigits)
|
||||
|
||||
def _intrastat_quantity(self, unit):
|
||||
pool = Pool()
|
||||
UoM = pool.get('product.uom')
|
||||
if self.unit.category == unit.category:
|
||||
return UoM.compute_qty(self.unit, self.quantity, unit, round=False)
|
||||
elif (getattr(self, 'secondary_unit', None)
|
||||
and self.secondary_unit.category == unit.category):
|
||||
return UoM.compute_qty(
|
||||
self.secondary_unit, self.secondary_quantity, unit,
|
||||
round=False)
|
||||
if (self.product.volume
|
||||
and self.product.volume_uom.category == unit.category):
|
||||
return UoM.compute_qty(
|
||||
self.product.volume_uom,
|
||||
self.internal_quantity * self.product.volume,
|
||||
unit, round=False)
|
||||
|
||||
def _intrastat_counterparty(self):
|
||||
pool = Pool()
|
||||
ShipmentIn = pool.get('stock.shipment.in')
|
||||
ShipmentInReturn = pool.get('stock.shipment.in.return')
|
||||
ShipmentOut = pool.get('stock.shipment.out')
|
||||
ShipmentOutReturn = pool.get('stock.shipment.out.return')
|
||||
ShipmentInternal = pool.get('stock.shipment.internal')
|
||||
|
||||
if isinstance(self.shipment, ShipmentInternal):
|
||||
return self.company.party
|
||||
|
||||
try:
|
||||
SaleLine = pool.get('sale.line')
|
||||
except KeyError:
|
||||
pass
|
||||
else:
|
||||
if isinstance(self.origin, SaleLine):
|
||||
sale = self.origin.sale
|
||||
return sale.invoice_party or sale.party
|
||||
|
||||
try:
|
||||
PurchaseLine = pool.get('purchase.line')
|
||||
except KeyError:
|
||||
pass
|
||||
else:
|
||||
if isinstance(self.origin, PurchaseLine):
|
||||
purchase = self.origin.purchase
|
||||
return purchase.invoice_party or purchase.party
|
||||
|
||||
if isinstance(self.shipment, (ShipmentIn, ShipmentInReturn)):
|
||||
return self.shipment.supplier
|
||||
elif isinstance(self.shipment, (ShipmentOut, ShipmentOutReturn)):
|
||||
return self.shipment.customer
|
||||
|
||||
|
||||
class Move_Production(metaclass=PoolMeta):
|
||||
__name__ = 'stock.move'
|
||||
|
||||
@property
|
||||
@fields.depends('from_location', 'production')
|
||||
def intrastat_from_country(self):
|
||||
country = super().intrastat_from_country
|
||||
if self.from_location:
|
||||
if (self.from_location.type == 'production'
|
||||
and self.production
|
||||
and getattr(self.production, 'warehouse', None)
|
||||
and self.production.warehouse.address):
|
||||
country = self.production.warehouse.address.country
|
||||
return country
|
||||
|
||||
@property
|
||||
@fields.depends('to_location', 'production')
|
||||
def intrastat_to_country(self):
|
||||
country = super().intrastat_to_country
|
||||
if self.to_location:
|
||||
if (self.to_location.type == 'production'
|
||||
and self.production
|
||||
and getattr(self.production, 'warehouse', None)
|
||||
and self.production.warehouse.address):
|
||||
country = self.production.warehouse.address.country
|
||||
return country
|
||||
|
||||
|
||||
class Move_Incoterm(metaclass=PoolMeta):
|
||||
__name__ = 'stock.move'
|
||||
|
||||
_states = {
|
||||
'required': (
|
||||
Eval('intrastat_type') & Eval('intrastat_extended')
|
||||
& (Eval('state') == 'done')),
|
||||
'invisible': ~Eval('intrastat_type') | ~Eval('intrastat_extended'),
|
||||
}
|
||||
|
||||
intrastat_transport = fields.Many2One(
|
||||
'account.stock.eu.intrastat.transport', "Intrastat Transport",
|
||||
ondelete='RESTRICT', states=_states)
|
||||
intrastat_incoterm = fields.Many2One(
|
||||
'incoterm.incoterm', "Intrastat Incoterm",
|
||||
ondelete='RESTRICT', states=_states)
|
||||
|
||||
intrastat_extended = fields.Function(
|
||||
fields.Boolean("Intrastat Extended"),
|
||||
'on_change_with_intrastat_extended')
|
||||
|
||||
del _states
|
||||
|
||||
@fields.depends('company', 'effective_date', 'planned_date')
|
||||
def on_change_with_intrastat_extended(self, name=None):
|
||||
pool = Pool()
|
||||
FiscalYear = pool.get('account.fiscalyear')
|
||||
if self.company:
|
||||
try:
|
||||
fiscalyear = FiscalYear.find(
|
||||
self.company.id,
|
||||
date=self.effective_date or self.planned_date)
|
||||
except FiscalYearNotFoundError:
|
||||
pass
|
||||
else:
|
||||
return fiscalyear.intrastat_extended
|
||||
|
||||
def _set_intrastat(self):
|
||||
from trytond.modules.incoterm.common import IncotermMixin
|
||||
super()._set_intrastat()
|
||||
|
||||
if not self.intrastat_transport:
|
||||
carrier = self._intrastat_carrier()
|
||||
if carrier:
|
||||
self.intrastat_transport = carrier.intrastat_transport
|
||||
|
||||
if not self.intrastat_incoterm:
|
||||
if isinstance(self.shipment, IncotermMixin):
|
||||
self.intrastat_incoterm = self.shipment.incoterm
|
||||
elif isinstance(self.origin, IncotermMixin):
|
||||
self.intrastat_incoterm = self.origin.incoterm
|
||||
|
||||
def _intrastat_carrier(self):
|
||||
if (hasattr(self.shipment, 'carrier')
|
||||
and not getattr(self.shipment, 'carriages', None)):
|
||||
return self.shipment.carrier
|
||||
|
||||
@classmethod
|
||||
def copy(cls, moves, default=None):
|
||||
default = default.copy() if default else {}
|
||||
default.setdefault('intrastat_transport')
|
||||
default.setdefault('intrastat_incoterm')
|
||||
return super().copy(moves, default=default)
|
||||
|
||||
|
||||
class Move_Consignment(metaclass=PoolMeta):
|
||||
__name__ = 'stock.move'
|
||||
|
||||
def _intrastat_transaction_code(self):
|
||||
code = super()._intrastat_transaction_code()
|
||||
if self.is_supplier_consignment or self.is_customer_consignment:
|
||||
code = '32'
|
||||
return code
|
||||
|
||||
|
||||
class ShipmentMixin:
|
||||
__slots__ = ()
|
||||
|
||||
@property
|
||||
def intrastat_from_country(self):
|
||||
raise NotImplementedError
|
||||
|
||||
@property
|
||||
def intrastat_to_country(self):
|
||||
raise NotImplementedError
|
||||
|
||||
|
||||
class ShipmentIn(ShipmentMixin, metaclass=PoolMeta):
|
||||
__name__ = 'stock.shipment.in'
|
||||
|
||||
intrastat_from_country = fields.Many2One(
|
||||
'country.country', "From Country")
|
||||
intrastat_to_country = fields.Function(
|
||||
fields.Many2One('country.country', "To Country"),
|
||||
'on_change_with_intrastat_to_country')
|
||||
|
||||
@fields.depends('supplier')
|
||||
def on_change_supplier(self):
|
||||
try:
|
||||
super().on_change_supplier()
|
||||
except AttributeError:
|
||||
pass
|
||||
if self.supplier:
|
||||
address = self.supplier.address_get(type='delivery')
|
||||
if address:
|
||||
self.intrastat_from_country = address.country
|
||||
|
||||
@fields.depends('warehouse')
|
||||
def on_change_with_intrastat_to_country(self, name=None):
|
||||
if self.warehouse and self.warehouse.address:
|
||||
return self.warehouse.address.country
|
||||
|
||||
|
||||
class ShipmentInReturn(ShipmentMixin, metaclass=PoolMeta):
|
||||
__name__ = 'stock.shipment.in.return'
|
||||
|
||||
intrastat_from_country = fields.Function(
|
||||
fields.Many2One('country.country', "From Country"),
|
||||
'on_change_with_intrastat_from_country')
|
||||
intrastat_to_country = fields.Function(
|
||||
fields.Many2One('country.country', "To Country"),
|
||||
'on_change_with_intrastat_to_country')
|
||||
|
||||
@fields.depends('warehouse')
|
||||
def on_change_with_intrastat_from_country(self, name=None):
|
||||
if self.warehouse and self.warehouse.address:
|
||||
return self.warehouse.address.country
|
||||
|
||||
@fields.depends('delivery_address')
|
||||
def on_change_with_intrastat_to_country(self, name=None):
|
||||
if self.delivery_address:
|
||||
return self.delivery_address.country
|
||||
|
||||
|
||||
class ShipmentOut(ShipmentMixin, metaclass=PoolMeta):
|
||||
__name__ = 'stock.shipment.out'
|
||||
|
||||
intrastat_from_country = fields.Function(
|
||||
fields.Many2One('country.country', "From Country"),
|
||||
'on_change_with_intrastat_from_country')
|
||||
intrastat_to_country = fields.Function(
|
||||
fields.Many2One('country.country', "To Country"),
|
||||
'on_change_with_intrastat_to_country')
|
||||
|
||||
@fields.depends('warehouse')
|
||||
def on_change_with_intrastat_from_country(self, name=None):
|
||||
if self.warehouse and self.warehouse.address:
|
||||
return self.warehouse.address.country
|
||||
|
||||
@fields.depends('delivery_address')
|
||||
def on_change_with_intrastat_to_country(self, name=None):
|
||||
if self.delivery_address:
|
||||
return self.delivery_address.country
|
||||
|
||||
|
||||
class ShipmentOutReturn(ShipmentMixin, metaclass=PoolMeta):
|
||||
__name__ = 'stock.shipment.out.return'
|
||||
|
||||
intrastat_from_country = fields.Many2One('country.country', "From Country")
|
||||
intrastat_to_country = fields.Function(
|
||||
fields.Many2One('country.country', "To Country"),
|
||||
'on_change_with_intrastat_to_country')
|
||||
|
||||
@fields.depends('customer')
|
||||
def on_change_customer(self):
|
||||
try:
|
||||
super().on_change_customer()
|
||||
except AttributeError:
|
||||
pass
|
||||
if self.customer:
|
||||
address = self.customer.address_get(type='delivery')
|
||||
if address:
|
||||
self.intrastat_from_country = address.country
|
||||
|
||||
@fields.depends('warehouse')
|
||||
def on_change_with_intrastat_to_country(self, name=None):
|
||||
if self.warehouse and self.warehouse.address:
|
||||
return self.warehouse.address.country
|
||||
|
||||
|
||||
class ShipmentInternal(ShipmentMixin, metaclass=PoolMeta):
|
||||
__name__ = 'stock.shipment.internal'
|
||||
|
||||
intrastat_from_country = fields.Function(
|
||||
fields.Many2One('country.country', "From Country"),
|
||||
'on_change_with_intrastat_from_country')
|
||||
intrastat_to_country = fields.Function(
|
||||
fields.Many2One('country.country', "To Country"),
|
||||
'on_change_with_intrastat_to_country')
|
||||
|
||||
@fields.depends('from_location')
|
||||
def on_change_with_intrastat_from_country(self, name=None):
|
||||
if (self.from_location
|
||||
and self.from_location.warehouse
|
||||
and self.from_location.warehouse.address):
|
||||
return self.from_location.warehouse.address.country
|
||||
|
||||
@fields.depends('to_location')
|
||||
def on_change_with_intrastat_to_country(self, name=None):
|
||||
if (self.to_location
|
||||
and self.to_location.warehouse
|
||||
and self.to_location.warehouse.address):
|
||||
return self.to_location.warehouse.address.country
|
||||
|
||||
|
||||
class ShipmentDrop(ShipmentMixin, metaclass=PoolMeta):
|
||||
__name__ = 'stock.shipment.drop'
|
||||
|
||||
intrastat_from_country = None
|
||||
intrastat_to_country = None
|
||||
199
modules/account_stock_eu/stock.xml
Normal file
199
modules/account_stock_eu/stock.xml
Normal file
@@ -0,0 +1,199 @@
|
||||
<?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>
|
||||
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_type">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_type</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_type_account">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_type</field>
|
||||
<field name="group" ref="account.group_account"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_warehouse_country">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_warehouse_country</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_warehouse_country_account">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_warehouse_country</field>
|
||||
<field name="group" ref="account.group_account"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_country">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_country</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_country_account">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_country</field>
|
||||
<field name="group" ref="account.group_account"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_subdivision">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_subdivision</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_subdivision_account">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_subdivision</field>
|
||||
<field name="group" ref="account.group_account"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_tariff_code">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_tariff_code</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_tariff_code_account">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_tariff_code</field>
|
||||
<field name="group" ref="account.group_account"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_transaction">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_transaction</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_transaction_account">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_transaction</field>
|
||||
<field name="group" ref="account.group_account"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_additional_unit">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_additional_unit</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_additional_unit_account">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_additional_unit</field>
|
||||
<field name="group" ref="account.group_account"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_country_of_origin">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_country_of_origin</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_country_of_origin_account">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_country_of_origin</field>
|
||||
<field name="group" ref="account.group_account"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_vat">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_vat</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_vat_account">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_vat</field>
|
||||
<field name="group" ref="account.group_account"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
</record>
|
||||
</data>
|
||||
<data depends="incoterm">
|
||||
<record model="ir.ui.view" id="stock_move_view_form_incoterm">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="inherit" ref="stock.move_view_form"/>
|
||||
<field name="priority" eval="20"/>
|
||||
<field name="name">stock_move_form_incoterm</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_transport">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_transport</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_transport_account">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_transport</field>
|
||||
<field name="group" ref="account.group_account"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
</record>
|
||||
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_incoterm">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_incoterm</field>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="False"/>
|
||||
</record>
|
||||
<record model="ir.model.field.access" id="account_stock_move_intrastat_incoterm_account">
|
||||
<field name="model">stock.move</field>
|
||||
<field name="field">intrastat_incoterm</field>
|
||||
<field name="group" ref="account.group_account"/>
|
||||
<field name="perm_read" eval="True"/>
|
||||
<field name="perm_write" eval="True"/>
|
||||
</record>
|
||||
</data>
|
||||
<data>
|
||||
<record model="ir.ui.view" id="stock_shipment_in_view_form">
|
||||
<field name="model">stock.shipment.in</field>
|
||||
<field name="inherit" ref="stock.shipment_in_view_form"/>
|
||||
<field name="name">stock_shipment_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="stock_shipment_in_return_view_form">
|
||||
<field name="model">stock.shipment.in.return</field>
|
||||
<field name="inherit" ref="stock.shipment_in_return_view_form"/>
|
||||
<field name="name">stock_shipment_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="stock_shipment_out_view_form">
|
||||
<field name="model">stock.shipment.out</field>
|
||||
<field name="inherit" ref="stock.shipment_out_view_form"/>
|
||||
<field name="name">stock_shipment_form</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="stock_shipment_out_return_view_form">
|
||||
<field name="model">stock.shipment.out.return</field>
|
||||
<field name="inherit" ref="stock.shipment_out_return_view_form"/>
|
||||
<field name="name">stock_shipment_form</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
2
modules/account_stock_eu/tests/__init__.py
Normal file
2
modules/account_stock_eu/tests/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,387 @@
|
||||
=================================
|
||||
Account Stock EU Arrival Scenario
|
||||
=================================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> import datetime as dt
|
||||
>>> import io
|
||||
>>> import zipfile
|
||||
>>> from decimal import Decimal
|
||||
|
||||
>>> from proteus import Model, Wizard
|
||||
>>> from trytond.modules.account.tests.tools import create_fiscalyear
|
||||
>>> from trytond.modules.company.tests.tools import create_company, get_company
|
||||
>>> from trytond.modules.currency.tests.tools import get_currency
|
||||
>>> from trytond.tests.tools import activate_modules, assertEqual
|
||||
|
||||
>>> intrastat_extended = globals().get('intrastat_extended', False)
|
||||
>>> today = dt.date.today()
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules([
|
||||
... 'account_stock_eu', 'incoterm',
|
||||
... 'stock_shipment_cost', 'purchase_shipment_cost'])
|
||||
|
||||
>>> Carrier = Model.get('carrier')
|
||||
>>> Country = Model.get('country.country')
|
||||
>>> Incoterm = Model.get('incoterm.incoterm')
|
||||
>>> IntrastatDeclaration = Model.get('account.stock.eu.intrastat.declaration')
|
||||
>>> IntrastatDeclarationLine = Model.get(
|
||||
... 'account.stock.eu.intrastat.declaration.line')
|
||||
>>> IntrastatTransport = Model.get('account.stock.eu.intrastat.transport')
|
||||
>>> Organization = Model.get('country.organization')
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> ProductTemplate = Model.get('product.template')
|
||||
>>> ProductUom = Model.get('product.uom')
|
||||
>>> ShipmentIn = Model.get('stock.shipment.in')
|
||||
>>> ShipmentOutReturn = Model.get('stock.shipment.out.return')
|
||||
>>> StockLocation = Model.get('stock.location')
|
||||
>>> TariffCode = Model.get('customs.tariff.code')
|
||||
|
||||
Create countries::
|
||||
|
||||
>>> europe, = Organization.find([('code', '=', 'EU')])
|
||||
>>> belgium = Country(name="Belgium", code='BE')
|
||||
>>> subdivision = belgium.subdivisions.new(
|
||||
... name="Flemish Region", intrastat_code='1', type='region')
|
||||
>>> subdivision = belgium.subdivisions.new(
|
||||
... name="Walloon Region", intrastat_code='2', type='region')
|
||||
>>> belgium.save()
|
||||
>>> flemish, walloon = belgium.subdivisions
|
||||
>>> subdivision = belgium.subdivisions.new(
|
||||
... name="Liège", type='province', parent=walloon)
|
||||
>>> belgium.save()
|
||||
>>> liege, = [s for s in belgium.subdivisions if s.parent == walloon]
|
||||
>>> france = Country(name="France", code='FR')
|
||||
>>> france.save()
|
||||
>>> united_state = Country(name="United State", code='US')
|
||||
>>> united_state.save()
|
||||
|
||||
>>> member = europe.members.new(country=belgium)
|
||||
>>> member = europe.members.new(country=france)
|
||||
>>> europe.save()
|
||||
|
||||
Create currency::
|
||||
|
||||
>>> eur = get_currency('EUR')
|
||||
>>> usd = get_currency('USD')
|
||||
|
||||
Create company in Belgium::
|
||||
|
||||
>>> _ = create_company(currency=eur)
|
||||
>>> company = get_company()
|
||||
>>> company.incoterms.extend(Incoterm.find())
|
||||
>>> company.save()
|
||||
>>> company_address, = company.party.addresses
|
||||
>>> company_address.country = belgium
|
||||
>>> company_address.subdivision = liege
|
||||
>>> company_address.save()
|
||||
|
||||
Create fiscal year::
|
||||
|
||||
>>> fiscalyear = create_fiscalyear(company)
|
||||
>>> fiscalyear.intrastat_extended = intrastat_extended
|
||||
>>> fiscalyear.save()
|
||||
|
||||
Create suppliers::
|
||||
|
||||
>>> supplier_be = Party(name="Supplier BE")
|
||||
>>> address, = supplier_be.addresses
|
||||
>>> address.country = belgium
|
||||
>>> identifier = supplier_be.identifiers.new(type='eu_vat')
|
||||
>>> identifier.code = "BE0428759497"
|
||||
>>> supplier_be.save()
|
||||
|
||||
>>> supplier_fr = Party(name="Supplier FR")
|
||||
>>> address, = supplier_fr.addresses
|
||||
>>> address.country = france
|
||||
>>> identifier = supplier_fr.identifiers.new(type='eu_vat')
|
||||
>>> identifier.code = "FR40303265045"
|
||||
>>> supplier_fr.save()
|
||||
|
||||
>>> customer_fr = Party(name="Customer FR")
|
||||
>>> address, = customer_fr.addresses
|
||||
>>> address.country = france
|
||||
>>> customer_fr.save()
|
||||
|
||||
>>> supplier_us = Party(name="Supplier US")
|
||||
>>> address, = supplier_us.addresses
|
||||
>>> address.country = united_state
|
||||
>>> supplier_us.save()
|
||||
|
||||
Create product::
|
||||
|
||||
>>> unit, = ProductUom.find([('name', '=', "Unit")])
|
||||
>>> kg, = ProductUom.find([('name', '=', "Kilogram")])
|
||||
|
||||
>>> tariff_code = TariffCode(code="9403 10 51")
|
||||
>>> tariff_code.description = "Desks"
|
||||
>>> tariff_code.intrastat_uom = unit
|
||||
>>> tariff_code.save()
|
||||
|
||||
>>> template = ProductTemplate(name="Desk")
|
||||
>>> template.default_uom = unit
|
||||
>>> template.type = 'goods'
|
||||
>>> template.cost_price = Decimal('100.0000')
|
||||
>>> _ = template.tariff_codes.new(tariff_code=tariff_code)
|
||||
>>> template.weight = 3
|
||||
>>> template.weight_uom = kg
|
||||
>>> template.save()
|
||||
>>> product, = template.products
|
||||
|
||||
Create carriers::
|
||||
|
||||
>>> carrier_template = ProductTemplate(name="Carrier Product")
|
||||
>>> carrier_template.default_uom = unit
|
||||
>>> carrier_template.type = 'service'
|
||||
>>> carrier_template.list_price = Decimal('5')
|
||||
>>> carrier_template.save()
|
||||
>>> carrier_product, = carrier_template.products
|
||||
|
||||
>>> road_transport, = IntrastatTransport.find([('name', '=', "Road transport")])
|
||||
>>> carrier = Carrier()
|
||||
>>> party = Party(name="Carrier")
|
||||
>>> party.save()
|
||||
>>> carrier.party = party
|
||||
>>> carrier.carrier_product = carrier_product
|
||||
>>> carrier.shipment_cost_allocation_method = 'cost'
|
||||
>>> carrier.intrastat_transport = road_transport
|
||||
>>> carrier.save()
|
||||
|
||||
Get stock locations::
|
||||
|
||||
>>> warehouse_loc, = StockLocation.find([('code', '=', 'WH')])
|
||||
>>> warehouse_loc.address = company_address
|
||||
>>> warehouse_loc.save()
|
||||
|
||||
Receive products from Belgium::
|
||||
|
||||
>>> shipment = ShipmentIn()
|
||||
>>> shipment.supplier = supplier_be
|
||||
>>> move = shipment.incoming_moves.new()
|
||||
>>> move.from_location = shipment.supplier_location
|
||||
>>> move.to_location = shipment.warehouse_input
|
||||
>>> move.product = product
|
||||
>>> move.quantity = 10
|
||||
>>> move.unit_price = Decimal('100.0000')
|
||||
>>> move.currency = eur
|
||||
>>> shipment.click('receive')
|
||||
>>> shipment.click('do')
|
||||
>>> shipment.state
|
||||
'done'
|
||||
|
||||
>>> move, = shipment.incoming_moves
|
||||
>>> move.intrastat_type
|
||||
|
||||
>>> move, = shipment.inventory_moves
|
||||
>>> move.intrastat_type
|
||||
|
||||
Receive products from France::
|
||||
|
||||
>>> shipment = ShipmentIn()
|
||||
>>> shipment.supplier = supplier_fr
|
||||
>>> shipment.incoterm, = Incoterm.find([
|
||||
... ('code', '=', 'EXW'), ('version', '=', '2020')])
|
||||
>>> shipment.incoterm_location = supplier_fr.addresses[0]
|
||||
>>> shipment.carrier = carrier
|
||||
>>> move = shipment.incoming_moves.new()
|
||||
>>> move.from_location = shipment.supplier_location
|
||||
>>> move.to_location = shipment.warehouse_input
|
||||
>>> move.product = product
|
||||
>>> move.quantity = 20
|
||||
>>> move.unit_price = Decimal('90.0000')
|
||||
>>> move.currency = eur
|
||||
>>> shipment.click('receive')
|
||||
>>> shipment.click('do')
|
||||
>>> shipment.state
|
||||
'done'
|
||||
|
||||
>>> move, = shipment.incoming_moves
|
||||
>>> move.intrastat_type
|
||||
'arrival'
|
||||
>>> move.intrastat_warehouse_country.code
|
||||
'BE'
|
||||
>>> move.intrastat_country.code
|
||||
'FR'
|
||||
>>> move.intrastat_subdivision.intrastat_code
|
||||
'2'
|
||||
>>> move.intrastat_tariff_code.code
|
||||
'9403 10 51'
|
||||
>>> move.intrastat_value
|
||||
Decimal('1800.00')
|
||||
>>> move.intrastat_transaction.code
|
||||
'11'
|
||||
>>> move.intrastat_additional_unit
|
||||
20.0
|
||||
>>> move.intrastat_country_of_origin
|
||||
>>> move.intrastat_vat
|
||||
>>> assertEqual(move.intrastat_declaration.month, today.replace(day=1))
|
||||
|
||||
>>> move, = shipment.inventory_moves
|
||||
>>> move.intrastat_type
|
||||
|
||||
Receive products from US::
|
||||
|
||||
>>> shipment = ShipmentIn()
|
||||
>>> shipment.supplier = supplier_us
|
||||
>>> shipment.carrier = carrier
|
||||
>>> move = shipment.incoming_moves.new()
|
||||
>>> move.from_location = shipment.supplier_location
|
||||
>>> move.to_location = shipment.warehouse_input
|
||||
>>> move.product = product
|
||||
>>> move.quantity = 30
|
||||
>>> move.unit_price = Decimal('120.0000')
|
||||
>>> move.currency = usd
|
||||
>>> shipment.click('receive')
|
||||
>>> shipment.click('do')
|
||||
>>> shipment.state
|
||||
'done'
|
||||
|
||||
>>> move, = shipment.incoming_moves
|
||||
>>> move.intrastat_type
|
||||
|
||||
>>> move, = shipment.inventory_moves
|
||||
>>> move.intrastat_type
|
||||
|
||||
Receive returned products from France::
|
||||
|
||||
>>> shipment = ShipmentOutReturn()
|
||||
>>> shipment.customer = customer_fr
|
||||
>>> shipment.carrier = carrier
|
||||
>>> shipment.incoterm, = Incoterm.find([
|
||||
... ('code', '=', 'FCA'), ('version', '=', '2020')])
|
||||
>>> shipment.incoterm_location = warehouse_loc.address
|
||||
>>> move = shipment.incoming_moves.new()
|
||||
>>> move.from_location = shipment.customer_location
|
||||
>>> move.to_location = shipment.warehouse_input
|
||||
>>> move.product = product
|
||||
>>> move.quantity = 5
|
||||
>>> move.unit_price = Decimal('150.0000')
|
||||
>>> move.currency = eur
|
||||
>>> shipment.click('receive')
|
||||
>>> shipment.click('do')
|
||||
>>> shipment.state
|
||||
'done'
|
||||
|
||||
>>> move, = shipment.incoming_moves
|
||||
>>> move.intrastat_type
|
||||
'arrival'
|
||||
>>> move.intrastat_warehouse_country.code
|
||||
'BE'
|
||||
>>> move.intrastat_country.code
|
||||
'FR'
|
||||
>>> move.intrastat_subdivision.intrastat_code
|
||||
'2'
|
||||
>>> move.intrastat_tariff_code.code
|
||||
'9403 10 51'
|
||||
>>> move.intrastat_value
|
||||
Decimal('750.00')
|
||||
>>> move.intrastat_transaction.code
|
||||
'21'
|
||||
>>> move.intrastat_additional_unit
|
||||
5.0
|
||||
>>> move.intrastat_country_of_origin
|
||||
>>> move.intrastat_vat
|
||||
>>> assertEqual(move.intrastat_declaration.month, today.replace(day=1))
|
||||
|
||||
>>> move, = shipment.inventory_moves
|
||||
>>> move.intrastat_type
|
||||
|
||||
Check declaration::
|
||||
|
||||
>>> declaration, = IntrastatDeclaration.find([])
|
||||
>>> declaration.country.code
|
||||
'BE'
|
||||
>>> assertEqual(declaration.month, today.replace(day=1))
|
||||
>>> declaration.state
|
||||
'opened'
|
||||
>>> assertEqual(bool(declaration.extended), intrastat_extended)
|
||||
|
||||
>>> with config.set_context(declaration=declaration.id):
|
||||
... declaration_line, _ = IntrastatDeclarationLine.find([])
|
||||
>>> declaration_line.type
|
||||
'arrival'
|
||||
>>> declaration_line.country.code
|
||||
'FR'
|
||||
>>> declaration_line.subdivision.intrastat_code
|
||||
'2'
|
||||
>>> declaration_line.tariff_code.code
|
||||
'9403 10 51'
|
||||
>>> declaration_line.weight
|
||||
60.0
|
||||
>>> declaration_line.value
|
||||
Decimal('1800.00')
|
||||
>>> declaration_line.transaction.code
|
||||
'11'
|
||||
>>> declaration_line.additional_unit
|
||||
20.0
|
||||
>>> declaration_line.country_of_origin
|
||||
>>> assertEqual(declaration_line.transport, road_transport)
|
||||
>>> declaration_line.incoterm.code
|
||||
'EXW'
|
||||
>>> declaration_line.vat
|
||||
|
||||
Export declaration::
|
||||
|
||||
>>> _ = declaration.click('export')
|
||||
>>> export = Wizard('account.stock.eu.intrastat.declaration.export', [declaration])
|
||||
>>> assertEqual(
|
||||
... export.form.file,
|
||||
... b'19;FR;11;2;9403 10 51;60.0;20.0;1800.00;3;EXW;;\r\n'
|
||||
... b'19;FR;21;2;9403 10 51;15.0;5.0;750.00;3;FCA;;\r\n'
|
||||
... if intrastat_extended else
|
||||
... b'19;FR;11;2;9403 10 51;60.0;20.0;1800.00;;\r\n'
|
||||
... b'19;FR;21;2;9403 10 51;15.0;5.0;750.00;;\r\n')
|
||||
>>> export.form.filename.endswith('.csv')
|
||||
True
|
||||
>>> declaration.state
|
||||
'closed'
|
||||
|
||||
Export declaration as Spain::
|
||||
|
||||
>>> belgium.code = 'ES'
|
||||
>>> belgium.save()
|
||||
|
||||
>>> _ = declaration.click('export')
|
||||
>>> export = Wizard('account.stock.eu.intrastat.declaration.export', [declaration])
|
||||
>>> export.form.filename.endswith('.zip')
|
||||
True
|
||||
>>> zip = zipfile.ZipFile(io.BytesIO(export.form.file))
|
||||
>>> zip.namelist()
|
||||
['arrival-0.csv']
|
||||
>>> assertEqual(
|
||||
... zip.open('arrival-0.csv').read(),
|
||||
... b'FR;2;EXW;11;3;;9403 10 51;;;60.0;20.0;1800.00;1800.00;\r\n'
|
||||
... b'FR;2;FCA;21;3;;9403 10 51;;;15.0;5.0;750.00;750.00;\r\n'
|
||||
... if intrastat_extended else
|
||||
... b'FR;2;;11;;;9403 10 51;;;60.0;20.0;1800.00;1800.00;\r\n'
|
||||
... b'FR;2;;21;;;9403 10 51;;;15.0;5.0;750.00;750.00;\r\n')
|
||||
|
||||
Export declaration as fallback::
|
||||
|
||||
>>> belgium.code = 'XX'
|
||||
>>> belgium.save()
|
||||
|
||||
>>> _ = declaration.click('export')
|
||||
>>> export = Wizard('account.stock.eu.intrastat.declaration.export', [declaration])
|
||||
>>> assertEqual(
|
||||
... export.form.file,
|
||||
... b'arrival,FR,2,9403 10 51,60.0,1800.00,11,20.0,,,3,EXW\r\n'
|
||||
... b'arrival,FR,2,9403 10 51,15.0,750.00,21,5.0,,,3,FCA\r\n'
|
||||
... if intrastat_extended else
|
||||
... b'arrival,FR,2,9403 10 51,60.0,1800.00,11,20.0,,\r\n'
|
||||
... b'arrival,FR,2,9403 10 51,15.0,750.00,21,5.0,,\r\n')
|
||||
>>> export.form.filename.endswith('.csv')
|
||||
True
|
||||
|
||||
Cancelling the shipment reopens the declaration::
|
||||
|
||||
>>> shipment.click('cancel')
|
||||
>>> shipment.state
|
||||
'cancelled'
|
||||
|
||||
>>> declaration.reload()
|
||||
>>> declaration.state
|
||||
'opened'
|
||||
@@ -0,0 +1,398 @@
|
||||
==================================
|
||||
Account Stock EU Dispatch Scenario
|
||||
==================================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> import datetime as dt
|
||||
>>> import io
|
||||
>>> import zipfile
|
||||
>>> from decimal import Decimal
|
||||
|
||||
>>> from proteus import Model, Wizard
|
||||
>>> from trytond.modules.account.tests.tools import create_fiscalyear
|
||||
>>> from trytond.modules.company.tests.tools import create_company, get_company
|
||||
>>> from trytond.modules.currency.tests.tools import get_currency
|
||||
>>> from trytond.tests.tools import activate_modules, assertEqual
|
||||
|
||||
>>> intrastat_extended = globals().get('intrastat_extended', False)
|
||||
>>> today = dt.date.today()
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules([
|
||||
... 'account_stock_eu', 'incoterm',
|
||||
... 'stock_shipment_cost', 'stock_package_shipping'])
|
||||
|
||||
>>> Carrier = Model.get('carrier')
|
||||
>>> Country = Model.get('country.country')
|
||||
>>> Incoterm = Model.get('incoterm.incoterm')
|
||||
>>> IntrastatDeclaration = Model.get('account.stock.eu.intrastat.declaration')
|
||||
>>> IntrastatDeclarationLine = Model.get(
|
||||
... 'account.stock.eu.intrastat.declaration.line')
|
||||
>>> IntrastatTransport = Model.get('account.stock.eu.intrastat.transport')
|
||||
>>> Organization = Model.get('country.organization')
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> ProductTemplate = Model.get('product.template')
|
||||
>>> ProductUom = Model.get('product.uom')
|
||||
>>> ShipmentOut = Model.get('stock.shipment.out')
|
||||
>>> ShipmentInReturn = Model.get('stock.shipment.in.return')
|
||||
>>> StockLocation = Model.get('stock.location')
|
||||
>>> TariffCode = Model.get('customs.tariff.code')
|
||||
|
||||
Create countries::
|
||||
|
||||
>>> europe, = Organization.find([('code', '=', 'EU')])
|
||||
>>> belgium = Country(name="Belgium", code='BE')
|
||||
>>> subdivision = belgium.subdivisions.new(
|
||||
... name="Flemish Region", intrastat_code='1', type='region')
|
||||
>>> subdivision = belgium.subdivisions.new(
|
||||
... name="Walloon Region", intrastat_code='2', type='region')
|
||||
>>> belgium.save()
|
||||
>>> flemish, walloon = belgium.subdivisions
|
||||
>>> subdivision = belgium.subdivisions.new(
|
||||
... name="Liège", type='province', parent=walloon)
|
||||
>>> belgium.save()
|
||||
>>> liege, = [s for s in belgium.subdivisions if s.parent == walloon]
|
||||
>>> france = Country(name="France", code='FR')
|
||||
>>> france.save()
|
||||
>>> united_state = Country(name="United State", code='US')
|
||||
>>> united_state.save()
|
||||
>>> china = Country(name="China", code='CN')
|
||||
>>> china.save()
|
||||
|
||||
>>> member = europe.members.new(country=belgium)
|
||||
>>> member = europe.members.new(country=france)
|
||||
>>> europe.save()
|
||||
|
||||
Create currency::
|
||||
|
||||
>>> eur = get_currency('EUR')
|
||||
>>> usd = get_currency('USD')
|
||||
|
||||
Create company in Belgium::
|
||||
|
||||
>>> _ = create_company(currency=eur)
|
||||
>>> company = get_company()
|
||||
>>> company.incoterms.extend(Incoterm.find())
|
||||
>>> company.save()
|
||||
>>> company_address, = company.party.addresses
|
||||
>>> company_address.country = belgium
|
||||
>>> company_address.subdivision = liege
|
||||
>>> company_address.save()
|
||||
|
||||
Create fiscal year::
|
||||
|
||||
>>> fiscalyear = create_fiscalyear(company)
|
||||
>>> fiscalyear.intrastat_extended = intrastat_extended
|
||||
>>> fiscalyear.save()
|
||||
|
||||
Create suppliers::
|
||||
|
||||
>>> customer_be = Party(name="Customer BE")
|
||||
>>> address, = customer_be.addresses
|
||||
>>> address.country = belgium
|
||||
>>> customer_be.save()
|
||||
|
||||
>>> supplier_fr = Party(name="Supplier FR")
|
||||
>>> address, = supplier_fr.addresses
|
||||
>>> address.country = france
|
||||
>>> identifier = supplier_fr.identifiers.new(type='eu_vat')
|
||||
>>> identifier.code = "FR40303265045"
|
||||
>>> supplier_fr.save()
|
||||
|
||||
>>> customer_fr = Party(name="Customer FR")
|
||||
>>> address, = customer_fr.addresses
|
||||
>>> address.country = france
|
||||
>>> customer_fr.save()
|
||||
|
||||
>>> customer_us = Party(name="Customer US")
|
||||
>>> address, = customer_us.addresses
|
||||
>>> address.country = united_state
|
||||
>>> customer_us.save()
|
||||
|
||||
Create product::
|
||||
|
||||
>>> unit, = ProductUom.find([('name', '=', "Unit")])
|
||||
>>> kg, = ProductUom.find([('name', '=', "Kilogram")])
|
||||
|
||||
>>> tariff_code = TariffCode(code="9403 10 51")
|
||||
>>> tariff_code.description = "Desks"
|
||||
>>> tariff_code.intrastat_uom = unit
|
||||
>>> tariff_code.save()
|
||||
|
||||
>>> template = ProductTemplate(name="Desk")
|
||||
>>> template.default_uom = unit
|
||||
>>> template.type = 'goods'
|
||||
>>> template.cost_price = Decimal('100.0000')
|
||||
>>> _ = template.tariff_codes.new(tariff_code=tariff_code)
|
||||
>>> template.weight = 3
|
||||
>>> template.weight_uom = kg
|
||||
>>> template.country_of_origin = china
|
||||
>>> template.save()
|
||||
>>> product, = template.products
|
||||
|
||||
Create carriers::
|
||||
|
||||
>>> carrier_template = ProductTemplate(name="Carrier Product")
|
||||
>>> carrier_template.default_uom = unit
|
||||
>>> carrier_template.type = 'service'
|
||||
>>> carrier_template.list_price = Decimal('5')
|
||||
>>> carrier_template.save()
|
||||
>>> carrier_product, = carrier_template.products
|
||||
|
||||
>>> road_transport, = IntrastatTransport.find([('name', '=', "Road transport")])
|
||||
>>> carrier = Carrier()
|
||||
>>> party = Party(name="Carrier")
|
||||
>>> party.save()
|
||||
>>> carrier.party = party
|
||||
>>> carrier.carrier_product = carrier_product
|
||||
>>> carrier.shipment_cost_allocation_method = 'cost'
|
||||
>>> carrier.intrastat_transport = road_transport
|
||||
>>> carrier.save()
|
||||
|
||||
Get stock locations::
|
||||
|
||||
>>> warehouse_loc, = StockLocation.find([('code', '=', 'WH')])
|
||||
>>> warehouse_loc.address = company_address
|
||||
>>> warehouse_loc.save()
|
||||
|
||||
Send products to Belgium::
|
||||
|
||||
>>> shipment = ShipmentOut()
|
||||
>>> shipment.customer = customer_be
|
||||
>>> shipment.carrier = carrier
|
||||
>>> move = shipment.outgoing_moves.new()
|
||||
>>> move.from_location = shipment.warehouse_output
|
||||
>>> move.to_location = shipment.customer_location
|
||||
>>> move.product = product
|
||||
>>> move.quantity = 10
|
||||
>>> move.unit_price = Decimal('100.0000')
|
||||
>>> move.currency = eur
|
||||
>>> shipment.click('wait')
|
||||
>>> shipment.click('pick')
|
||||
>>> shipment.click('pack')
|
||||
>>> shipment.click('do')
|
||||
>>> shipment.state
|
||||
'done'
|
||||
|
||||
>>> move, = shipment.inventory_moves
|
||||
>>> move.intrastat_type
|
||||
|
||||
>>> move, = shipment.outgoing_moves
|
||||
>>> move.intrastat_type
|
||||
|
||||
Send products to particular to France::
|
||||
|
||||
>>> shipment = ShipmentOut()
|
||||
>>> shipment.customer = customer_fr
|
||||
>>> shipment.carrier = carrier
|
||||
>>> shipment.incoterm, = Incoterm.find([
|
||||
... ('code', '=', 'FCA'), ('version', '=', '2020')])
|
||||
>>> shipment.incoterm_location = shipment.delivery_address
|
||||
>>> move = shipment.outgoing_moves.new()
|
||||
>>> move.from_location = shipment.warehouse_output
|
||||
>>> move.to_location = shipment.customer_location
|
||||
>>> move.product = product
|
||||
>>> move.quantity = 20
|
||||
>>> move.unit_price = Decimal('90.0000')
|
||||
>>> move.currency = eur
|
||||
>>> shipment.click('wait')
|
||||
>>> shipment.click('pick')
|
||||
>>> shipment.click('pack')
|
||||
>>> shipment.click('do')
|
||||
>>> shipment.state
|
||||
'done'
|
||||
|
||||
>>> move, = shipment.inventory_moves
|
||||
>>> move.intrastat_type
|
||||
|
||||
>>> move, = shipment.outgoing_moves
|
||||
>>> move.intrastat_type
|
||||
'dispatch'
|
||||
>>> move.intrastat_warehouse_country.code
|
||||
'BE'
|
||||
>>> move.intrastat_country.code
|
||||
'FR'
|
||||
>>> move.intrastat_subdivision.intrastat_code
|
||||
'2'
|
||||
>>> move.intrastat_tariff_code.code
|
||||
'9403 10 51'
|
||||
>>> move.intrastat_value
|
||||
Decimal('1800.00')
|
||||
>>> move.intrastat_transaction.code
|
||||
'12'
|
||||
>>> move.intrastat_additional_unit
|
||||
20.0
|
||||
>>> move.intrastat_country_of_origin.code
|
||||
'CN'
|
||||
>>> move.intrastat_vat
|
||||
>>> assertEqual(move.intrastat_declaration.month, today.replace(day=1))
|
||||
|
||||
|
||||
Send products to US::
|
||||
|
||||
>>> shipment = ShipmentOut()
|
||||
>>> shipment.customer = customer_us
|
||||
>>> shipment.carrier = carrier
|
||||
>>> move = shipment.outgoing_moves.new()
|
||||
>>> move.from_location = shipment.warehouse_output
|
||||
>>> move.to_location = shipment.customer_location
|
||||
>>> move.product = product
|
||||
>>> move.quantity = 30
|
||||
>>> move.unit_price = Decimal('120.0000')
|
||||
>>> move.currency = usd
|
||||
>>> shipment.click('wait')
|
||||
>>> shipment.click('pick')
|
||||
>>> shipment.click('pack')
|
||||
>>> shipment.click('do')
|
||||
>>> shipment.state
|
||||
'done'
|
||||
|
||||
>>> move, = shipment.inventory_moves
|
||||
>>> move.intrastat_type
|
||||
|
||||
>>> move, = shipment.outgoing_moves
|
||||
>>> move.intrastat_type
|
||||
|
||||
Send returned products to France::
|
||||
|
||||
>>> shipment = ShipmentInReturn()
|
||||
>>> shipment.supplier = supplier_fr
|
||||
>>> shipment.from_location = warehouse_loc.storage_location
|
||||
>>> shipment.carrier = carrier
|
||||
>>> shipment.incoterm, = Incoterm.find([
|
||||
... ('code', '=', 'EXW'), ('version', '=', '2020')])
|
||||
>>> move = shipment.moves.new()
|
||||
>>> move.from_location = shipment.from_location
|
||||
>>> move.to_location = shipment.to_location
|
||||
>>> move.product = product
|
||||
>>> move.quantity = 5
|
||||
>>> move.unit_price = Decimal('150.0000')
|
||||
>>> move.currency = eur
|
||||
>>> shipment.click('wait')
|
||||
>>> shipment.click('assign_force')
|
||||
>>> shipment.click('do')
|
||||
>>> shipment.state
|
||||
'done'
|
||||
|
||||
>>> move, = shipment.moves
|
||||
>>> move.intrastat_type
|
||||
'dispatch'
|
||||
>>> move.intrastat_warehouse_country.code
|
||||
'BE'
|
||||
>>> move.intrastat_country.code
|
||||
'FR'
|
||||
>>> move.intrastat_subdivision.intrastat_code
|
||||
'2'
|
||||
>>> move.intrastat_tariff_code.code
|
||||
'9403 10 51'
|
||||
>>> move.intrastat_value
|
||||
Decimal('750.00')
|
||||
>>> move.intrastat_transaction.code
|
||||
'21'
|
||||
>>> move.intrastat_additional_unit
|
||||
5.0
|
||||
>>> move.intrastat_country_of_origin.code
|
||||
'CN'
|
||||
>>> move.intrastat_vat.code
|
||||
'FR40303265045'
|
||||
>>> assertEqual(move.intrastat_declaration.month, today.replace(day=1))
|
||||
|
||||
Check declaration::
|
||||
|
||||
>>> declaration, = IntrastatDeclaration.find([])
|
||||
>>> declaration.country.code
|
||||
'BE'
|
||||
>>> assertEqual(declaration.month, today.replace(day=1))
|
||||
>>> declaration.state
|
||||
'opened'
|
||||
|
||||
>>> with config.set_context(declaration=declaration.id):
|
||||
... _, declaration_line = IntrastatDeclarationLine.find([])
|
||||
>>> declaration_line.type
|
||||
'dispatch'
|
||||
>>> declaration_line.country.code
|
||||
'FR'
|
||||
>>> declaration_line.subdivision.intrastat_code
|
||||
'2'
|
||||
>>> declaration_line.tariff_code.code
|
||||
'9403 10 51'
|
||||
>>> declaration_line.weight
|
||||
15.0
|
||||
>>> declaration_line.value
|
||||
Decimal('750.00')
|
||||
>>> declaration_line.transaction.code
|
||||
'21'
|
||||
>>> declaration_line.additional_unit
|
||||
5.0
|
||||
>>> declaration_line.country_of_origin.code
|
||||
'CN'
|
||||
>>> declaration_line.vat.code
|
||||
'FR40303265045'
|
||||
>>> assertEqual(declaration_line.transport, road_transport)
|
||||
>>> declaration_line.incoterm.code
|
||||
'EXW'
|
||||
|
||||
Export declaration::
|
||||
|
||||
>>> _ = declaration.click('export')
|
||||
>>> export = Wizard('account.stock.eu.intrastat.declaration.export', [declaration])
|
||||
>>> export.form.filename.endswith('.csv')
|
||||
True
|
||||
>>> assertEqual(
|
||||
... export.form.file,
|
||||
... b'29;FR;12;2;9403 10 51;60.0;20.0;1800.00;3;FCA;CN;\r\n'
|
||||
... b'29;FR;21;2;9403 10 51;15.0;5.0;750.00;3;EXW;CN;FR40303265045\r\n'
|
||||
... if intrastat_extended else
|
||||
... b'29;FR;12;2;9403 10 51;60.0;20.0;1800.00;CN;\r\n'
|
||||
... b'29;FR;21;2;9403 10 51;15.0;5.0;750.00;CN;FR40303265045\r\n')
|
||||
>>> declaration.state
|
||||
'closed'
|
||||
|
||||
Export declaration as Spain::
|
||||
|
||||
>>> belgium.code = 'ES'
|
||||
>>> belgium.save()
|
||||
|
||||
>>> _ = declaration.click('export')
|
||||
>>> export = Wizard('account.stock.eu.intrastat.declaration.export', [declaration])
|
||||
>>> export.form.filename.endswith('.zip')
|
||||
True
|
||||
>>> zip = zipfile.ZipFile(io.BytesIO(export.form.file))
|
||||
>>> zip.namelist()
|
||||
['dispatch-0.csv']
|
||||
>>> assertEqual(
|
||||
... zip.open('dispatch-0.csv').read(),
|
||||
... b'FR;2;FCA;12;3;;9403 10 51;CN;;60.0;20.0;1800.00;1800.00;\r\n'
|
||||
... b'FR;2;EXW;21;3;;9403 10 51;CN;;15.0;5.0;750.00;750.00;FR40303265045\r\n'
|
||||
... if intrastat_extended else
|
||||
... b'FR;2;;12;;;9403 10 51;CN;;60.0;20.0;1800.00;1800.00;\r\n'
|
||||
... b'FR;2;;21;;;9403 10 51;CN;;15.0;5.0;750.00;750.00;FR40303265045\r\n')
|
||||
|
||||
Export declaration as fallback::
|
||||
|
||||
>>> belgium.code = 'XX'
|
||||
>>> belgium.save()
|
||||
|
||||
>>> _ = declaration.click('export')
|
||||
>>> export = Wizard('account.stock.eu.intrastat.declaration.export', [declaration])
|
||||
>>> export.form.filename.endswith('.csv')
|
||||
True
|
||||
>>> assertEqual(
|
||||
... export.form.file,
|
||||
... b'dispatch,FR,2,9403 10 51,60.0,1800.00,12,20.0,CN,,3,FCA\r\n'
|
||||
... b'dispatch,FR,2,9403 10 51,15.0,750.00,21,5.0,CN,FR40303265045,3,EXW\r\n'
|
||||
... if intrastat_extended else
|
||||
... b'dispatch,FR,2,9403 10 51,60.0,1800.00,12,20.0,CN,\r\n'
|
||||
... b'dispatch,FR,2,9403 10 51,15.0,750.00,21,5.0,CN,FR40303265045\r\n')
|
||||
|
||||
Cancelling the shipment reopens the declaration::
|
||||
|
||||
>>> shipment.click('cancel')
|
||||
>>> shipment.state
|
||||
'cancelled'
|
||||
|
||||
>>> declaration.reload()
|
||||
>>> declaration.state
|
||||
'opened'
|
||||
126
modules/account_stock_eu/tests/test_module.py
Normal file
126
modules/account_stock_eu/tests/test_module.py
Normal file
@@ -0,0 +1,126 @@
|
||||
# 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 unittest.mock import Mock, patch
|
||||
|
||||
from trytond.modules.account.exceptions import FiscalYearNotFoundError
|
||||
from trytond.pool import Pool
|
||||
from trytond.tests.test_tryton import ModuleTestCase, with_transaction
|
||||
|
||||
|
||||
class AccountStockEuTestCase(ModuleTestCase):
|
||||
"Test Account Stock Eu module"
|
||||
module = 'account_stock_eu'
|
||||
extras = ['carrier', 'incoterm', 'production', 'stock_consignment']
|
||||
|
||||
@with_transaction()
|
||||
def test_sale_incoterm_required(self):
|
||||
"Test incoterm required on sale"
|
||||
pool = Pool()
|
||||
Sale = pool.get('sale.sale')
|
||||
FiscalYear = pool.get('account.fiscalyear')
|
||||
Country = pool.get('country.country')
|
||||
|
||||
from_country = Mock(spec=Country)
|
||||
to_country = Mock(spec=Country)
|
||||
sale = Mock(spec=Sale)
|
||||
sale.warehouse.address.country = from_country
|
||||
sale.shipment_address.country = to_country
|
||||
type(sale)._incoterm_required = Sale._incoterm_required
|
||||
fiscalyear = Mock(spec=FiscalYear)
|
||||
|
||||
with patch.object(FiscalYear, 'find') as fiscalyear_find:
|
||||
fiscalyear_find.return_value = fiscalyear
|
||||
for extended, from_europe, to_europe, result in [
|
||||
(False, False, False, True),
|
||||
(False, False, True, True),
|
||||
(False, True, False, True),
|
||||
(False, True, True, False),
|
||||
(True, False, False, True),
|
||||
(True, False, True, True),
|
||||
(True, True, False, True),
|
||||
(True, True, True, True),
|
||||
(None, False, False, True),
|
||||
(None, False, True, True),
|
||||
(None, True, False, True),
|
||||
(None, True, True, False),
|
||||
]:
|
||||
if extended is not None:
|
||||
fiscalyear_find.side_effect = None
|
||||
fiscalyear.intrastat_extended = extended
|
||||
else:
|
||||
fiscalyear_find.side_effect = FiscalYearNotFoundError('')
|
||||
from_country.is_member.return_value = from_europe
|
||||
to_country.is_member.return_value = to_europe
|
||||
with self.subTest(
|
||||
extended=extended,
|
||||
from_europe=from_europe,
|
||||
to_europe=to_europe):
|
||||
self.assertEqual(sale._incoterm_required, result)
|
||||
|
||||
@with_transaction()
|
||||
def test_sale_incoterm_required_same_country(self):
|
||||
"Test incoterm required on sale with same country"
|
||||
pool = Pool()
|
||||
Sale = pool.get('sale.sale')
|
||||
FiscalYear = pool.get('account.fiscalyear')
|
||||
Country = pool.get('country.country')
|
||||
|
||||
country = Mock(spec=Country)
|
||||
sale = Mock(spec=Sale)
|
||||
sale.warehouse.address.country = country
|
||||
sale.shipment_address.country = country
|
||||
type(sale)._incoterm_required = Sale._incoterm_required
|
||||
fiscalyear = Mock(spec=FiscalYear)
|
||||
|
||||
with patch.object(FiscalYear, 'find') as fiscalyear_find:
|
||||
fiscalyear_find.return_value = fiscalyear
|
||||
for extended, europe, result in [
|
||||
(False, False, False),
|
||||
(False, True, False),
|
||||
(True, False, False),
|
||||
(True, True, False),
|
||||
(None, False, False),
|
||||
(None, True, False),
|
||||
]:
|
||||
if extended is not None:
|
||||
fiscalyear_find.side_effect = None
|
||||
fiscalyear.intrastat_extended = extended
|
||||
else:
|
||||
fiscalyear_find.side_effect = FiscalYearNotFoundError('')
|
||||
country.is_member.return_value = europe
|
||||
with self.subTest(
|
||||
extended=extended,
|
||||
europe=europe):
|
||||
self.assertEqual(sale._incoterm_required, result)
|
||||
|
||||
@with_transaction()
|
||||
def test_sale_incoterm_required_no_country(self):
|
||||
"Test incoterm required on sale without country"
|
||||
pool = Pool()
|
||||
Sale = pool.get('sale.sale')
|
||||
FiscalYear = pool.get('account.fiscalyear')
|
||||
|
||||
sale = Mock(spec=Sale)
|
||||
sale.warehouse.address.country = None
|
||||
sale.shipment_address.country = None
|
||||
type(sale)._incoterm_required = Sale._incoterm_required
|
||||
fiscalyear = Mock(spec=FiscalYear)
|
||||
|
||||
with patch.object(FiscalYear, 'find') as fiscalyear_find:
|
||||
fiscalyear_find.return_value = fiscalyear
|
||||
|
||||
for extended, result in [
|
||||
(False, False),
|
||||
(True, False),
|
||||
(None, False),
|
||||
]:
|
||||
if extended is not None:
|
||||
fiscalyear_find.side_effect = None
|
||||
fiscalyear.intrastat_extended = extended
|
||||
else:
|
||||
fiscalyear_find.side_effect = FiscalYearNotFoundError('')
|
||||
with self.subTest(extended=extended):
|
||||
self.assertEqual(sale._incoterm_required, result)
|
||||
|
||||
|
||||
del ModuleTestCase
|
||||
8
modules/account_stock_eu/tests/test_scenario.py
Normal file
8
modules/account_stock_eu/tests/test_scenario.py
Normal 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)
|
||||
85
modules/account_stock_eu/tryton.cfg
Normal file
85
modules/account_stock_eu/tryton.cfg
Normal file
@@ -0,0 +1,85 @@
|
||||
[tryton]
|
||||
version=7.8.1
|
||||
depends:
|
||||
account
|
||||
company
|
||||
country
|
||||
currency
|
||||
customs
|
||||
ir
|
||||
party
|
||||
product
|
||||
product_measurements
|
||||
stock
|
||||
stock_shipment_measurements
|
||||
extras_depend:
|
||||
carrier
|
||||
carrier_carriage
|
||||
incoterm
|
||||
production
|
||||
purchase
|
||||
sale
|
||||
sale_supply_drop_shipment
|
||||
stock_consignment
|
||||
stock_secondary_unit
|
||||
xml:
|
||||
country.xml
|
||||
account.xml
|
||||
customs.xml
|
||||
carrier.xml
|
||||
account_stock_eu.xml
|
||||
stock.xml
|
||||
message.xml
|
||||
|
||||
[register]
|
||||
model:
|
||||
country.Country
|
||||
country.Subdivision
|
||||
company.Company
|
||||
customs.TariffCode
|
||||
account.FiscalYear
|
||||
account_stock_eu.IntrastatTransaction
|
||||
account_stock_eu.IntrastatTransport
|
||||
account_stock_eu.IntrastatDeclaration
|
||||
account_stock_eu.IntrastatDeclarationContext
|
||||
account_stock_eu.IntrastatDeclarationLine
|
||||
account_stock_eu.IntrastatDeclarationExportResult
|
||||
stock.Move
|
||||
stock.ShipmentIn
|
||||
stock.ShipmentInReturn
|
||||
stock.ShipmentOut
|
||||
stock.ShipmentOutReturn
|
||||
stock.ShipmentInternal
|
||||
wizard:
|
||||
account_stock_eu.IntrastatDeclarationExport
|
||||
account_stock_eu.IntrastatDeclarationExport_BE
|
||||
account_stock_eu.IntrastatDeclarationExport_ES
|
||||
|
||||
[register incoterm]
|
||||
model:
|
||||
account_stock_eu.IntrastatDeclarationLine_Incoterm
|
||||
stock.Move_Incoterm
|
||||
wizard:
|
||||
account_stock_eu.IntrastatDeclarationExport_Incoterm
|
||||
account_stock_eu.IntrastatDeclarationExport_BE_Incoterm
|
||||
account_stock_eu.IntrastatDeclarationExport_ES_Incoterm
|
||||
|
||||
[register incoterm carrier]
|
||||
model:
|
||||
carrier.Carrier
|
||||
|
||||
[register incoterm sale]
|
||||
model:
|
||||
sale.Sale_Incoterm
|
||||
|
||||
[register sale_supply_drop_shipment]
|
||||
model:
|
||||
stock.ShipmentDrop
|
||||
|
||||
[register stock_consignment]
|
||||
model:
|
||||
stock.Move_Consignment
|
||||
|
||||
[register production]
|
||||
model:
|
||||
stock.Move_Production
|
||||
11
modules/account_stock_eu/view/account_fiscalyear_form.xml
Normal file
11
modules/account_stock_eu/view/account_fiscalyear_form.xml
Normal 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 string="Intrastat" id="intrastat">
|
||||
<label name="intrastat_extended"/>
|
||||
<field name="intrastat_extended"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
11
modules/account_stock_eu/view/carrier_form.xml
Normal file
11
modules/account_stock_eu/view/carrier_form.xml
Normal 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">
|
||||
<newline/>
|
||||
<label name="intrastat_transport"/>
|
||||
<field name="intrastat_transport"/>
|
||||
<newline/>
|
||||
</xpath>
|
||||
</data>
|
||||
10
modules/account_stock_eu/view/country_subdivision_form.xml
Normal file
10
modules/account_stock_eu/view/country_subdivision_form.xml
Normal 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" position="inside">
|
||||
<newline/>
|
||||
<label name="intrastat_code"/>
|
||||
<field name="intrastat_code"/>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -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. -->
|
||||
<data>
|
||||
<xpath expr="//field[@name='code']" position="after">
|
||||
<field name="intrastat_code"/>
|
||||
</xpath>
|
||||
</data>
|
||||
10
modules/account_stock_eu/view/customs_tariff_code_form.xml
Normal file
10
modules/account_stock_eu/view/customs_tariff_code_form.xml
Normal 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="//field[@name='description']" position="after">
|
||||
<label name="intrastat_uom"/>
|
||||
<field name="intrastat_uom"/>
|
||||
<newline/>
|
||||
</xpath>
|
||||
</data>
|
||||
@@ -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="company"/>
|
||||
<field name="company"/>
|
||||
<label name="declaration"/>
|
||||
<field name="declaration"/>
|
||||
</form>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<label name="file"/>
|
||||
<field name="file" filename_visible="1"/>
|
||||
</form>
|
||||
19
modules/account_stock_eu/view/intrastat_declaration_form.xml
Normal file
19
modules/account_stock_eu/view/intrastat_declaration_form.xml
Normal file
@@ -0,0 +1,19 @@
|
||||
<?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="company"/>
|
||||
<field name="company"/>
|
||||
<newline/>
|
||||
|
||||
<label name="country"/>
|
||||
<field name="country"/>
|
||||
<label name="month"/>
|
||||
<field name="month"/>
|
||||
|
||||
<label name="state"/>
|
||||
<field name="state"/>
|
||||
<group colspan="2" col="-1" id="buttons">
|
||||
<button name="export"/>
|
||||
</group>
|
||||
</form>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?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="type"/>
|
||||
<field name="country" expand="2"/>
|
||||
<field name="subdivision" expand="2"/>
|
||||
<field name="tariff_code" expand="1"/>
|
||||
<field name="weight"/>
|
||||
<field name="value"/>
|
||||
<field name="transaction"/>
|
||||
<field name="additional_unit"/>
|
||||
<field name="country_of_origin" expand="1"/>
|
||||
<field name="vat" expand="1"/>
|
||||
</tree>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<data>
|
||||
<xpath expr="//field[@name='vat']" position="after">
|
||||
<field name="transport" expand="1"/>
|
||||
<field name="incoterm"/>
|
||||
</xpath>
|
||||
</data>
|
||||
10
modules/account_stock_eu/view/intrastat_declaration_list.xml
Normal file
10
modules/account_stock_eu/view/intrastat_declaration_list.xml
Normal 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. -->
|
||||
<tree keyword_open="1">
|
||||
<field name="company" expand="1" optional="1"/>
|
||||
<field name="country" expand="1" optional="1"/>
|
||||
<field name="month"/>
|
||||
<field name="state"/>
|
||||
<button name="export"/>
|
||||
</tree>
|
||||
12
modules/account_stock_eu/view/intrastat_transaction_form.xml
Normal file
12
modules/account_stock_eu/view/intrastat_transaction_form.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<label name="code"/>
|
||||
<field name="code"/>
|
||||
<label name="parent"/>
|
||||
<field name="parent"/>
|
||||
|
||||
<label name="description"/>
|
||||
<field name="description" colspan="3"/>
|
||||
</form>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree>
|
||||
<field name="code"/>
|
||||
<field name="parent" optional="0"/>
|
||||
<field name="description" expand="1"/>
|
||||
</tree>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<form>
|
||||
<label name="name"/>
|
||||
<field name="name"/>
|
||||
<label name="code"/>
|
||||
<field name="code"/>
|
||||
</form>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
this repository contains the full copyright notices and license terms. -->
|
||||
<tree>
|
||||
<field name="code"/>
|
||||
<field name="name" expand="1"/>
|
||||
</tree>
|
||||
36
modules/account_stock_eu/view/stock_move_form.xml
Normal file
36
modules/account_stock_eu/view/stock_move_form.xml
Normal file
@@ -0,0 +1,36 @@
|
||||
<?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="//notebook" position="inside">
|
||||
<page string="Intrastat" id="intrastat">
|
||||
<label name="intrastat_type" string="Type"/>
|
||||
<field name="intrastat_type"/>
|
||||
<newline/>
|
||||
|
||||
<label name="intrastat_warehouse_country" string="Warehouse Country"/>
|
||||
<field name="intrastat_warehouse_country"/>
|
||||
<label name="intrastat_country" string="Country"/>
|
||||
<field name="intrastat_country"/>
|
||||
|
||||
<label name="intrastat_subdivision" string="Subdivision"/>
|
||||
<field name="intrastat_subdivision"/>
|
||||
<newline/>
|
||||
|
||||
<label name="intrastat_transaction" string="Transaction"/>
|
||||
<field name="intrastat_transaction"/>
|
||||
<label name="intrastat_value" string="Value"/>
|
||||
<field name="intrastat_value"/>
|
||||
|
||||
<label name="intrastat_tariff_code" string="Tariff Code"/>
|
||||
<field name="intrastat_tariff_code"/>
|
||||
<label name="intrastat_additional_unit" string="Additional Unit"/>
|
||||
<field name="intrastat_additional_unit" symbol="intrastat_tariff_code_uom"/>
|
||||
|
||||
<label name="intrastat_country_of_origin" string="Country of Origin"/>
|
||||
<field name="intrastat_country_of_origin"/>
|
||||
<label name="intrastat_vat" string="VAT"/>
|
||||
<field name="intrastat_vat"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
11
modules/account_stock_eu/view/stock_move_form_incoterm.xml
Normal file
11
modules/account_stock_eu/view/stock_move_form_incoterm.xml
Normal 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="//page[@id='intrastat']" position="inside">
|
||||
<label name="intrastat_transport"/>
|
||||
<field name="intrastat_transport" widget="selection"/>
|
||||
<label name="intrastat_incoterm"/>
|
||||
<field name="intrastat_incoterm" widget="selection" help_field="name"/>
|
||||
</xpath>
|
||||
</data>
|
||||
13
modules/account_stock_eu/view/stock_shipment_form.xml
Normal file
13
modules/account_stock_eu/view/stock_shipment_form.xml
Normal file
@@ -0,0 +1,13 @@
|
||||
<?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="//notebook" position="inside">
|
||||
<page string="Intrastat" id="intrastat">
|
||||
<label name="intrastat_from_country"/>
|
||||
<field name="intrastat_from_country"/>
|
||||
<label name="intrastat_to_country"/>
|
||||
<field name="intrastat_to_country"/>
|
||||
</page>
|
||||
</xpath>
|
||||
</data>
|
||||
Reference in New Issue
Block a user