first commit
This commit is contained in:
2
modules/account_statement_sepa/__init__.py
Normal file
2
modules/account_statement_sepa/__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.
218
modules/account_statement_sepa/account.py
Normal file
218
modules/account_statement_sepa/account.py
Normal file
@@ -0,0 +1,218 @@
|
||||
# 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 datetime as dt
|
||||
from decimal import Decimal
|
||||
from io import BytesIO
|
||||
|
||||
from lxml import etree
|
||||
|
||||
from trytond.i18n import gettext
|
||||
from trytond.modules.account_statement.exceptions import ImportStatementError
|
||||
from trytond.pool import Pool, PoolMeta
|
||||
|
||||
|
||||
class StatementImportStart(metaclass=PoolMeta):
|
||||
__name__ = 'account.statement.import.start'
|
||||
|
||||
@classmethod
|
||||
def __setup__(cls):
|
||||
super().__setup__()
|
||||
cls.file_format.selection.extend([
|
||||
('camt_052_001', "CAMT.052.001"),
|
||||
('camt_053_001', "CAMT.053.001"),
|
||||
('camt_054_001', "CAMT.054.001"),
|
||||
])
|
||||
|
||||
|
||||
class StatementImport(metaclass=PoolMeta):
|
||||
__name__ = 'account.statement.import'
|
||||
|
||||
def parse_camt(self):
|
||||
file_ = BytesIO(self.start.file_)
|
||||
tree = etree.parse(file_)
|
||||
root = tree.getroot()
|
||||
namespaces = dict(root.nsmap)
|
||||
namespaces['ns'] = namespaces.pop(None)
|
||||
for camt_statement in root.xpath(
|
||||
'./ns:BkToCstmrStmt/ns:Stmt | '
|
||||
'./ns:BkToCstmrAcctRpt/ns:Rpt | '
|
||||
'./ns:BkToCstmrDbtCdtNtfctn/ns:Ntfctn', namespaces=namespaces):
|
||||
statement = self.camt_statement(camt_statement)
|
||||
origins = []
|
||||
for entry in camt_statement.iterfind('./{*}Ntry'):
|
||||
origins.extend(self.camt_origin(camt_statement, entry))
|
||||
if origins:
|
||||
statement.number_of_lines = len(origins)
|
||||
statement.origins = origins
|
||||
yield statement
|
||||
|
||||
parse_camt_052_001 = parse_camt
|
||||
parse_camt_053_001 = parse_camt
|
||||
parse_camt_054_001 = parse_camt
|
||||
|
||||
def camt_statement(self, camt_statement):
|
||||
pool = Pool()
|
||||
Statement = pool.get('account.statement')
|
||||
Journal = pool.get('account.statement.journal')
|
||||
|
||||
statement = Statement()
|
||||
statement.name = camt_statement.findtext('./{*}Id')
|
||||
statement.company = self.start.company
|
||||
account_number = self.camt_account_number(camt_statement)
|
||||
account_currency = self.camt_account_currency(camt_statement)
|
||||
statement.journal = Journal.get_by_bank_account(
|
||||
statement.company, account_number, currency=account_currency)
|
||||
if not statement.journal:
|
||||
raise ImportStatementError(
|
||||
gettext('account_statement.msg_import_no_journal',
|
||||
account=account_number))
|
||||
statement.date = self.camt_statement_date(camt_statement)
|
||||
statement.start_balance, statement.end_balance = (
|
||||
self.camt_statement_balances(camt_statement))
|
||||
statement.total_amount = self.camt_statement_total(camt_statement)
|
||||
return statement
|
||||
|
||||
def _camt_amount(self, entry, detail=None):
|
||||
if detail is not None:
|
||||
amount = Decimal(detail.findtext('./{*}AmtDtls/{*}TxAmt/{*}Amt'))
|
||||
else:
|
||||
amount = Decimal(entry.findtext('./{*}Amt'))
|
||||
if entry.findtext('./{*}CdtDbtInd') == 'DBIT':
|
||||
amount *= -1
|
||||
return amount
|
||||
|
||||
def camt_account_number(self, camt_statement):
|
||||
number = camt_statement.findtext('./{*}Acct/{*}Id/{*}IBAN')
|
||||
if not number:
|
||||
number = camt_statement.findtext('./{*}Acct/{*}Id/{*}Othr/{*}Id')
|
||||
return number
|
||||
|
||||
def camt_account_currency(self, camt_statement):
|
||||
return camt_statement.findtext('./{*}Acct/{*}Ccy')
|
||||
|
||||
def camt_statement_date(self, camt_statement):
|
||||
pool = Pool()
|
||||
Date = pool.get('ir.date')
|
||||
datetime = camt_statement.findtext('./{*}CreDtTm')
|
||||
if datetime:
|
||||
return dt.datetime.fromisoformat(datetime).date()
|
||||
else:
|
||||
return Date.today()
|
||||
|
||||
def camt_statement_balances(self, camt_statement):
|
||||
namespaces = dict(camt_statement.nsmap)
|
||||
namespaces['ns'] = namespaces.pop(None)
|
||||
start_balance = end_balance = None
|
||||
for code in [
|
||||
'OPBD', # Opening Balance
|
||||
'PRCD', # Previous Closing Balance
|
||||
'CLBD', # Closing Balance
|
||||
'ITBD', # Interim Balance
|
||||
]:
|
||||
balances = camt_statement.xpath(
|
||||
f'./ns:Bal/ns:Tp/ns:CdOrPrtry/ns:Cd[text()="{code}"]'
|
||||
'/../../..', namespaces=namespaces)
|
||||
if balances:
|
||||
if code in {'OPBD', 'PRCD'}:
|
||||
start_balance = self._camt_amount(balances[0])
|
||||
elif code == 'CLBD':
|
||||
end_balance = self._camt_amount(balances[-1])
|
||||
else:
|
||||
start_balance = self._camt_amount(balances[0])
|
||||
end_balance = self._camt_amount(balances[-1])
|
||||
return start_balance, end_balance
|
||||
|
||||
def camt_statement_total(self, camt_statement):
|
||||
total = camt_statement.find(
|
||||
'./{*}TxsSummry/{*}TtlNtries/{*}TtlNetNtry')
|
||||
if total is not None:
|
||||
return self._camt_amount(total)
|
||||
|
||||
def camt_origin(self, camt_statement, entry):
|
||||
pool = Pool()
|
||||
Date = pool.get('ir.date')
|
||||
Origin = pool.get('account.statement.origin')
|
||||
|
||||
details = entry.findall('./{*}NtryDtls/{*}TxDtls')
|
||||
if not details:
|
||||
details = [None]
|
||||
for detail in details:
|
||||
origin = Origin()
|
||||
origin.number = entry.findtext('./{*}NtryRef')
|
||||
origin.date = Date.today()
|
||||
booking_date = entry.find('./{*}BookgDt')
|
||||
if booking_date is not None:
|
||||
if booking_date.find('./{*}Dt') is not None:
|
||||
origin.date = dt.date.fromisoformat(
|
||||
booking_date.findtext('./{*}Dt'))
|
||||
elif booking_date.find('./{*}DtTm') is not None:
|
||||
origin.date = dt.date.fromisoformat(
|
||||
booking_date.findtext('./{*}DtTm')).date()
|
||||
origin.amount = self._camt_amount(entry, detail)
|
||||
origin.description = self.camt_description(camt_statement, entry)
|
||||
if detail is not None:
|
||||
origin.party = self.camt_party(camt_statement, entry, detail)
|
||||
origin.information = self.camt_information(
|
||||
camt_statement, entry, detail)
|
||||
|
||||
yield origin
|
||||
|
||||
def camt_description(self, camt_statement, entry):
|
||||
return entry.findtext('./{*}AddtlNtryInf')
|
||||
|
||||
def camt_party(self, camt_statement, entry, detail):
|
||||
pool = Pool()
|
||||
AccountNumber = pool.get('bank.account.number')
|
||||
|
||||
path = {
|
||||
'DBIT': './{*}RltdPties/{*}CdtrAcct/{*}Id/{*}IBAN',
|
||||
'CRDT': './{*}RltdPties/{*}DbtrAcct/{*}Id/{*}IBAN',
|
||||
}[entry.findtext('./{*}CdtDbtInd')]
|
||||
number = detail.findtext(path)
|
||||
if number:
|
||||
numbers = AccountNumber.search(['OR',
|
||||
('number', '=', number),
|
||||
('number_compact', '=', number),
|
||||
])
|
||||
if len(numbers) == 1:
|
||||
number, = numbers
|
||||
if number.account.owners:
|
||||
return number.account.owners[0]
|
||||
|
||||
def camt_information(self, camt_statement, entre, detail):
|
||||
information = {}
|
||||
for key, path in [
|
||||
('camt_message_identification', './{*}Refs/{*}MsgId'),
|
||||
('camt_account_service_reference', './{*}Refs/{*}AcctSvcrRef'),
|
||||
('camt_payment_information_identification',
|
||||
'./{*}Refs/{*}PmtInfId'),
|
||||
('camt_instruction_identification', './{*}Refs/{*}InstrId'),
|
||||
('camt_end_to_end_identification', './{*}Refs/{*}EndToEndId'),
|
||||
('camt_transaction_identification', './{*}Refs/{*}TxId'),
|
||||
('camt_mandate_identification', './{*}Refs/{*}MndtId'),
|
||||
('camt_cheque_number', './{*}Refs/{*}ChqNb'),
|
||||
('camt_clearing_system_reference', './{*}Refs/{*}ClrSysRef'),
|
||||
('camt_account_owner_transaction_identification',
|
||||
'./{*}Refs/{*}AcctOwnrTxId'),
|
||||
('camt_account_servicer_transaction_identification',
|
||||
'./{*}Refs/{*}AcctSvcrTxId'),
|
||||
('camt_market_infrastructure_transaction_identification',
|
||||
'./{*}Refs/{*}MktInfrstrctrTxId'),
|
||||
('camt_processing_identification', './{*}Refs/{*}PrcgId'),
|
||||
('camt_remittance_information', './{*}RmtInf/{*}Ustrd'),
|
||||
('camt_additional_transaction_information', './{*}AddtlTxInf'),
|
||||
('camt_debtor_name', './{*}RltdPties/{*}Dbtr//{*}Nm'),
|
||||
('camt_ultimate_debtor_name',
|
||||
'./{*}RltdPties/{*}UltmtDbtr//{*}Nm'),
|
||||
('camt_debtor_iban',
|
||||
'./{*}RltdPties/{*}DbtrAcct/{*}Id/{*}IBAN'),
|
||||
('camt_creditor_name', './{*}RltdPties/{*}Cdtr//{*}Nm'),
|
||||
('camt_ultimate_creditor_name',
|
||||
'./{*}RltdPties/{*}UltmtCdtr//{*}Nm'),
|
||||
('camt_creditor_iban',
|
||||
'./{*}RltdPties/{*}CdtrAcct/{*}Id/{*}IBAN'),
|
||||
]:
|
||||
value = detail.findtext(path)
|
||||
if value:
|
||||
information[key] = value
|
||||
return information
|
||||
112
modules/account_statement_sepa/account.xml
Normal file
112
modules/account_statement_sepa/account.xml
Normal file
@@ -0,0 +1,112 @@
|
||||
<?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="account.statement.origin.information" id="information_message_identification">
|
||||
<field name="name">camt_message_identification</field>
|
||||
<field name="string">Message Identification</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_account_service_reference">
|
||||
<field name="name">camt_account_service_reference</field>
|
||||
<field name="string">Account Service Reference</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_payment_information_identification">
|
||||
<field name="name">camt_payment_information_identification</field>
|
||||
<field name="string">Payment Information Identification</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_instruction_identification">
|
||||
<field name="name">camt_instruction_identification</field>
|
||||
<field name="string">Instruction Identification</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_end_to_end_identification">
|
||||
<field name="name">camt_end_to_end_identification</field>
|
||||
<field name="string">End to End Identification</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_transaction_identification">
|
||||
<field name="name">camt_transaction_identification</field>
|
||||
<field name="string">Transaction Identification</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_mandate_identification">
|
||||
<field name="name">camt_mandate_identification</field>
|
||||
<field name="string">Mandate Identification</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_cheque_number">
|
||||
<field name="name">camt_cheque_number</field>
|
||||
<field name="string">Cheque Number</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_clearing_system_reference">
|
||||
<field name="name">camt_clearing_system_reference</field>
|
||||
<field name="string">Clearing System Reference</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_account_owner_transaction_identification">
|
||||
<field name="name">camt_account_owner_transaction_identification</field>
|
||||
<field name="string">Account Owner Transaction Identification</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_account_servicer_transaction_identification">
|
||||
<field name="name">camt_account_servicer_transaction_identification</field>
|
||||
<field name="string">Account Servicer Transaction Identification</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_market_infrastructure_transaction_identification">
|
||||
<field name="name">camt_market_infrastructure_transaction_identification</field>
|
||||
<field name="string">Market Infrastructure Transaction Identification</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_processing_identification">
|
||||
<field name="name">camt_processing_identification</field>
|
||||
<field name="string">Processing Identification</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_remittance_information">
|
||||
<field name="name">camt_remittance_information</field>
|
||||
<field name="string">Remittance Information</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_additional_transaction_information">
|
||||
<field name="name">camt_additional_transaction_information</field>
|
||||
<field name="string">Additional Transaction Information</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_debtor_name">
|
||||
<field name="name">camt_debtor_name</field>
|
||||
<field name="string">Debtor Name</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_ultimate_debtor_name">
|
||||
<field name="name">camt_ultimate_debtor_name</field>
|
||||
<field name="string">Ultimate Debtor Name</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_debtor_iban">
|
||||
<field name="name">camt_debtor_iban</field>
|
||||
<field name="string">Debtor IBAN</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_creditor_name">
|
||||
<field name="name">camt_creditor_name</field>
|
||||
<field name="string">Creditor Name</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_ultimate_creditor_name">
|
||||
<field name="name">camt_ultimate_creditor_name</field>
|
||||
<field name="string">Ultimate Creditor Name</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
<record model="account.statement.origin.information" id="information_creditor_iban">
|
||||
<field name="name">camt_creditor_iban</field>
|
||||
<field name="string">Creditor IBAN</field>
|
||||
<field name="type_">char</field>
|
||||
</record>
|
||||
</data>
|
||||
</tryton>
|
||||
108
modules/account_statement_sepa/locale/bg.po
Normal file
108
modules/account_statement_sepa/locale/bg.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/ca.po
Normal file
108
modules/account_statement_sepa/locale/ca.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr "Identificació del compte del propietari de la transacció"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr "Cuenta referència del servei"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr "Identificaació del compte del administrador de la transacció"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr "Informació adicional de la transacció"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr "Número de xec"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr "Referència del sistema de liquidació"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr "IBAN del acreedor"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr "Nom del acreedor"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr "IBAN del deudor"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr "Nom del deudor"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr "Identificació Fi a Fi"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr "Identificació de la instrucció"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr "Identificació del mandat"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr "Identificació de la transacció de la infrastructura de merca"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr "Idetificació del missatge"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr "Identificació de la informació del pagament"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr "Identificació del procès"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr "Informació remeses"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr "Identificació de la transacció"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr "Nom del acreedor final"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr "Nom del deudor final"
|
||||
108
modules/account_statement_sepa/locale/cs.po
Normal file
108
modules/account_statement_sepa/locale/cs.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/de.po
Normal file
108
modules/account_statement_sepa/locale/de.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr "Account Owner Transaction Identification"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr "Account Service Reference"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr "Account Servicer Transaction Identification"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr "Additional Transaction Information"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr "Cheque Number"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr "Clearing System Reference"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr "Creditor IBAN"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr "Creditor Name"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr "Debtor IBAN"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr "Debtor Name"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr "End to End Identification"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr "Instruction Identification"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr "Mandate Identification"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr "Market Infrastructure Transaction Identification"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr "Message Identification"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr "Payment Information Identification"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr "Processing Identification"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr "Remittance Information"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr "Transaction Identification"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr "Ultimate Creditor Name"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr "Ultimate Debtor Name"
|
||||
108
modules/account_statement_sepa/locale/es.po
Normal file
108
modules/account_statement_sepa/locale/es.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr "Identificación de la cuenta del propietario de la transación"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr "Cuenta referencia del servición"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr "Identificación de la cuenta del administrador de la transación"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr "Información adicional de la transación"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr "Número de cheque"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr "Referencia al sistema de liquidación"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr "IBAN del acreedor"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr "Nombre del acreedor"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr "IBAN del deudor"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr "Nombre del deudor"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr "Identificación Fin a Fin"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr "Identificación de la instrucción"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr "Identificación del mandato"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr "Identificación transacción de la infrastructura de mercado"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr "Identificación del mensaje"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr "Identificación de la información del pago"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr "Identifcación del proceso"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr "Información remesas"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr "Identificación de la transacción"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr "Nombre del acreedor final"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr "Nombre del deudor final"
|
||||
108
modules/account_statement_sepa/locale/es_419.po
Normal file
108
modules/account_statement_sepa/locale/es_419.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/et.po
Normal file
108
modules/account_statement_sepa/locale/et.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/fa.po
Normal file
108
modules/account_statement_sepa/locale/fa.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/fi.po
Normal file
108
modules/account_statement_sepa/locale/fi.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/fr.po
Normal file
108
modules/account_statement_sepa/locale/fr.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr "Identification de la transaction du titulaire du compte"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr "Référence de service de compte"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr "Identification de la transaction du gestionnaire de compte"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr "Informations supplémentaires sur la transaction"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr "Numéro du chèque"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr "Référence du système de compensation"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr "IBAN créancier"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr "Nom du créancier"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr "IBAN du débiteur"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr "Nom du débiteur"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr "Identification de bout en bout"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr "Identification des instructions"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr "Identification du mandat"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr "Identification des transactions d'infrastructure de marché"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr "Identification du message"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr "Identification des informations de paiement"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr "Identification du traitement"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr "Informations sur les remises"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr "Identification de transaction"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr "Nom du créancier final"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr "Nom du débiteur final"
|
||||
108
modules/account_statement_sepa/locale/hu.po
Normal file
108
modules/account_statement_sepa/locale/hu.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/id.po
Normal file
108
modules/account_statement_sepa/locale/id.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/it.po
Normal file
108
modules/account_statement_sepa/locale/it.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/lo.po
Normal file
108
modules/account_statement_sepa/locale/lo.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/lt.po
Normal file
108
modules/account_statement_sepa/locale/lt.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/nl.po
Normal file
108
modules/account_statement_sepa/locale/nl.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr "Transactie nummer van rekening eigenaar"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr "Referentie van de bank"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr "Transactie nummer van de bank"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr "Extra transactie informatie"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr "Cheque nummer"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr "Systeem opschoon referentie"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr "IBAN crediteur"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr "Naam crediteur"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr "IBAN debiteur"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr "Naam debiteur"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr "End-to-end referentie"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr "Instructie nummer"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr "Machtigingsnummer"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr "Transactie nummer markt infrastructuur"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr "Berichtnummer"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr "Betaalinformatie nummer"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr "Behandelingsnummer"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr "Overschrijf informatie"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr "Transactie nummer"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr "Naam uiteindelijke crediteur"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr "Naam uiteindelijke debiteur"
|
||||
108
modules/account_statement_sepa/locale/pl.po
Normal file
108
modules/account_statement_sepa/locale/pl.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/pt.po
Normal file
108
modules/account_statement_sepa/locale/pt.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/ro.po
Normal file
108
modules/account_statement_sepa/locale/ro.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/ru.po
Normal file
108
modules/account_statement_sepa/locale/ru.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/sl.po
Normal file
108
modules/account_statement_sepa/locale/sl.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/tr.po
Normal file
108
modules/account_statement_sepa/locale/tr.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/uk.po
Normal file
108
modules/account_statement_sepa/locale/uk.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
108
modules/account_statement_sepa/locale/zh_CN.po
Normal file
108
modules/account_statement_sepa/locale/zh_CN.po
Normal file
@@ -0,0 +1,108 @@
|
||||
#
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=utf-8\n"
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_owner_transaction_identification"
|
||||
msgid "Account Owner Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_service_reference"
|
||||
msgid "Account Service Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_account_servicer_transaction_identification"
|
||||
msgid "Account Servicer Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_additional_transaction_information"
|
||||
msgid "Additional Transaction Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_cheque_number"
|
||||
msgid "Cheque Number"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_clearing_system_reference"
|
||||
msgid "Clearing System Reference"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_iban"
|
||||
msgid "Creditor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_creditor_name"
|
||||
msgid "Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_iban"
|
||||
msgid "Debtor IBAN"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_debtor_name"
|
||||
msgid "Debtor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_end_to_end_identification"
|
||||
msgid "End to End Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_instruction_identification"
|
||||
msgid "Instruction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_mandate_identification"
|
||||
msgid "Mandate Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_market_infrastructure_transaction_identification"
|
||||
msgid "Market Infrastructure Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_message_identification"
|
||||
msgid "Message Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_payment_information_identification"
|
||||
msgid "Payment Information Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_processing_identification"
|
||||
msgid "Processing Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_remittance_information"
|
||||
msgid "Remittance Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_transaction_identification"
|
||||
msgid "Transaction Identification"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_creditor_name"
|
||||
msgid "Ultimate Creditor Name"
|
||||
msgstr ""
|
||||
|
||||
msgctxt ""
|
||||
"model:account.statement.origin.information,string:information_ultimate_debtor_name"
|
||||
msgid "Ultimate Debtor Name"
|
||||
msgstr ""
|
||||
2
modules/account_statement_sepa/tests/__init__.py
Normal file
2
modules/account_statement_sepa/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.
144
modules/account_statement_sepa/tests/camt.053.001.02.xml
Normal file
144
modules/account_statement_sepa/tests/camt.053.001.02.xml
Normal file
@@ -0,0 +1,144 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:iso:std:iso:20022:tech:xsd:camt.053.001.02">
|
||||
<BkToCstmrStmt>
|
||||
<GrpHdr>
|
||||
<MsgId>Example</MsgId>
|
||||
<CreDtTm>2009-05-12T00:00:00</CreDtTm>
|
||||
<MsgRcpt>
|
||||
<Nm>Name Recipient</Nm>
|
||||
</MsgRcpt>
|
||||
<MsgPgntn>
|
||||
<PgNb>1</PgNb>
|
||||
<LastPgInd>YES</LastPgInd>
|
||||
</MsgPgntn>
|
||||
</GrpHdr>
|
||||
<Stmt>
|
||||
<Id>Example_2009-05-12T00:00:00</Id>
|
||||
<ElctrncSeqNb>128</ElctrncSeqNb>
|
||||
<LglSeqNb>130</LglSeqNb>
|
||||
<CreDtTm>2009-05-12T00:00:00</CreDtTm>
|
||||
<FrToDt>
|
||||
<FrDtTm>2009-04-29T00:00:00</FrDtTm>
|
||||
<ToDtTm>2009-04-29T00:00:00</ToDtTm>
|
||||
</FrToDt>
|
||||
<Acct>
|
||||
<Id>
|
||||
<IBAN>BE55442968847144</IBAN>
|
||||
</Id>
|
||||
<Tp>
|
||||
<Prtry>Account Type</Prtry>
|
||||
</Tp>
|
||||
<Ccy>EUR</Ccy>
|
||||
<Ownr>
|
||||
<Nm>Name Accountowner</Nm>
|
||||
<Id>
|
||||
<OrgId>
|
||||
<Othr>
|
||||
<Id>00462920226</Id>
|
||||
</Othr>
|
||||
</OrgId>
|
||||
</Id>
|
||||
</Ownr>
|
||||
<Svcr>
|
||||
<FinInstnId>
|
||||
<BIC>ABANKBEB</BIC>
|
||||
</FinInstnId>
|
||||
</Svcr>
|
||||
</Acct>
|
||||
<Bal>
|
||||
<Tp>
|
||||
<CdOrPrtry>
|
||||
<Cd>OPBD</Cd>
|
||||
</CdOrPrtry>
|
||||
</Tp>
|
||||
<Amt Ccy="EUR">2000.00</Amt>
|
||||
<CdtDbtInd>CRDT</CdtDbtInd>
|
||||
<Dt>
|
||||
<Dt>2009-04-28</Dt>
|
||||
</Dt>
|
||||
</Bal>
|
||||
<Bal>
|
||||
<Tp>
|
||||
<CdOrPrtry>
|
||||
<Cd>CLBD</Cd>
|
||||
</CdOrPrtry>
|
||||
</Tp>
|
||||
<Amt Ccy="EUR">1900.00</Amt>
|
||||
<CdtDbtInd>CRDT</CdtDbtInd>
|
||||
<Dt>
|
||||
<Dt>2009-04-29</Dt>
|
||||
</Dt>
|
||||
</Bal>
|
||||
<TxsSummry>
|
||||
<TtlNtries>
|
||||
<NbOfNtries>1</NbOfNtries>
|
||||
<Sum>6852.79</Sum>
|
||||
<TtlNetNtry>
|
||||
<Amt>100.00</Amt>
|
||||
<CdtDbtInd>DBIT</CdtDbtInd>
|
||||
</TtlNetNtry>
|
||||
</TtlNtries>
|
||||
<TtlCdtNtries>
|
||||
<NbOfNtries>1</NbOfNtries>
|
||||
<Sum>1024.03</Sum>
|
||||
</TtlCdtNtries>
|
||||
</TxsSummry>
|
||||
<Ntry>
|
||||
<Amt Ccy="EUR">100.00</Amt>
|
||||
<CdtDbtInd>DBIT</CdtDbtInd>
|
||||
<Sts>BOOK</Sts>
|
||||
<BookgDt>
|
||||
<Dt>2009-04-29</Dt>
|
||||
</BookgDt>
|
||||
<ValDt>
|
||||
<Dt>2009-04-25</Dt>
|
||||
</ValDt>
|
||||
<AcctSvcrRef>Bank Reference</AcctSvcrRef>
|
||||
<BkTxCd>
|
||||
<Domn>
|
||||
<Cd>PMNT</Cd>
|
||||
<Fmly>
|
||||
<Cd>ICDT</Cd>
|
||||
<SubFmlyCd>ESCT</SubFmlyCd>
|
||||
</Fmly>
|
||||
</Domn>
|
||||
<Prtry>
|
||||
<Cd>0101000</Cd>
|
||||
<Issr>BBA</Issr>
|
||||
</Prtry>
|
||||
</BkTxCd>
|
||||
<NtryDtls>
|
||||
<TxDtls>
|
||||
<AmtDtls>
|
||||
<TxAmt>
|
||||
<Amt Ccy="EUR">100.00</Amt>
|
||||
</TxAmt>
|
||||
</AmtDtls>
|
||||
<RltdPties>
|
||||
<Cdtr>
|
||||
<Pty>
|
||||
<Nm>Supplier</Nm>
|
||||
</Pty>
|
||||
</Cdtr>
|
||||
<CdtrAcct>
|
||||
<Id>
|
||||
<IBAN>DE79370400440123619900</IBAN>
|
||||
</Id>
|
||||
</CdtrAcct>
|
||||
</RltdPties>
|
||||
<RltdAgts>
|
||||
<CdtrAgt>
|
||||
<FinInstnId>
|
||||
<BIC>COBADEFF370</BIC>
|
||||
</FinInstnId>
|
||||
</CdtrAgt>
|
||||
</RltdAgts>
|
||||
<RmtInf>
|
||||
<Ustrd>INV 2150135</Ustrd>
|
||||
</RmtInf>
|
||||
</TxDtls>
|
||||
</NtryDtls>
|
||||
</Ntry>
|
||||
</Stmt>
|
||||
</BkToCstmrStmt>
|
||||
</Document>
|
||||
@@ -0,0 +1,114 @@
|
||||
===============================
|
||||
Account Statement Sepa Scenario
|
||||
===============================
|
||||
|
||||
Imports::
|
||||
|
||||
>>> from functools import partial
|
||||
|
||||
>>> from proteus import Model, Wizard
|
||||
>>> from trytond.modules.account.tests.tools import create_chart, get_accounts
|
||||
>>> from trytond.modules.company.tests.tools import create_company, get_company
|
||||
>>> from trytond.tests.tools import activate_modules, assertEqual
|
||||
>>> from trytond.tools import file_open
|
||||
|
||||
Activate modules::
|
||||
|
||||
>>> config = activate_modules(
|
||||
... 'account_statement_sepa',
|
||||
... partial(create_company, currency='EUR'), create_chart)
|
||||
|
||||
>>> AccountJournal = Model.get('account.journal')
|
||||
>>> Bank = Model.get('bank')
|
||||
>>> BankAccount = Model.get('bank.account')
|
||||
>>> Party = Model.get('party.party')
|
||||
>>> StatementJournal = Model.get('account.statement.journal')
|
||||
|
||||
Get company::
|
||||
|
||||
>>> company = get_company()
|
||||
|
||||
Get accounts::
|
||||
|
||||
>>> accounts = get_accounts()
|
||||
|
||||
Create parties::
|
||||
|
||||
>>> supplier = Party(name="Supplier")
|
||||
>>> supplier.save()
|
||||
>>> bank_party = Party(name="Bank")
|
||||
>>> bank_party.save()
|
||||
|
||||
Create Bank Accounts::
|
||||
|
||||
>>> bank = Bank()
|
||||
>>> bank.party = bank_party
|
||||
>>> bank.save()
|
||||
>>> bank_account = BankAccount()
|
||||
>>> bank_account.bank = bank
|
||||
>>> bank_account.owners.append(Party(company.party.id))
|
||||
>>> bank_account.currency = company.currency
|
||||
>>> bank_account_number = bank_account.numbers.new()
|
||||
>>> bank_account_number.type = 'iban'
|
||||
>>> bank_account_number.number = 'BE55442968847144'
|
||||
>>> bank_account.save()
|
||||
|
||||
>>> supplier_bank_account = BankAccount()
|
||||
>>> supplier_bank_account.owners.append(Party(supplier.id))
|
||||
>>> supplier_bank_account.currency = company.currency
|
||||
>>> supplier_bank_account_number = supplier_bank_account.numbers.new()
|
||||
>>> supplier_bank_account_number.type = 'iban'
|
||||
>>> supplier_bank_account_number.number = 'DE79370400440123619900'
|
||||
>>> supplier_bank_account.save()
|
||||
|
||||
Create Statement Journal::
|
||||
|
||||
>>> account_journal, = AccountJournal.find([('code', '=', 'STA')], limit=1)
|
||||
>>> journal = StatementJournal(name="Bank",
|
||||
... journal=account_journal,
|
||||
... account=accounts['cash'],
|
||||
... bank_account=bank_account,
|
||||
... )
|
||||
>>> journal.save()
|
||||
|
||||
Import CAMT.053 file::
|
||||
|
||||
>>> statement_import = Wizard('account.statement.import')
|
||||
>>> with file_open(
|
||||
... 'account_statement_sepa/tests/camt.053.001.02.xml', mode='rb') as fp:
|
||||
... camt = fp.read()
|
||||
>>> statement_import.form.file_ = camt
|
||||
>>> statement_import.form.file_format = 'camt_053_001'
|
||||
>>> statement_import.execute('import_')
|
||||
|
||||
Check Statement::
|
||||
|
||||
>>> statement, = statement_import.actions[0]
|
||||
>>> statement.name
|
||||
'Example_2009-05-12T00:00:00'
|
||||
>>> statement.date
|
||||
datetime.date(2009, 5, 12)
|
||||
>>> statement.start_balance
|
||||
Decimal('2000.00')
|
||||
>>> statement.end_balance
|
||||
Decimal('1900.00')
|
||||
>>> statement.total_amount
|
||||
Decimal('-100.00')
|
||||
>>> statement.number_of_lines
|
||||
1
|
||||
>>> len(statement.origins)
|
||||
1
|
||||
>>> origin, = statement.origins
|
||||
>>> origin.number
|
||||
>>> origin.date
|
||||
datetime.date(2009, 4, 29)
|
||||
>>> origin.amount
|
||||
Decimal('-100.00')
|
||||
>>> assertEqual(origin.party, supplier)
|
||||
>>> origin.description
|
||||
>>> origin.information['camt_creditor_name']
|
||||
'Supplier'
|
||||
>>> origin.information['camt_creditor_iban']
|
||||
'DE79370400440123619900'
|
||||
>>> origin.information['camt_remittance_information']
|
||||
'INV 2150135'
|
||||
11
modules/account_statement_sepa/tests/test_module.py
Normal file
11
modules/account_statement_sepa/tests/test_module.py
Normal file
@@ -0,0 +1,11 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
from trytond.tests.test_tryton import ModuleTestCase
|
||||
|
||||
|
||||
class AccountStatementSepaTestCase(ModuleTestCase):
|
||||
"Test Account Statement Sepa module"
|
||||
module = 'account_statement_sepa'
|
||||
|
||||
|
||||
del ModuleTestCase
|
||||
8
modules/account_statement_sepa/tests/test_scenario.py
Normal file
8
modules/account_statement_sepa/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)
|
||||
14
modules/account_statement_sepa/tryton.cfg
Normal file
14
modules/account_statement_sepa/tryton.cfg
Normal file
@@ -0,0 +1,14 @@
|
||||
[tryton]
|
||||
version=7.8.1
|
||||
depends:
|
||||
account_statement
|
||||
bank
|
||||
ir
|
||||
xml:
|
||||
account.xml
|
||||
|
||||
[register]
|
||||
model:
|
||||
account.StatementImportStart
|
||||
wizard:
|
||||
account.StatementImport
|
||||
Reference in New Issue
Block a user