Начальное наполнение
This commit is contained in:
parent
20e9b218a7
commit
8b3f5cf5f2
5
__init__.py
Normal file
5
__init__.py
Normal file
@ -0,0 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import models
|
||||
from . import report
|
30
__manifest__.py
Normal file
30
__manifest__.py
Normal file
@ -0,0 +1,30 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
# Copyright (c) 2011 CCI Connect asbl (http://www.cciconnect.be) All Rights Reserved.
|
||||
# Philmer <philmer@cciconnect.be>
|
||||
|
||||
{
|
||||
'name': 'Accounting Consistency Tests',
|
||||
'version': '1.0',
|
||||
'category': 'Accounting/Accounting',
|
||||
'description': """
|
||||
Asserts on accounting.
|
||||
======================
|
||||
With this module you can manually check consistencies and inconsistencies of accounting module from menu Reporting/Accounting/Accounting Tests.
|
||||
|
||||
You can write a query in order to create Consistency Test and you will get the result of the test
|
||||
in PDF format which can be accessed by Menu Reporting -> Accounting Tests, then select the test
|
||||
and print the report from Print button in header area.
|
||||
""",
|
||||
'depends': ['account'],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'views/accounting_assert_test_views.xml',
|
||||
'report/accounting_assert_test_reports.xml',
|
||||
'data/accounting_assert_test_data.xml',
|
||||
'report/report_account_test_templates.xml',
|
||||
],
|
||||
'installable': True,
|
||||
'license': 'LGPL-3',
|
||||
}
|
140
data/accounting_assert_test_data.xml
Normal file
140
data/accounting_assert_test_data.xml
Normal file
@ -0,0 +1,140 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record model="accounting.assert.test" id="account_test_01">
|
||||
<field name="sequence">1</field>
|
||||
<field name="name">Test 1: General balance</field>
|
||||
<field name="desc">Check the balance: Debit sum = Credit sum</field>
|
||||
<field name="code_exec"><![CDATA[sql="""SELECT
|
||||
sum(debit)-sum(credit) as balance
|
||||
FROM account_move_line
|
||||
"""
|
||||
cr.execute(sql)
|
||||
result=[]
|
||||
res= cr.dictfetchall()
|
||||
if res[0]['balance']!=0.0 and res[0]['balance'] is not None:
|
||||
result.append(_('* The difference of the balance is: '))
|
||||
result.append(res)
|
||||
]]></field>
|
||||
</record>
|
||||
|
||||
<record model="accounting.assert.test" id="account_test_03">
|
||||
<field name="sequence">3</field>
|
||||
<field name="name">Test 3: Movement lines</field>
|
||||
<field name="desc">Check if movement lines are balanced and have the same date and period</field>
|
||||
<field name="code_exec"><![CDATA[order_columns=['am_date','ml_date','am.date','ml.date','am.id']
|
||||
sql="""SELECT
|
||||
am.id as move_id,
|
||||
sum(debit)-sum(credit) as balance,
|
||||
am.date,
|
||||
ml.date,
|
||||
am.date as am_date,
|
||||
ml.date as ml_date
|
||||
FROM account_move am, account_move_line ml
|
||||
WHERE
|
||||
ml.move_id = am.id
|
||||
GROUP BY am.name, am.id, am.state, am.date, ml.date,am.date, ml.date,am.date, ml.date
|
||||
HAVING abs(sum(ml.debit-ml.credit)) <> 0 or am.date!=ml.date or (am.date!=ml.date)
|
||||
"""
|
||||
cr.execute(sql)
|
||||
res = cr.dictfetchall()
|
||||
if res:
|
||||
res.insert(0,_('* The test failed for these movement lines:'))
|
||||
result = res
|
||||
|
||||
]]></field>
|
||||
</record>
|
||||
|
||||
<!-- TODO: rewrite test since the model of reconciliation has changed -->
|
||||
<!-- <record model="accounting.assert.test" id="account_test_04">
|
||||
<field name="sequence">4</field>
|
||||
<field name="name">Test 4: Totally reconciled journal items</field>
|
||||
<field name="desc">Check if the totally reconciled journal items are balanced</field>
|
||||
<field name="code_exec"><![CDATA[res = []
|
||||
cr.execute("SELECT distinct reconcile_id from account_move_line where reconcile_id is not null")
|
||||
rec_ids = cr.dictfetchall()
|
||||
for record in rec_ids :
|
||||
cr.execute("SELECT distinct r.name,r.id from account_journal j,account_period p, account_move_reconcile r,account_move m, account_move_line ml where m.journal_id=j.id and m.date=p.id and ml.reconcile_id=%s and ml.move_id=m.id and ml.reconcile_id=r.id group by r.id,r.name having sum(ml.debit)-sum(ml.credit)<>0", (record['reconcile_id'],))
|
||||
reconcile_ids=cr.dictfetchall()
|
||||
if reconcile_ids:
|
||||
res.append(', '.join(["Reconcile name: %(name)s, id=%(id)s " % r for r in reconcile_ids]))
|
||||
result = res
|
||||
if result:
|
||||
result.insert(0,_('* The test failed for these reconciled items(id/name):'))
|
||||
]]></field>
|
||||
</record> -->
|
||||
|
||||
<record model="accounting.assert.test" id="account_test_05">
|
||||
<field name="sequence">5</field>
|
||||
<field name="name">Test 5.1 : Payable and Receivable accountant lines of reconciled invoices</field>
|
||||
<field name="desc">Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts</field>
|
||||
<field name="code_exec"><![CDATA[res = []
|
||||
cr.execute("SELECT distinct inv.number,inv.id from account_invoice inv, account_move m, account_move_line ml, account_account a where m.id=ml.move_id and ml.account_id=a.id and a.account_type in ('asset_receivable','liability_payable') and inv.move_id=m.id and ml.reconciled is true;")
|
||||
records= cr.dictfetchall()
|
||||
rec = [r['id'] for r in records]
|
||||
res = reconciled_inv()
|
||||
invoices = set(rec).difference(set(res))
|
||||
result = [rec for rec in records if rec['id'] in invoices]
|
||||
if result:
|
||||
result.insert(0,_('* Invoices that need to be checked: '))
|
||||
]]></field>
|
||||
</record>
|
||||
|
||||
<record model="accounting.assert.test" id="account_test_05_2">
|
||||
<field name="sequence">6</field>
|
||||
<field name="name">Test 5.2 : Reconcilied invoices and Payable/Receivable accounts</field>
|
||||
<field name="desc">Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices</field>
|
||||
<field name="code_exec"><![CDATA[res = reconciled_inv()
|
||||
result=[]
|
||||
if res:
|
||||
cr.execute("SELECT distinct inv.number,inv.id from account_invoice inv, account_move_line ml, account_account a, account_move m where m.id=ml.move_id and inv.move_id=m.id and inv.id=inv.move_id and ml.reconciled is false and a.account_type in ('asset_receivable','liability_payable') and ml.account_id=a.id and inv.id in %s",(tuple(res),))
|
||||
records = cr.dictfetchall()
|
||||
result = [rec for rec in records]
|
||||
if result:
|
||||
result.insert(0,_('* Invoices that need to be checked: '))
|
||||
]]></field>
|
||||
</record>
|
||||
|
||||
<record model="accounting.assert.test" id="account_test_06">
|
||||
<field name="sequence">7</field>
|
||||
<field name="name">Test 6 : Invoices status</field>
|
||||
<field name="desc">Check that paid/reconciled invoices are not in 'Open' state</field>
|
||||
<field name="code_exec"><![CDATA[
|
||||
from odoo import _
|
||||
res = []
|
||||
column_order = ['number','id','name','state']
|
||||
if reconciled_inv():
|
||||
cr.execute("select inv.name,inv.state,inv.id,inv.number from account_invoice inv where inv.state!='paid' and id in %s", (tuple(reconciled_inv()),))
|
||||
res = cr.dictfetchall()
|
||||
result = res
|
||||
if result:
|
||||
result.insert(0,_('* Invoices that need to be checked: '))
|
||||
]]></field>
|
||||
</record>
|
||||
|
||||
<record model="accounting.assert.test" id="account_test_07">
|
||||
<field name="sequence">8</field>
|
||||
<field name="name">Test 7: Closing balance on bank statements</field>
|
||||
<field name="desc">Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines</field>
|
||||
<field name="code_exec"><![CDATA[column_order = ['name','difference']
|
||||
cr.execute("SELECT s.balance_start+sum(m.amount)-s.balance_end_real as difference, s.name from account_bank_statement s inner join account_bank_statement_line m on m.statement_id=s.id group by s.id, s.balance_start, s.balance_end_real,s.name having abs(s.balance_start+sum(m.amount)-s.balance_end_real) > 0.000000001;")
|
||||
result = cr.dictfetchall()
|
||||
if result:
|
||||
result.insert(0,_('* Unbalanced bank statement that need to be checked: '))
|
||||
]]></field>
|
||||
</record>
|
||||
<!-- TODO account.period has been removed -->
|
||||
<!-- <record model="accounting.assert.test" id="account_test_08">
|
||||
<field name="sequence">9</field>
|
||||
<field name="name">Test 8: Accounts and partners on account moves</field>
|
||||
<field name="desc">Check that general accounts and partners on account moves are active</field>
|
||||
<field name="code_exec"><![CDATA[column_order=['partner_name','partner_active','account_name','move_line_id','period']
|
||||
res = []
|
||||
cr.execute("SELECT l.id as move_line_id,a.name as account_name,a.code as account_code,r.name as partner_name,r.active as partner_active,p.name as period from account_period p,res_partner r, account_account a,account_move_line l where l.account_id=a.id and l.partner_id=r.id and (not r.active or not a.active) and l.period_id=p.id")
|
||||
res = cr.dictfetchall()
|
||||
result = res
|
||||
if result:
|
||||
result.insert(0,_('* Here is the list of inactive partners and movement lines that are not correct: '))
|
||||
]]></field>
|
||||
</record> -->
|
||||
</odoo>
|
258
i18n/account_test.pot
Normal file
258
i18n/account_test.pot
Normal file
@ -0,0 +1,258 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~12.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2019-08-26 08:16+0000\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid ""
|
||||
"Check on bank statement that the Closing Balance = Starting Balance + sum of"
|
||||
" statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid ""
|
||||
"Check that reconciled account moves, that define Payable and Receivable "
|
||||
"accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid ""
|
||||
"Check that reconciled invoice for Sales/Purchases has reconciled entries for"
|
||||
" Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid ""
|
||||
"Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
255
i18n/af.po
Normal file
255
i18n/af.po
Normal file
@ -0,0 +1,255 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Andre de Kock <adekock11@gmail.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Andre de Kock <adekock11@gmail.com>, 2017\n"
|
||||
"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n"
|
||||
"Language: af\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktief"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Geskep deur"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Geskep op"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Beskrywing"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vertoningsnaam"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laas Gewysig op"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laas Opgedateer deur"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laas Opgedateer op"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Volgorde"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/am.po
Normal file
254
i18n/am.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Amharic (https://www.transifex.com/odoo/teams/41243/am/)\n"
|
||||
"Language: am\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "ማብራርያ"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "ቅደም ተከተል"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
266
i18n/ar.po
Normal file
266
i18n/ar.po
Normal file
@ -0,0 +1,266 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Mustafa Rawi <mustafa@cubexco.com>, 2018
|
||||
# Sadig Adam <sadig41@gmail.com>, 2018
|
||||
# amrnegm <amrnegm.01@gmail.com>, 2018
|
||||
# Martin Trigaux, 2018
|
||||
# hoxhe Aits <hoxhe0@gmail.com>, 2018
|
||||
# Osoul <baruni@osoul.ly>, 2018
|
||||
# Mohammed Ibrahim <m.ibrahim@mussder.com>, 2018
|
||||
# Ghaith Gammar <g.gammar@saharaifs.net>, 2018
|
||||
# Osama Ahmaro <osamaahmaro@gmail.com>, 2018
|
||||
# Zuhair Hammadi <zuhair12@gmail.com>, 2018
|
||||
# Shaima Safar <shaima.safar@open-inside.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Shaima Safar <shaima.safar@open-inside.com>, 2018\n"
|
||||
"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
"<strong>الوصف:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>اسم:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "الاختبارات المحاسبية"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "نشط"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "فحص ما إذا كانت كافة بنود الحركات موزونة وتنتمي لنفس التاريخ والفترة المالية"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "فحص ما إذا كانت رصيد الإقفال لكشوفات الحسابات البنكية = الرصيد الافتتاحي + مجموع بنود الكشف"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "فحص ما إذا كانت الفواتير المدفوعة/المسواة ليست في حالة \"مفتوحة\""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "فحص ما إذا كانت الحركات المسواة - والتي تنتمي لحسابات دائنة أو مدينة - تنتمي إلى فواتير تم تسويتها أيضاً."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "فحص ما إذا كانت فواتير المبيعات/المشتريات المسواة قد تم تسوية قيودها في الحسابات الدائنة والمدينة."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "فحص أن الأرصدة تطابق القاعدة: مجموعة الدائن = مجموع المدين"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "إرشادات الكود"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "الوصف"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "التعبير"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "المعرف"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "كود بايثون"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "كود بايثون"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "التسلسل"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "الاختبار 1: الرصيد العام"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "الاختبار 3: بنود الحركة"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "الاختبار 5.1: البنود الدائنة والمدينة في الفواتير المسواة"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "الاختبار 5.2: الفواتير المسواة والحسابات الدائنة/المدينة"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "الاختبار 6: حالة الفواتير"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "اختبار 7: الرصيد الختامي على البيانات المصرفية"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "وصف الاختبار "
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "اسم الاختبار "
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "الاختبارات"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "تم اجتياز الاختبار بنجاح"
|
251
i18n/az.po
Normal file
251
i18n/az.po
Normal file
@ -0,0 +1,251 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:15+0000\n"
|
||||
"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/bg.po
Normal file
254
i18n/bg.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последно променено на"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно обновено от"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно обновено на"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Последователност"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
256
i18n/bs.po
Normal file
256
i18n/bs.po
Normal file
@ -0,0 +1,256 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Boško Stojaković <bluesoft83@gmail.com>, 2018
|
||||
# Bole <bole@dajmi5.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Bole <bole@dajmi5.com>, 2018\n"
|
||||
"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Izraz"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnje mijenjano"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji ažurirao"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnje ažurirano"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python Kod"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python kod"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvenca"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Testovi"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
260
i18n/ca.po
Normal file
260
i18n/ca.po
Normal file
@ -0,0 +1,260 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Marc Tormo i Bochaca <mtbochaca@gmail.com>, 2018
|
||||
# RGB Consulting <odoo@rgbconsulting.com>, 2018
|
||||
# Quim - eccit <quim@eccit.com>, 2018
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:15+0000\n"
|
||||
"Last-Translator: Quim - eccit <quim@eccit.com>, 2018\n"
|
||||
"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Descripció:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Nom:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Proves comptables"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Actiu"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Comprovar si les línies de moviment estan compensades i tenen la mateixa data i període"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Comprovar en els extractes bancaris que el saldo de tancament = saldo d'inici + suma de les línies del extracte"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Comprovar que les factures pagades/conciliades no estan en estat 'Obert'"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Comprovar que els apunts comptables conciliats que defineixin comptes a cobrar i a pagar pertanyin a factures conciliades"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Comprovar que la factura conciliada per vendes/compres te apunts conciliats per els comptes a cobrar i a pagar"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Comprovar el saldo : suma del deure = suma del haver"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Ajuda del codi"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descripció"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar Nom"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Expressió"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificació el "
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualització per"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualització el"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Codi Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Codi de Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Seqüència"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Prova 1 : Balanç general"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Prova 3 : Línies de moviment"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Prova 5.1 : Línies de comptabilitat a cobrar i a pagar de factures no conciliades"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Prova 5.2 : Factures conciliades i comptes a cobrar/a pagar"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Prova 6 : Estat de la factura"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Test 7: Saldo de tancament en extractes bancaris"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Descripció de la prova"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Nom de la prova"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Test"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "La prova ha estat superada satisfactòriament"
|
258
i18n/cs.po
Normal file
258
i18n/cs.po
Normal file
@ -0,0 +1,258 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Jan Horzinka <jan.horzinka@centrum.cz>, 2018
|
||||
# trendspotter, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: trendspotter, 2018\n"
|
||||
"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Popis:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Název:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivní"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořil(a)"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Popis"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Výraz"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled změněno"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upraveno od"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python kód"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Kód Pythonu"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Číselná řada"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Testy"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
263
i18n/da.po
Normal file
263
i18n/da.po
Normal file
@ -0,0 +1,263 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Visti Kristensen <visti@vkdata.dk>, 2018
|
||||
# Morten Schou <ms@msteknik.dk>, 2018
|
||||
# Jesper Carstensen <jc@danodoo.dk>, 2018
|
||||
# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2018
|
||||
# Sanne Kristensen <sanne@vkdata.dk>, 2018
|
||||
# Ejner Sønniksen <ejner@vkdata.dk>, 2018
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:15+0000\n"
|
||||
"Last-Translator: Ejner Sønniksen <ejner@vkdata.dk>, 2018\n"
|
||||
"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
"<strong>Beskrivelse:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Navn:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Regnskabstests"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Tjek om flyttede linjer er i balance og har samme dato og periode"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Check på bank kontoudtoget om slutsaldo = startsaldo + summen af linjer"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Tjek at de betalte/udlignede fakturaer ikke er i\" Åben\" status"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Check at udlignede bevægelser, på kreditor og debitor konti, tilhører udlignede fakturaer"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Tjek om udlignede købs-/salgsfakturaer har udlignede posteringer på debitor og kreditor samlekonti."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Tjek balancen: Debet sum = Kredit sum"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Kode hjælp"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Beskrivelse"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Udtryk"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python kode"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python code"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvens"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Test 1: Generel balance"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Test 3: Bevægelseslinjer"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Test 5.1 : Kreditor og Debitor posteringer fra udlignede fakturaer"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Test 5.2 : Udlignede fakturaer og kreditor/debitor konti"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Test 6 : Fakturaers status"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Test 7: Slutbalance på bankkontoudtog"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Test beskrivelse"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Test navn"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Test"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Testen blev gennemført med succes"
|
256
i18n/de.po
Normal file
256
i18n/de.po
Normal file
@ -0,0 +1,256 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2018\n"
|
||||
"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
"<strong>Beschreibung:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Name:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Plausibilitätsprüfungen der Buchhaltung"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Überprüfung, ob der Buchungssaldo ausgeglichen ist und ob Datum und Periode übereinstimmen."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Überprüfung, ob der Endsaldo im Bankauszug = Startsaldo + Saldo der laufenden Buchungen"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Überprüfung, ob bezahlte Rechnungen nicht im Status \"Offen\" verbleiben."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Überprüfung, ob Ausgleichsbuchungen, die neue Kreditoren und Debitoren erstellen, zu offenen Rechnungen gehören."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Überprüfung, ob ein direkter Rechnungsausgleich im Verkauf/Einkauf zu übereinstimmenden Buchungen auf den Kreditoren- und Debitorenkonten führt."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Überprüfe den Saldo: Summe im Soll = Summe im Haben"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Eingabehilfe"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Beschreibung"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Ausdruck"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zuletzt geändert am"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zuletzt aktualisiert durch"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python Code"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python Code"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Reihenfolge"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Test 1: Saldenabstimmung"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Test 3: Buchungspositionen"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Test 5.1 : Kreditoren und Debitoren Buchungen der Rechnungsausgleiche"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Test 5.2 : Rechnungsausgleiche und Kreditoren / Debitoren"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Test 6 : Rechnungsstatus"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Test 7: Abschlußsaldo im Bankkontoauszug"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Testbeschreibung"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Testbezeichnung"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Tests"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Die Prüfung war erfolgreich"
|
258
i18n/el.po
Normal file
258
i18n/el.po
Normal file
@ -0,0 +1,258 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Kostas Goutoudis <goutoudis@gmail.com>, 2018
|
||||
# George Tarasidis <george_tarasidis@yahoo.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: George Tarasidis <george_tarasidis@yahoo.com>, 2018\n"
|
||||
"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Περιγραφή:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Σε Ισχύ"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Ελέγχξε εάν οι γραμμές κίνησης είναι ισοσταθμισμένες και έχουν την ίδια ημερομηνία και ημερολογιακή περίοδο"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Ελέγχει ότι το συμψηφιζόμενο τιμολόγιο για Πωλήσεις/Αγορές έχει συμψηφιζόμενες εγγραφές για Εισπρακτέους/Πληρωτέους Λογαριασμούς"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Δημιουργήθηκε από"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Περιγραφή"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Εμφάνιση Ονόματος"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Έκφραση"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Τελευταία τροποποίηση στις"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Τελευταία Ενημέρωση από"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Τελευταία Ενημέρωση στις"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python Code"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python Code"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Ακολουθία"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Δοκιμή 1: Γενικό Ισοζύγιο"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Τεστ 6 : Κατάσταση τιμολογίων"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Περιγραφή Δοκιμής"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Δοκιμές"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
253
i18n/en_AU.po
Normal file
253
i18n/en_AU.po
Normal file
@ -0,0 +1,253 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:04+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: English (Australia) (http://www.transifex.com/odoo/odoo-9/language/en_AU/)\n"
|
||||
"Language: en_AU\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/en_GB.po
Normal file
254
i18n/en_GB.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sequence"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
256
i18n/es.po
Normal file
256
i18n/es.po
Normal file
@ -0,0 +1,256 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2018\n"
|
||||
"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
"<strong>Descripción:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Nombre:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Pruebas contables"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Comprobar si las líneas del movimiento están compensadas y tienen la misma fecha y periodo"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Comprobar en los extractos bancarios que el saldo de cierre = saldo de inicio + suma de las líneas del extracto"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Comprobar que las facturas pagadas/conciliadas no están en estado 'Abierto'"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Comprobar que los apuntes contables conciliados que definen cuentas a cobrar y a pagar pertenecen a facturas conciliadas"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Comprobar que la factura conciliada para ventas/compras tiene apuntes conciliados para las cuentas a cobrar y a pagar"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Comprobar el saldo: suma del debe = suma del haber"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Ayuda del código"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a mostrar"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Expresión"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Código Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Código Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Prueba 1: Balance general"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Prueba 3: Líneas de movimiento"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Prueba 5.1 : Líneas de contabilidad a cobrar y a pagar de facturas no conciliadas"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Prueba 5.2 : Facturas conciliadas y cuentas a cobrar/a pagar"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Prueba 6: Estado de las facturas"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Test 7: Saldo de cierre en los extractos bancarios"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Descripción de la prueba"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Nombre de la prueba"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Tests"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "La prueba fue superada satisfactoriamente"
|
254
i18n/es_BO.po
Normal file
254
i18n/es_BO.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n"
|
||||
"Language: es_BO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/es_CL.po
Normal file
254
i18n/es_CL.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n"
|
||||
"Language: es_CL\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/es_CO.po
Normal file
254
i18n/es_CO.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n"
|
||||
"Language: es_CO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre Público"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificación el"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/es_CR.po
Normal file
254
i18n/es_CR.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n"
|
||||
"Language: es_CR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/es_DO.po
Normal file
254
i18n/es_DO.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n"
|
||||
"Language: es_DO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID (identificación)"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación en"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/es_EC.po
Normal file
254
i18n/es_EC.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n"
|
||||
"Language: es_EC\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por:"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Fecha de modificación"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima Actualización por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Actualizado en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
253
i18n/es_PA.po
Normal file
253
i18n/es_PA.po
Normal file
@ -0,0 +1,253 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:05+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/language/es_PA/)\n"
|
||||
"Language: es_PA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/es_PE.po
Normal file
254
i18n/es_PE.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n"
|
||||
"Language: es_PE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre a Mostrar"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima Modificación en"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Actualizado última vez por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima Actualización"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/es_PY.po
Normal file
254
i18n/es_PY.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n"
|
||||
"Language: es_PY\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualización por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualización en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/es_VE.po
Normal file
254
i18n/es_VE.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n"
|
||||
"Language: es_VE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descripción"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Mostrar nombre"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificada por última vez"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización realizada por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizacion en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
263
i18n/et.po
Normal file
263
i18n/et.po
Normal file
@ -0,0 +1,263 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2018
|
||||
# Martin Trigaux, 2018
|
||||
# Wanradt Koell <wanradt@gmail.com>, 2018
|
||||
# Egon Raamat <egon@avalah.ee>, 2018
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2018
|
||||
# Martin Aavastik <martin@avalah.ee>, 2018
|
||||
# Helen Sulaoja <helen@avalah.ee>, 2018
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:15+0000\n"
|
||||
"Last-Translator: Helen Sulaoja <helen@avalah.ee>, 2018\n"
|
||||
"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Kirjeldus:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Nimi:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Raamatupidamise testid"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiivne"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Kontrollige, kas liikumise read on tasakaalus ja neil on sama kuupäev ja periood"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Kontrollige pangaväljavõttel, et lõppsaldo = algsaldo + väljavõtte ridade summa"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Kontrollige, et makstud/sobitatud arved ei oleks \"avatud\" olekus"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Kontrollige, kas sobitatud konto liigutused, mis määravad tasumata ja maksmata kontod, kuuluvad sobitavate arvete hulka"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Kontrollige, kas sobitatud müügiarve/ostuarve on sobitatud tasumata ja maksmata kannete kontodega"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Kontrollige saldosid: deebeti summa = kreediti summa"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Koodi abi"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loomise kuupäev"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Kirjeldus"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Avaldis"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud (millal)"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendatud (kelle poolt)"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud (millal)"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Pythoni kood"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python kood"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Järjestus"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Test 1: Üldine bilanss"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Test 3: Ridade liikumised"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Test 5.1 : Sobitatud arvete tasumata ja maksmata raamatupidamisread "
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Test 5.2 : Sobitatud arved ja tasumata/makstama kontod"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Test 6 : Arve olek"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Test 7 : Pangaväljavõtte lõppsaldo"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Testi kirjeldus"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Testi nimi"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Testid"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Test läbiti edukalt"
|
254
i18n/eu.po
Normal file
254
i18n/eu.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n"
|
||||
"Language: eu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Nork sortua"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Deskribapena"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Izena erakutsi"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekuentzia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
257
i18n/fa.po
Normal file
257
i18n/fa.po
Normal file
@ -0,0 +1,257 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Hamid Darabi, 2018
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2018
|
||||
# Sepehr Khoshnood <sepehr.kho@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Sepehr Khoshnood <sepehr.kho@gmail.com>, 2018\n"
|
||||
"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr "<br/> <strong>شرج\\:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>نام:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "آزمایشات حسابداری"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "فعال"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "کد کمک"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ایجاد شده در"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "توصیف"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "عبارت"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخرین تغییر در"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین تغییر توسط"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین به روز رسانی در"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "کد پایتون"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "کد پایتون"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "دنباله"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "توضیحات آزمایش"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "نام آزمایش"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "آزمونها"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "آزمایش با موفقت قبول شد"
|
262
i18n/fi.po
Normal file
262
i18n/fi.po
Normal file
@ -0,0 +1,262 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Eino Mäkitalo <eino.makitalo@netitbe.fi>, 2018
|
||||
# Martin Trigaux, 2018
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2018
|
||||
# Miku Laitinen <miku.laitinen@gmail.com>, 2018
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2018
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2018
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Veikko Väätäjä <veikko.vaataja@gmail.com>, 2018\n"
|
||||
"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Kuvaus:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Nimi:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Kirjanpitotestit"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiivinen"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Kuvaus"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Lauseke"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "Tunniste (ID)"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python-koodi"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python-koodi"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Järjestys"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Testikuvaus"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Testit"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/fo.po
Normal file
254
i18n/fo.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n"
|
||||
"Language: fo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Byrjað av"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Byrjað tann"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Frágreiðing"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vís navn"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Seinast rættað tann"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Seinast dagført av"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Seinast dagført tann"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/fr.po
Normal file
254
i18n/fr.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2018\n"
|
||||
"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr "<strong>Description :</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Nom :</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Tests (Comptabilité)"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Vérifier si les pièces comptables sont équilibrées et ont la même date et période."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Vérifie sur le relevé bancaire que le solde de fermeture = solde d'ouverture + somme des lignes de transaction"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Vérifier que les factures payées/lettrées ne sont pas en statut \"Ouverte\""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Vérifie que les mouvement de comptes rapprochés, qui définissent comptes créditeurs et débiteurs, appartiennent à des factures rapprochées"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Vérifie que les factures de Ventes/Achats rapprochées ont des écritures rapprochées pour les comptes créditeurs et débiteurs"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Vérifier le solde : Débit total = Crédit total"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Aide"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Expression"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière Modification le"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Code Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Source python"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Séquence"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Test 1: Solde global"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Test 3 : Lignes de mouvements"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Test 5.1 : Lignes comptables de crédit et de débit des factures rapprochées"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Test 5.2 : Factures rapprochées et comptes Débiteurs/Créditeurs"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Test 6 : Statut des factures"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Essai 7 : Solde de clôture des comptes de banque"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Description du test"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Nom du test"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Tests"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Le test a été effectué avec succès."
|
253
i18n/fr_BE.po
Normal file
253
i18n/fr_BE.po
Normal file
@ -0,0 +1,253 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:05+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/language/fr_BE/)\n"
|
||||
"Language: fr_BE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Derniere fois mis à jour par"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mis à jour le"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Séquence"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/fr_CA.po
Normal file
254
i18n/fr_CA.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n"
|
||||
"Language: fr_CA\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Description"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom affiché"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "Identifiant"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Séquence"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/gl.po
Normal file
254
i18n/gl.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n"
|
||||
"Language: gl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado o"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descrición"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización de"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secuencia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
256
i18n/gu.po
Normal file
256
i18n/gu.po
Normal file
@ -0,0 +1,256 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Turkesh Patel <turkesh4friends@gmail.com>, 2018
|
||||
# Dharmraj Jhala <dja@openerp.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Dharmraj Jhala <dja@openerp.com>, 2018\n"
|
||||
"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n"
|
||||
"Language: gu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "સક્રિય"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "બનાવનાર"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "વર્ણન"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "પ્રદર્શન નામ"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "સમીકરણ"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ઓળખ"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "ક્રમ"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "ચકાસણીઓ"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
255
i18n/he.po
Normal file
255
i18n/he.po
Normal file
@ -0,0 +1,255 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Yihya Hugirat <hugirat@gmail.com>, 2018\n"
|
||||
"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "פעיל"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על ידי"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "תיאור"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "השם המוצג"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "ביטוי"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "תאריך שינוי אחרון"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על ידי"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "תאריך עדכון אחרון"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "קוד Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "קוד Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "רצף"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "בדיקות"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
261
i18n/hr.po
Normal file
261
i18n/hr.po
Normal file
@ -0,0 +1,261 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Karolina Tonković <karolina.tonkovic@storm.hr>, 2017
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2017
|
||||
# Bole <bole@dajmi5.com>, 2017
|
||||
# Martin Trigaux, 2017
|
||||
# Đurđica Žarković <durdica.zarkovic@storm.hr>, 2017
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2016-08-05 12:55+0000\n"
|
||||
"Last-Translator: Đurđica Žarković <durdica.zarkovic@storm.hr>, 2017\n"
|
||||
"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Opis:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Naziv:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Računovodstveni testovi"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktivan"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Provjeri saldo: suam dugovanja = suma potraživanja"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Datum kreiranja"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Izraz"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python kod"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python kod"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvenca"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Provjera 6 : Status računa"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Opis provjere"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Naziv testa"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Testovi"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Test prošao uspješno"
|
259
i18n/hu.po
Normal file
259
i18n/hu.po
Normal file
@ -0,0 +1,259 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# gezza <geza.nagy@oregional.hu>, 2016
|
||||
# krnkris, 2016
|
||||
# Martin Trigaux, 2016
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2016-08-05 12:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2016\n"
|
||||
"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Leírás:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Név:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Könyvelési tesztek"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktív"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Ellenőrizze, hogy a mozgás tételsorok mérlege egyeztetettek és ugyanazzal a dátummal és időszakkal rendelkeznek"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Olyan banki kivonatok ellenőrzése, ahol a Záró egyenleg = Nyitó egyenleg + a kivonat tételsorainak összege"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Ellenőrzi, hogy a fizetett/egyeztetett számlák nem 'nyitott' állapotúak"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Ellenörzi, hogy az egyeztetett számla mozgások, melyek Fizetendő/Tartozás és Bevételi/Követelés számlákat határoznak meg, egyeztetendő számlákhoz tartonak"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Ellenőrzi, hogy az Értékesítéshez/Beszerzéshez tartozó egyeztetendő számlák tartalmaznak a Fizetendő/Tartozás és Bevételi/Követelés számlákhoz tartozó tételeket"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Ellenőrzi az egyenleget: Tartozás/Terhelés összeg = Jóváír/Követel összeg"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Kód súgó"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Készítette"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozás dátuma"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Leírás"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Kifejezés"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Utoljára frissítve ekkor"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Utoljára frissítette"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Utoljára frissítve "
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python kód"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python kód"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sorszám"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Teszt 1: Összesítő, általános egyenleg"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Teszt 3: Költségvetési tételsorok mozgása"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Teszt 5.1 : Fizetendő/Tartozás és Bevételi/Követelés könyvelési számla sorok az egyeztetett számlákon"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Teszt 5.2 : Leegyezetett számlák és Fizetendő/Tartozás; Bevételi/Követelés számlák"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Teszt 6 : Számlák állapota"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Test 7 : Záró egyenleg a bankkivonatokon"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Teszt leírása"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Teszt név"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Teszts"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "A teszt sikeressen lefutott"
|
261
i18n/id.po
Normal file
261
i18n/id.po
Normal file
@ -0,0 +1,261 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Bonny Useful <bonny.useful@gmail.com>, 2017
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# Deddy Ddr <deddy.ddr@gmail.com>, 2017
|
||||
# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2017
|
||||
# Febrasari Almania <febrasari.almania@gmail.com>, 2017
|
||||
# William Surya Permana <zarambie_game@yahoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: William Surya Permana <zarambie_game@yahoo.com>, 2017\n"
|
||||
"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
"<strong>Deskripsi:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Nama:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Tes Akuntansi"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktif"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Periksa saldo: Debit sum = Kredit sum"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Kode Bantuan"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Deskripsi"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Ekspresi"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir diubah pada"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Terakhir diperbarui oleh"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Terakhir diperbarui pada"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Kode Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Kode Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Urutan"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Tes 1: Saldo umum"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Tes 6 : Status invoice"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Deskripsi Tes"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Nama Tes"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Tes"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Tes telah selesai"
|
257
i18n/is.po
Normal file
257
i18n/is.po
Normal file
@ -0,0 +1,257 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Birgir Steinarsson <biggboss83@gmail.com>, 2018
|
||||
# Bjorn Ingvarsson <boi@exigo.is>, 2018
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:15+0000\n"
|
||||
"Last-Translator: Bjorn Ingvarsson <boi@exigo.is>, 2018\n"
|
||||
"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n"
|
||||
"Language: is\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Virkur"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Búið til af"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Stofnað þann"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Lýsing"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nafn"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Expression"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Síðast breytt þann"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Síðast uppfært af"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Síðast uppfært þann"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python Code"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Runa"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Prufur"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
261
i18n/it.po
Normal file
261
i18n/it.po
Normal file
@ -0,0 +1,261 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2018
|
||||
# Francesco Garganese <francesco.garganese@aeromnia.aero>, 2018
|
||||
# Martin Trigaux, 2018
|
||||
# Giovanni Perteghella <giovanni@perteghella.org>, 2018
|
||||
# Paolo Valier, 2018
|
||||
# David Minneci <david@numeko.it>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: David Minneci <david@numeko.it>, 2018\n"
|
||||
"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
"<strong>Descrizione:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Nome:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Test contabili"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Attivo"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Controlla se le righe movimento sono a saldo e hanno la stessa data del periodo"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Controllo sull'estratto conto bancario che il bilancio di chiusura sia uguale al bilancio iniziale più la somma delle righe presenti"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Controlla che le fatture riconciliate / pagate non siano nello stato di 'aperte'"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Controlla che i movimenti contabili riconciliati, che definiscono i conti Debiti e Crediti, appartengano alle fatture riconciliate"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Controlla che le fatture riconciliate per Vendite / Acquisti abbiano voci riconciliate per i conti Debiti e Crediti"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Controlla che il saldo sia: Somma debiti = Somma crediti"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Aiuto codice"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creato il"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descrizione"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Espressione"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Data di ultima modifica"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima modifica di"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Codice Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Codice Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sequenza"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Test 1: Bilancio generale"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Test 3: Righe movimenti"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Test 5.1 : Righe conti Crediti e Deviti di fatture riconciliate"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Test 5.2 : Fatture riconciliate conti Deviti / Crediti"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Test 6 : Stato fatture"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Test 7: Bilancio di chiusura e estratto bancario"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Descrizione test"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Nome del test"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Test"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Il test è stato passato con successo"
|
259
i18n/ja.po
Normal file
259
i18n/ja.po
Normal file
@ -0,0 +1,259 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Yoshi Tashiro <tashiro@roomsfor.hk>, 2018
|
||||
# Manami Hashi <manami@roomsfor.hk>, 2018
|
||||
# Takahiro MURAKAMI <murakami@date-yakkyoku.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Takahiro MURAKAMI <murakami@date-yakkyoku.com>, 2018\n"
|
||||
"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>説明:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>名前:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "有効"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "作成者"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "説明"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "式"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最終更新者"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Pythonコード"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Pythonコード"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "付番"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "テスト"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/ka.po
Normal file
254
i18n/ka.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "შემქმნელი"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "შექმნის თარიღი"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "აღწერილობა"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "სახელი"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "იდენტიფიკატორი"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ბოლოს განაახლა"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ბოლოს განახლებულია"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "მიმდევრობა"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/kab.po
Normal file
254
i18n/kab.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n"
|
||||
"Language: kab\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Yerna-t"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Yerna di"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Aglam"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "Asulay"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Aleqqem aneggaru sɣuṛ"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Aleqqem aneggaru di"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Agzum"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
253
i18n/kk.po
Normal file
253
i18n/kk.po
Normal file
@ -0,0 +1,253 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2015-09-07 16:05+0000\n"
|
||||
"Last-Translator: Martin Trigaux\n"
|
||||
"Language-Team: Kazakh (http://www.transifex.com/odoo/odoo-9/language/kk/)\n"
|
||||
"Language: kk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Белсенді"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Сипаттамасы"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Өрнегі"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Тізбек"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
255
i18n/km.po
Normal file
255
i18n/km.po
Normal file
@ -0,0 +1,255 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2018
|
||||
# Chan Nath <channath@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Chan Nath <channath@gmail.com>, 2018\n"
|
||||
"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n"
|
||||
"Language: km\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "សកម្ម"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "បង្កើតដោយ"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "បង្កើតនៅ"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "ការពិពណ៌នា"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ឈ្មោះសំរាប់បង្ហាញ"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "លំដាប់"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
260
i18n/ko.po
Normal file
260
i18n/ko.po
Normal file
@ -0,0 +1,260 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# 최재호 <hwangtog@gmail.com>, 2018
|
||||
# Link Up링크업 <linkup.way@gmail.com>, 2018
|
||||
# Linkup <link-up@naver.com>, 2018
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:15+0000\n"
|
||||
"Last-Translator: Linkup <link-up@naver.com>, 2018\n"
|
||||
"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>설명:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>이름:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "회계 테스트"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "활성"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "이동 라인의 수지가 맞고 날짜와 기간이 동일한지 확인"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "예금거래 명세서에서 '결산 잔액 = 시작 잔액 + 명세서 내역 합계'인지 확인"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "지급/조정된 청구서가 '미결산' 상태가 아닌지 확인"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "지급 계정과 수취 계정을 정의하는 조정된 계정 이동이 조정된 청구서에 속해 있는지 확인"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "판매/구매에 대한 조정된 청구서에 지급 계정 및 수취 계정의 조정된 항목이 있는지 확인"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "잔액 확인: 차변 합계 = 대변 합계"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "코드 도움말"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "작성자"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "작성일"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "내용"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "이름 표시"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "수식"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근 갱신한 사람"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근 갱신 날짜"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "파이썬 코드"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "파이썬 코드"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "순차적"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "테스트 1: 종합 잔액"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "테스트 3: 이동 라인"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "테스트 5.1: 조정된 청구서의 지급 및 수취 계정"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "테스트 5.2: 조정된 청구서와 지급/수취 계정"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "테스트 6: 청구서 상태"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "테스트 7: 예금거래 명세서의 결산 잔액"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "테스트 설명"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "테스트명"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "테스트"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "테스트를 통과했습니다."
|
254
i18n/lo.po
Normal file
254
i18n/lo.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n"
|
||||
"Language: lo\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "ຄຳອະທິບາຍ"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
260
i18n/lt.po
Normal file
260
i18n/lt.po
Normal file
@ -0,0 +1,260 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2017
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2017
|
||||
# Audrius Palenskis <audrius.palenskis@gmail.com>, 2017
|
||||
# Rytis Štreimikis <r.streimikis@hotmail.lt>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Rytis Štreimikis <r.streimikis@hotmail.lt>, 2017\n"
|
||||
"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Aprašymas:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Pavadinimas:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Askaitos testas"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktyvus"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Kodo pagalba"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Aprašymas"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vaizduojamas pavadinimas"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Išraiška"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python kodas"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python kodas"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Seka"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Testai"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/lv.po
Normal file
254
i18n/lv.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n"
|
||||
"Language: lv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Apraksts"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējo reizi atjaunoja"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējās izmaiņas"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sērija"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/mk.po
Normal file
254
i18n/mk.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n"
|
||||
"Language: mk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Креирано од"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Креирано на"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Прикажи име"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промена на"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно ажурирање од"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно ажурирање на"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Секвенца"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
253
i18n/ml_IN.po
Normal file
253
i18n/ml_IN.po
Normal file
@ -0,0 +1,253 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2015-08-25 10:10+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Malayalam (India) (http://www.transifex.com/odoo/odoo-9/language/ml_IN/)\n"
|
||||
"Language: ml_IN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "രൂപപ്പെടുത്തിയത്"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "നിർമിച്ച ദിവസം"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്ത ദിവസം"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
256
i18n/mn.po
Normal file
256
i18n/mn.po
Normal file
@ -0,0 +1,256 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2018\n"
|
||||
"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n"
|
||||
"Language: mn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Тайлбар:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Нэр:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Санхүү Тэстүүд"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Идэвхитэй"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Хөдөлгөөний мөрүүд нь баланслагдсан, нэг огноо ба мөчлөгтэй байгаа эсэхийг шалгана уу"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Банкны хуулга дээр Хаах Баланс = Эхлэх Баланс + хуулгын мөрүүдийн нийлбэр байгаа эсэхийг шалгана уу"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Төлсөн/тулгагсан нэхэмжлэлүүд 'Нээлттэй' төлөвт байгаа эсэхийг шалган уу."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Өглөг ба Авлагын дансыг тодорхойлогч тулгасан дансны хөдөлгөөнүүд нь тулгасан нэхэмжлэлд харьяалагдаж буй эсэхийг шалгана уу"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Борлуулалт/Худалдан авалтын тулгасан нэхэмжлэл доторх Өглөг ба Авлагын дансын оролтуудыг тулгасан эсэхийг шалгана уу"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Баланс шалгах: Дебитийн нийлбэр = Кредитийн нийлбэр"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "код туслалцаа"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэгч"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Тодорхойлолт"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэцийн Нэр"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Илэрхийлэл"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлийн засвар хийсэн"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлийн засвар хийсэн огноо"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python код"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python код"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Дараалал"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Тест 1: Ерөнхий баланс"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Тест 3: Хөдөлгөөний мөрүүд"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Тест 5.1 : Тулгасан нэхэмжлэлүүдийн авлага ба өглөгийн нягтлан бодогчийн мөрүүд"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Тэст 5.2 : Тулгагдсан нэхэмжлэлүүд ба Авлага/Өглөгийн данснууд"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Тэст 6 : Нэхэмжлэлийн төлөв"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Тест 7 : Банкны хуулганд баланс хаах"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Тест тайлбар"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Тест нэр"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Тест"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Энэ тэст амжилттай давлаа"
|
256
i18n/nb.po
Normal file
256
i18n/nb.po
Normal file
@ -0,0 +1,256 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2018\n"
|
||||
"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n"
|
||||
"Language: nb\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Beskrivelse:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Navn:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Regnskapstester"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Sjekk om bevegelse linjer balanseres og har samme dato og periode."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Sjekke kontoutskriften at den utgående balanse = Startsaldo + summen av Erklæring linjer"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Sjekk at betalte / forsonet fakturaer ikke er i 'Open' state."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Sjekk saldo: Debet sum = kreditt sum."
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Kodehjelp"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Beskrivelse"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Uttrykk"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "IDID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python-kode"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python-kode"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvens"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Test 1: Generell balanse."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Test 3: bevegelse linjer."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Test 6: Fakturastatus"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Testbeskrivelse"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Testnavn"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Tester"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Testen ble bestått"
|
251
i18n/ne.po
Normal file
251
i18n/ne.po
Normal file
@ -0,0 +1,251 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"Language: ne\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
259
i18n/nl.po
Normal file
259
i18n/nl.po
Normal file
@ -0,0 +1,259 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Yenthe Van Ginneken <yenthespam@gmail.com>, 2018
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2018
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:15+0000\n"
|
||||
"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2018\n"
|
||||
"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
"<strong>Omschrijving:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Naam:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr "Rekening test rapport"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr "Boekhouding test"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Financiële testen"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Actief"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Controleer of boekingen in balans zijn en dezelfde datum en periode hebben"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Controleer op bankafschrift dat de eindsaldo gelijk is aan startsaldo + som van de afschriftregels"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Controleer of betaalde/afgeletterde facturen zich niet in de 'Open' staat bevinden"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Controleer of afgeletterde boekingen op de crediteuren en debiteuren rekeningen, behoren aan afgeleterde facturen"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Controleer of afgeletterde factuur van verkoop/inkoop een afgeletterde regel heeft op de crediteuren en debiteuren rekening"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Controleer de balans: Som van debet = Som van Credit"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Code Help"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr "Maak een nieuwe boekhoudtest"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Aangemaakt door"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Aangemaakt op"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Omschrijving"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Schermnaam"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Expressie"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst bijgewerkt op"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python Code"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python code"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Reeks"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Test 1: Algemene balans"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Test 3: Boekingen"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Test 5.1 : Crediteuren en debiteuren rekeningen van afgeletterde facturen"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Test 5.2 : Afgeletterde facturen en crediteuren/debiteuren rekeningen"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Test 6 : Factuur status"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Test 7 : Eindsaldo op bankafschriften"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Test omschrijving"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Test naam"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Testen"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "De test is geslaagd"
|
263
i18n/pl.po
Normal file
263
i18n/pl.po
Normal file
@ -0,0 +1,263 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# zbik2607 <darek@krokus.com.pl>, 2018
|
||||
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2018
|
||||
# Arek Smagacz <arek.smagacz@gmail.com>, 2018
|
||||
# Zdzisław Krajewski <zdzichucb@gmail.com>, 2018
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2018
|
||||
# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2018
|
||||
# Andrzej Donczew <a.donczew@hadron.eu.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Andrzej Donczew <a.donczew@hadron.eu.com>, 2018\n"
|
||||
"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Opis:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Nazwa:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Testy rachunkowe"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktywne"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Sprawdź czy przesunięcia są zbalansowane i mają tą samą datę i okres"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Sprawdź na wyciągu bankowym Bilans zamknięcia = Saldo początkowe + suma wyciągu bankowego"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Sprawdź czy zapłacone/uzgodnione faktury nie są w 'Otwarte' -ym stanie"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Sprawdź czy uzgodnione sprawozdania przesunięć rachunkowych, które określają konta Płatności i Należności, są przynależne do uzgodnianych sprawozdań"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Sprawdź czy uzgodnione sprawozdania faktur dla Sprzedaży/Zakupów są uzgodnionymi wpisami dla kont rachunkowych Płatności i Należności"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Sprawdź bilans: Suma wydatków = suma kredytowa"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Kod pomocy"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzona przez"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data utworzenia"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Wyrażenie"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Data ostatniej modyfikacji"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio aktualizowane przez"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Data ostatniej aktualizacji"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Kod Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Kod języka Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Numeracja"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Test 1: Saldo"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Test 3: Przesunięcia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Test 5.1: Linijki kont Płatności i Należności uzgadnianych faktur"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Test 5.2: Uzgadniane sprawozdania finansowe faktur i kont Płatności/Należności"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Test 6: Status faktur"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Test 7: Salda końcowe na wyciągach bankowych"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Testowy opis"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Testowa nazwa"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Testy"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Test został zdany"
|
261
i18n/pt.po
Normal file
261
i18n/pt.po
Normal file
@ -0,0 +1,261 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Manuela Silva <inactive+h_manuela_rodsilva@transifex.com>, 2018
|
||||
# Ricardo Martins <ricardo.nbs.martins@gmail.com>, 2018
|
||||
# MS, 2018
|
||||
# Diogo Fonseca <dsf@thinkopensolutions.pt>, 2018
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:15+0000\n"
|
||||
"Last-Translator: Diogo Fonseca <dsf@thinkopensolutions.pt>, 2018\n"
|
||||
"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Descrição:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Nome:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr "Relatório de Conta de Teste"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Testes de Contabilidade"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Verifique se as linhas de movimento estão saldadas e têm a mesma data e período"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Verifique no extrato bancário se o Saldo Final = Saldo Inicial + soma das linhas do extrato"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Verifique se as faturas pagas/reconciliadas não estão no estado 'Em Aberto'"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Verifique se os movimentos contabilísticos reconciliados que definem as contas 'A Pagar' e 'A Receber', pertencem às faturas reconciliadas"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Verifique se a fatura reconciliada para Vendas/Compras tem movimentos reconciliados para as contas 'A Pagar' e 'A Receber'"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Verifique o saldo: soma do Débito = soma do Crédito"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Código de Ajuda"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr "Criar nova Conta de Teste"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criada em"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a Exibir"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Expressão"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "Id."
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última Atualização por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última Atualização em"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Código Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Código em python"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sequência"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Teste 1: Saldo geral"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Teste 3: Linhas de movimento"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Teste 5.1 : Linhas de contabilidade 'A Pagar' e 'A Receber' das faturas reconciliadas"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Teste 5.2 : Faturas reconciliadas e contas 'A Pagar' / 'A Receber'"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Teste 6 : Estado de Faturas"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Teste 7 : Saldo final nos extratos bancários"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Descrição do teste"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Nome de teste"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Testes"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "O teste passou com êxito"
|
260
i18n/pt_BR.po
Normal file
260
i18n/pt_BR.po
Normal file
@ -0,0 +1,260 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Gideoni Silva <gd.willian@gmail.com>, 2016
|
||||
# grazziano <gra.negocia@gmail.com>, 2016
|
||||
# Mateus Lopes <mateus1@gmail.com>, 2016
|
||||
# Martin Trigaux, 2016
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2016-08-05 12:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2016\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Descrição:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Nome:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Testes Contábeis"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Verifique se as linhas de movimento estão balanceadas e têm a mesma data e período"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Verifique no extrato bancário que o Saldo Final = Saldo Inicial + soma das linhas do demonstrativo"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Verifique que as faturas pagas/reconciliadas não estão com a situação 'Aberto'"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Verifica se os movimentos de conta reconciliados, que definem as contas a pagar e a receber, são pertencentes a faturas reconciliadas"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Verifique se a fatura reconciliada de Vendas / Compras reconciliou entradas para Contas a Pagar e Receber"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Verifique o balanço: Soma dos Débitos = Soma dos Créditos"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Ajuda com Código"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome para Exibição"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Expressão"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Código python"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Código Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Seqüência"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Teste 1: Balanço Geral"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Teste 3 : Linhas de Movimento"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Teste 5.1 : Linhas de Pagáveis e Recebíveis em faturas reconciliadas."
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Teste 5.2 : Faturas reconciliadas e contas de pagáveis e recebíveis"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Teste 6 :Situação das Faturas"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Teste 8 : Saldo final no demonstrativo bancário"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Descrição do Teste"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Nome do Teste"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Testes"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "O teste passou com sucesso"
|
256
i18n/ro.po
Normal file
256
i18n/ro.po
Normal file
@ -0,0 +1,256 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2018\n"
|
||||
"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Descriere:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Nume:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Teste Contabile"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Activ(a)"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Verificati daca liniile miscarii sunt echilibrate si au aceeasi data si perioada"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Verificati pe extrasele de cont ca Soldul de inchidere = Soldul inițial + suma liniilor extrasului"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Verificați ca facturile platite/reconciliate sa nu fie în starea 'Deschisa'"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Verificați ca mișcările reconciliate ale contului, care definesc conturile de Plăți și de Încasări, să aparțină facturilor reconciliate"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Verificați dacă factura reconciliată pentru Vânzări/Achiziții a reconciliat înregistrarile pentru Conturile de Plăți și de Încasări"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Verificati soldul: Suma debit = Suma credit"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Ajutor Cod"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat în"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Descriere"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Expresie"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificare la"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare pe"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Cod Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Cod python"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Secvență"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Testul 1: Soldul general"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Test 3: Liniile miscarii"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Test 5.1 : Liniile contabile de plati si incasari ale facturilor reconciliate"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Test 5.2 : Facturi reconciliate și conturi de Plăți/Încasări"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Testul 6 : Starea facturilor"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Descrierea Testului"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Numele Testului"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Teste"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Testul a fost trecut cu succes"
|
256
i18n/ru.po
Normal file
256
i18n/ru.po
Normal file
@ -0,0 +1,256 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2018\n"
|
||||
"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
"<strong>Описание</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Наименование:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Тесты Бухгалтерского учета"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Проверьте если линии движения сбалансированы и имеют ту же дату и период"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Проверить по банковской выписке, что Конечный Баланс = Начальный Баланс + сумма строк выписки"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Проверьте, что оплаченные/сверенные счета-фактуры не в статусе 'Открыто'"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Проверьте, что сверенные движения по счету, которые определены как счета кредиторской и дебиторской задолженности, входят в состав сверенных счетов-фактур"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Проверьте, что сверенный счет на Продажи/Покупки имеет примеренные записи для Счетов Кредиторской и Дебиторской задолженности"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Проверяет баланс: сумма дебита = сумма кредита"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Код Помощь"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создано"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Создан"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Описание"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Отображаемое Имя"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Выражение"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "Номер"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последнее изменение"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновил"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последнее обновление"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Код на Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Код на Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Нумерация"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Проверка 1: Общий баланс"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Тест 3: Линии Движения"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Тест 5.1 : Строки кредиторской и дебиторской задолженности сверенных счетов-фактур"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Тест 5.2 : Сверенные счета-фактуры и счета кредиторской/дебиторской задолженности"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Тест 6: Статус счет-фактур"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Тест 7: Закрытие баланса на банковской отчетности"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Описание проверки"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Тест Наименования"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Тесты"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Проверка прошла успешно"
|
258
i18n/sk.po
Normal file
258
i18n/sk.po
Normal file
@ -0,0 +1,258 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2018
|
||||
# gebri <gebri@inmail.sk>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: gebri <gebri@inmail.sk>, 2018\n"
|
||||
"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
"<strong>Popis:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Názov:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Účtovnícke testy"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktívne"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Zaškrtnite ak sú riadky pohybov vyrovnané a majú rovnaký dátum a obdobie"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Skontrolujte na bankovom výpise či Konečný zostatok = Počiatočný zostatok + súčet riadkov výpisu"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Skontrolujte či zaplatené/zladené faktúry nie v stave 'Otvorené'"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Skontrolujte či zladené účtovné pohyby, ktoré definujú účty Záväzkov a Pohľadávok, patria k rovnakým zladeným výpisom"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Skontrolujte či zladená faktúra pre Predaje/Nákupy má zladene vstupy pre účty Záväzkov a Pohľadávok"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Skontrolujte zostatok: súčet debetu = súčet kreditu"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Kódová pomoc"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Popis"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný Názov"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Výraz"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná modifikácia"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Kód Pyton"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Kód Pyton"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Postupnosť"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Test 1: Všeobecný zostatok"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Test 3: Riadky pohybov"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Test 5.1 : Účtovné riadky Záväzkov a Pohľadávok zladených faktúr"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Test 5.2 : Zladené faktúry a účty Záväzkov/Pohľadávok"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Test 6 : Stav faktúry"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Test 7 : Konečný zostatok na bankových výpisoch"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Popis testu"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Názov testu"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Testy"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Test bol prejdený úspešne"
|
251
i18n/sl.po
Normal file
251
i18n/sl.po
Normal file
@ -0,0 +1,251 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
254
i18n/sq.po
Normal file
254
i18n/sq.po
Normal file
@ -0,0 +1,254 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux <mat@odoo.com>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n"
|
||||
"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n"
|
||||
"Language: sq\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Krijuar nga"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Krijuar me"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Përshkrimi"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Emri i paraqitur"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modifikimi i fundit në"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Modifikuar per here te fundit nga"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Modifikuar per here te fundit me"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekuencë"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
255
i18n/sr.po
Normal file
255
i18n/sr.po
Normal file
@ -0,0 +1,255 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Slobodan Simić <slsimic@gmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: Slobodan Simić <slsimic@gmail.com>, 2018\n"
|
||||
"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/sr/)\n"
|
||||
"Language: sr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreiran"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Opis"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Ekspresija"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python kod"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python kod"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Niz"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
251
i18n/sr@latin.po
Normal file
251
i18n/sr@latin.po
Normal file
@ -0,0 +1,251 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 10.saas~18\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
259
i18n/sv.po
Normal file
259
i18n/sv.po
Normal file
@ -0,0 +1,259 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Kristoffer Grundström <hamnisdude@gmail.com>, 2018
|
||||
# Martin Trigaux, 2018
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2018
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2016-08-05 12:55+0000\n"
|
||||
"Last-Translator: Kim Asplund <kim.asplund@gmail.com>, 2018\n"
|
||||
"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
"<strong>Beskrivning:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Namn:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Redovisningstester"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad den"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Beskrivning"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Uttryck"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Pythonkod"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Pythonkod"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sekvens"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Test Beskrivning"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Testnamn"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Tester"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
258
i18n/ta.po
Normal file
258
i18n/ta.po
Normal file
@ -0,0 +1,258 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Bagavathikumar Ramakrishnan <bagavathikumar@gmail.com>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo 9.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2016-02-05 10:27+0000\n"
|
||||
"Last-Translator: Bagavathikumar Ramakrishnan <bagavathikumar@gmail.com>\n"
|
||||
"Language-Team: Tamil (http://www.transifex.com/odoo/odoo-9/language/ta/)\n"
|
||||
"Language: ta\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
"<strong>விளக்கம்:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>பெயர்:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "உருவாக்கியவர்"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
"உருவாக்கப்பட்ட \n"
|
||||
"தேதி"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "விளக்கம்"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "காட்சி பெயர்"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "கடைசியாக திருத்திய"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "கடைசியாக புதுப்பிக்கப்பட்டது"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "கடைசியாக புதுப்பிக்கப்பட்டது"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "வரிசை"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "சோதனை விளக்கம்"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "சோதனை பெயர்"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "சோதனைகள்"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
259
i18n/th.po
Normal file
259
i18n/th.po
Normal file
@ -0,0 +1,259 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2018
|
||||
# gsong <gsong2014@foxmail.com>, 2018
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:15+0000\n"
|
||||
"Last-Translator: gsong <gsong2014@foxmail.com>, 2018\n"
|
||||
"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n"
|
||||
"Language: th\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>คำอธิบาย:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>ชื่อ:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "เปิดใช้งาน"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "สร้างโดย"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "สร้างเมื่อ"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "รายละเอียด"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ชื่อที่ใช้แสดง"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Expression"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "รหัส"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "อัพเดทครั้งสุดท้ายโดย"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "อัพเดทครั้งสุดท้ายเมื่อ"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python Code"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python Code"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "ลำดับ"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "ทดสอบ"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
262
i18n/tr.po
Normal file
262
i18n/tr.po
Normal file
@ -0,0 +1,262 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Ediz Duman <neps1192@gmail.com>, 2017
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2017
|
||||
# Gökhan Erdoğdu <gokhan.erdogdu@mechsoft.com.tr>, 2017
|
||||
# Ayhan KIZILTAN <akiziltan76@hotmail.com>, 2017
|
||||
# gezgin biri <gezginbiri@hotmail.com>, 2017
|
||||
# Martin Trigaux, 2017
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2016-08-05 12:55+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2017\n"
|
||||
"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n"
|
||||
"Language: tr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Açıklama:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Adı</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Muhasebe Testleri"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktif"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Hareket kalemlerinin denk olduğunu ve aynı tarih ve dönemde olduğunu denetleyin"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Hesap özetinde Kapanış Bakiyesi = Açılış Bakiyesi + hesap özeti kalemleri toplamı olduğunu denetleyin"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Ödenmiş/uzlaştırılmış faturaların 'Açık' durumda olmadığını denetleyin"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Borç ve Alacak hesaplarını tanımlayan uzlaştırılmış hareket kalemlerinin uzlaştırılmış faturalara ait olduğunu denetleyin"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Uzlaştırılmış Satış/Satınalma faturasının Alacak ve Borç Hesaplarında uzlaştırılmış girişler olup olmadığını denetleyin"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Bakiyeyi denetle: Borç Toplamı = Alacak toplamı"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Kod Yardımı"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma zamanı"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Tanım"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünüm Adı"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "İfade"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Güncelleme"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Güncelleyen"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Güncelleme"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python Kodu"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python kodu"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Sıra"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Test 1: Genel bilanço"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Test 3: Hareket kalemleri"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Test 5.1 : Uzlaştırılmış faturaların Borç ve Alacak hesap kalemleri"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Test 5.2 : Uzlaştırılmış faturalar be Borç/Alacak hesapları"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Test 6 : Fatura durumu"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Test 7 : Banka hesap özetlerindeki kapanış bakiyesi"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Test Açıklaması"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Test Adı"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Testler"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Testler başarıyla geçildi"
|
260
i18n/uk.po
Normal file
260
i18n/uk.po
Normal file
@ -0,0 +1,260 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# Bohdan Lisnenko, 2018
|
||||
# ТАрас <tratatuta@i.ua>, 2018
|
||||
# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2019
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2016-08-05 12:55+0000\n"
|
||||
"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2019\n"
|
||||
"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n"
|
||||
"Language: uk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>Опис:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>Назва:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr "Звіт тесту рахунку"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr "Тест з бухгалтерського обліку"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "Тести для бухобліку"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Активно"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "Перевірте, чи розміщення рядків збалансоване, і вони мають однакову дату та час"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "Перевірте банківську виписку про те, що Закритий баланс = початковий баланс + сума рядків виписок"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "Переконайтеся, що оплачені / узгоджені рахунки-фактури не у стані \"Відкритий\""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "Перевірте, що узгоджені переходи рахунків, які визначають Платежі та Дебіторську заборгованість, належать до узгоджених рахунків"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "Переконайтеся, що узгоджений рахунок для продажів/покупок узгоджений із записами для Платежу та Дебіторської заборгованості"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "Перевірте баланс: Дебет = Кредит"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "Код допомоги"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr "Створити новий бухгалтерський тест"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створено"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Опис"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Вираз"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Код Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Код Python "
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Послідовність"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "Тест 1: Загальний баланс"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Тест 3: рядки проведень"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "Тест 5.1: Дебет і Кредит узгоджених рахунків"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "Тест 5.2: Узгоджені рахунки і Дебет/Кредит"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "Тест 6: Статус рахунків"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "Тест 7: Закриття балансу по виписці"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "Опис тесту"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "Назва тесту"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Тест"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Тест успішно пройдено"
|
256
i18n/vi.po
Normal file
256
i18n/vi.po
Normal file
@ -0,0 +1,256 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# thanh nguyen <thanhnguyen.icsc@gmail.com>, 2018
|
||||
# Martin Trigaux, 2018
|
||||
# fanha99 <fanha99@hotmail.com>, 2018
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2018-09-21 13:17+0000\n"
|
||||
"Last-Translator: fanha99 <fanha99@hotmail.com>, 2018\n"
|
||||
"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n"
|
||||
"Language: vi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Có hiệu lực"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Thời điểm tạo"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "Miêu tả"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "Biểu thức"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sửa lần cuối vào"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Cập nhật lần cuối bởi"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Mã Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Mã Python"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "Trình tự"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "Tests"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
259
i18n/zh_CN.po
Normal file
259
i18n/zh_CN.po
Normal file
@ -0,0 +1,259 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Jeffery CHEN Fan <jeffery9@gmail.com>, 2016
|
||||
# liAnGjiA <liangjia@qq.com>, 2018
|
||||
# inspur qiuguodong <qiuguodong@inspur.com>, 2019
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2016-08-05 12:55+0000\n"
|
||||
"Last-Translator: inspur qiuguodong <qiuguodong@inspur.com>, 2019\n"
|
||||
"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n"
|
||||
"Language: zh_CN\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>描述:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>名称:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr "会计测试报告"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr "会计确认测试"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "会计测试"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "有效"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "检查凭证行是否平衡并且有相同的时间和日期"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "在银行对账单检查,期末余额 = 期初余额 + 本期发生额"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "检查支付/已调节发票并不在'开启'状态"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "检查已调节的会计凭证,属于已调节发票的应付科目和应收科目"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "检查已收和已付科目中已调节的分录相关的销售/采购发票"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "检查是否平衡:借方合计=贷方合计"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "代码帮助"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr "新建一个测试账户"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "创建人"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "说明"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "表达式"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改日"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新人"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最后更新时间"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python 代码"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python代码"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "序号"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "测试 1: 总账平衡"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "测试 3: 凭证行"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "测试 5.1 : 已调节发票的应收及应付分录"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "测试 5.2 : 已调节的发票和应收/应付科目"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "测试6 : 发票状态"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "测试 7:在银行对账单上关张余额"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "测试描述"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "测试项"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "测试"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "测试通过"
|
259
i18n/zh_TW.po
Normal file
259
i18n/zh_TW.po
Normal file
@ -0,0 +1,259 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_test
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2018
|
||||
# sejun huang <sejun.huang@gmail.com>, 2019
|
||||
# 敬雲 林 <chingyun@yuanchih-consult.com>, 2019
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server saas~11.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-26 08:16+0000\n"
|
||||
"PO-Revision-Date: 2016-08-05 12:55+0000\n"
|
||||
"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2019\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n"
|
||||
"Language: zh_TW\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid ""
|
||||
"<br/>\n"
|
||||
" <strong>Description:</strong>"
|
||||
msgstr ""
|
||||
"<br/>\n"
|
||||
" <strong>描述:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "<strong>Name:</strong>"
|
||||
msgstr "<strong>名稱:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr "帳戶測試報告"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr "會計試算測試"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report,name:account_test.account_assert_test_report
|
||||
#: model:ir.ui.menu,name:account_test.menu_action_license
|
||||
msgid "Accounting Tests"
|
||||
msgstr "會計測試"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.report_accounttest
|
||||
msgid "Accounting tests on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "有效"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_03
|
||||
msgid "Check if movement lines are balanced and have the same date and period"
|
||||
msgstr "檢查憑證行是否平衡並且有相同的時間和日期"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_07
|
||||
msgid "Check on bank statement that the Closing Balance = Starting Balance + sum of statement lines"
|
||||
msgstr "在銀行對帳單檢查,期末餘額 = 期初餘額 + 本期發生額"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_06
|
||||
msgid "Check that paid/reconciled invoices are not in 'Open' state"
|
||||
msgstr "檢查支付/已調節發票並不在'開啟'狀態"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05_2
|
||||
msgid "Check that reconciled account moves, that define Payable and Receivable accounts, are belonging to reconciled invoices"
|
||||
msgstr "檢查已調節的會計憑證,屬於已調節發票的應付科目和應收科目"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_05
|
||||
msgid "Check that reconciled invoice for Sales/Purchases has reconciled entries for Payable and Receivable Accounts"
|
||||
msgstr "檢查已收和已付科目中已調節的分錄相關的銷售/採購發票"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,desc:account_test.account_test_01
|
||||
msgid "Check the balance: Debit sum = Credit sum"
|
||||
msgstr "檢查是否平衡:借方合計=貸方合計"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Code Help"
|
||||
msgstr "代碼幫助"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid ""
|
||||
"Code should always set a variable named `result` with the result of your test, that can be a list or\n"
|
||||
"a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will\n"
|
||||
"try to translate and print what is inside `result`.\n"
|
||||
"\n"
|
||||
"If the result of your test is a dictionary, you can set a variable named `column_order` to choose in\n"
|
||||
"what order you want to print `result`'s content.\n"
|
||||
"\n"
|
||||
"Should you need them, you can also use the following variables into your code:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In any ways, the code must be legal python statements with correct indentation (if needed).\n"
|
||||
"\n"
|
||||
"Example: \n"
|
||||
" sql = '''SELECT id, name, ref, date\n"
|
||||
" FROM account_move_line \n"
|
||||
" WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')\n"
|
||||
" '''\n"
|
||||
" cr.execute(sql)\n"
|
||||
" result = cr.dictfetchall()"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Create a new accounting test"
|
||||
msgstr "創建一個新的會計測試"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "創建者"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__create_date
|
||||
msgid "Created on"
|
||||
msgstr "創建時間"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Description"
|
||||
msgstr "描述"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__display_name
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Expression"
|
||||
msgstr "表達式"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__id
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test____last_update
|
||||
#: model:ir.model.fields,field_description:account_test.field_report_account_test_report_accounttest____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改時間"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最後更新人"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最後更新時間"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
msgid "Python Code"
|
||||
msgstr "Python 代碼"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__code_exec
|
||||
msgid "Python code"
|
||||
msgstr "Python代碼"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.accounting_assert_test_view_search
|
||||
msgid "Search Account Test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__sequence
|
||||
msgid "Sequence"
|
||||
msgstr "序列"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_01
|
||||
msgid "Test 1: General balance"
|
||||
msgstr "測試 1: 總帳平衡"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "測試 3: 憑證行"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05
|
||||
msgid "Test 5.1 : Payable and Receivable accountant lines of reconciled invoices"
|
||||
msgstr "測試 5.1 : 已調節發票的應收及應付分錄"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_05_2
|
||||
msgid "Test 5.2 : Reconcilied invoices and Payable/Receivable accounts"
|
||||
msgstr "測試 5.2 : 已核銷的發票和應收/應付科目"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_06
|
||||
msgid "Test 6 : Invoices status"
|
||||
msgstr "測試6 : 發票狀態"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_07
|
||||
msgid "Test 7 : Closing balance on bank statements"
|
||||
msgstr "測試 7:在銀行對帳單上關帳餘額"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__desc
|
||||
msgid "Test Description"
|
||||
msgstr "測試描述"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__name
|
||||
msgid "Test Name"
|
||||
msgstr "測試項"
|
||||
|
||||
#. module: account_test
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_form
|
||||
#: model_terms:ir.ui.view,arch_db:account_test.account_assert_tree
|
||||
msgid "Tests"
|
||||
msgstr "測試"
|
||||
|
||||
#. module: account_test
|
||||
#: code:addons/account_test/report/report_account_test.py:0
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "測試通過"
|
4
models/__init__.py
Normal file
4
models/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import accounting_assert_test
|
24
models/accounting_assert_test.py
Normal file
24
models/accounting_assert_test.py
Normal file
@ -0,0 +1,24 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import fields, models
|
||||
|
||||
CODE_EXEC_DEFAULT = '''\
|
||||
res = []
|
||||
cr.execute("select id, code from account_journal")
|
||||
for record in cr.dictfetchall():
|
||||
res.append(record['code'])
|
||||
result = res
|
||||
'''
|
||||
|
||||
|
||||
class AccountingAssertTest(models.Model):
|
||||
_name = "accounting.assert.test"
|
||||
_description = 'Accounting Assert Test'
|
||||
_order = "sequence"
|
||||
|
||||
name = fields.Char(string='Test Name', required=True, index=True, translate=True)
|
||||
desc = fields.Text(string='Test Description', index=True, translate=True)
|
||||
code_exec = fields.Text(string='Python code', required=True, default=CODE_EXEC_DEFAULT)
|
||||
active = fields.Boolean(default=True)
|
||||
sequence = fields.Integer(default=10)
|
4
report/__init__.py
Normal file
4
report/__init__.py
Normal file
@ -0,0 +1,4 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import report_account_test
|
12
report/accounting_assert_test_reports.xml
Normal file
12
report/accounting_assert_test_reports.xml
Normal file
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<record id="account_assert_test_report" model="ir.actions.report">
|
||||
<field name="name">Accounting Tests</field>
|
||||
<field name="model">accounting.assert.test</field>
|
||||
<field name="report_type">qweb-pdf</field>
|
||||
<field name="report_name">account_test.report_accounttest</field>
|
||||
<field name="report_file">account_test.report_accounttest</field>
|
||||
<field name="binding_model_id" ref="model_accounting_assert_test"/>
|
||||
<field name="binding_type">report</field>
|
||||
</record>
|
||||
</odoo>
|
75
report/report_account_test.py
Normal file
75
report/report_account_test.py
Normal file
@ -0,0 +1,75 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
import datetime
|
||||
from odoo import api, models, _
|
||||
from odoo.tools.safe_eval import safe_eval
|
||||
#
|
||||
# Use period and Journal for selection or resources
|
||||
#
|
||||
|
||||
|
||||
class ReportAssertAccount(models.AbstractModel):
|
||||
_name = 'report.account_test.report_accounttest'
|
||||
_description = 'Account Test Report'
|
||||
|
||||
@api.model
|
||||
def execute_code(self, code_exec):
|
||||
def reconciled_inv():
|
||||
"""
|
||||
returns the list of invoices that are set as reconciled = True
|
||||
"""
|
||||
return self.env['account.move'].search([('reconciled', '=', True)]).ids
|
||||
|
||||
def order_columns(item, cols=None):
|
||||
"""
|
||||
This function is used to display a dictionary as a string, with its columns in the order chosen.
|
||||
|
||||
:param item: dict
|
||||
:param cols: list of field names
|
||||
:returns: a list of tuples (fieldname: value) in a similar way that would dict.items() do except that the
|
||||
returned values are following the order given by cols
|
||||
:rtype: [(key, value)]
|
||||
"""
|
||||
if cols is None:
|
||||
cols = list(item)
|
||||
return [(col, item.get(col)) for col in cols if col in item]
|
||||
|
||||
localdict = {
|
||||
'cr': self.env.cr,
|
||||
'uid': self.env.uid,
|
||||
'reconciled_inv': reconciled_inv, # specific function used in different tests
|
||||
'result': None, # used to store the result of the test
|
||||
'column_order': None, # used to choose the display order of columns (in case you are returning a list of dict)
|
||||
'_': _,
|
||||
}
|
||||
safe_eval(code_exec, localdict, mode="exec", nocopy=True)
|
||||
result = localdict['result']
|
||||
column_order = localdict.get('column_order', None)
|
||||
|
||||
if not isinstance(result, (tuple, list, set)):
|
||||
result = [result]
|
||||
if not result:
|
||||
result = [_('The test was passed successfully')]
|
||||
else:
|
||||
def _format(item):
|
||||
if isinstance(item, dict):
|
||||
return ', '.join(["%s: %s" % (tup[0], tup[1]) for tup in order_columns(item, column_order)])
|
||||
else:
|
||||
return item
|
||||
result = [_format(rec) for rec in result]
|
||||
|
||||
return result
|
||||
|
||||
@api.model
|
||||
def _get_report_values(self, docids, data=None):
|
||||
report = self.env['ir.actions.report']._get_report_from_name('account_test.report_accounttest')
|
||||
records = self.env['accounting.assert.test'].browse(self.ids)
|
||||
return {
|
||||
'doc_ids': self._ids,
|
||||
'doc_model': report.model,
|
||||
'docs': records,
|
||||
'data': data,
|
||||
'execute_code': self.execute_code,
|
||||
'datetime': datetime
|
||||
}
|
21
report/report_account_test_templates.xml
Normal file
21
report/report_account_test_templates.xml
Normal file
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<template id="report_accounttest">
|
||||
<t t-call="web.html_container">
|
||||
<t t-call="web.internal_layout">
|
||||
<div class="page">
|
||||
<h2>Accounting tests on <span t-out="datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')"/></h2>
|
||||
<div t-foreach="docs" t-as="o">
|
||||
<p>
|
||||
<strong>Name:</strong> <span t-field="o.name"/><br/>
|
||||
<strong>Description:</strong> <span t-field="o.desc"/>
|
||||
</p>
|
||||
<p t-foreach="execute_code(o.code_exec)" t-as="test_result">
|
||||
<span t-out="test_result"/>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</t>
|
||||
</template>
|
||||
</odoo>
|
3
security/ir.model.access.csv
Normal file
3
security/ir.model.access.csv
Normal file
@ -0,0 +1,3 @@
|
||||
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
|
||||
"access_accounting_assert_test","accounting.assert.test","model_accounting_assert_test",base.group_system,1,0,0,1
|
||||
"access_accounting_assert_test_manager","accounting.assert.test","model_accounting_assert_test",account.group_account_manager,1,0,0,0
|
|
92
views/accounting_assert_test_views.xml
Normal file
92
views/accounting_assert_test_views.xml
Normal file
@ -0,0 +1,92 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
|
||||
<record model="ir.ui.view" id="account_assert_tree">
|
||||
<field name="name">accounting.assert.test.tree</field>
|
||||
<field name="model">accounting.assert.test</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree string="Tests">
|
||||
<field name="sequence"/>
|
||||
<field name="name"/>
|
||||
<field name="desc"/>
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.ui.view" id="account_assert_form">
|
||||
<field name="name">accounting.assert.test.form</field>
|
||||
<field name="model">accounting.assert.test</field>
|
||||
<field name="arch" type="xml">
|
||||
<form string="Tests">
|
||||
<sheet>
|
||||
<group>
|
||||
<group>
|
||||
<field name="name"/>
|
||||
<field name="sequence"/>
|
||||
</group>
|
||||
<group>
|
||||
<field name="active" widget="boolean_toggle"/>
|
||||
</group>
|
||||
</group>
|
||||
<notebook>
|
||||
<page string="Description" name="description">
|
||||
<field name="desc" nolabel="1"/>
|
||||
</page>
|
||||
<page string="Expression" name="expression">
|
||||
<group string="Python Code">
|
||||
<field colspan="2" name="code_exec" nolabel="1"/>
|
||||
</group>
|
||||
<group string="Code Help">
|
||||
<div colspan="2">
|
||||
<pre style="white-space: pre-wrap;">
|
||||
Code should always set a variable named `result` with the result of your test, that can be a list or a dictionary. If `result` is an empty list, it means that the test was successful. Otherwise it will try to translate and print what is inside `result`. If the result of your test is a dictionary, you can set a variable named `column_order` to choose in
|
||||
what order you want to print `result`'s content.
|
||||
Should you need them, you can also use the following variables into your code:
|
||||
* cr: cursor to the database
|
||||
* uid: ID of the current user
|
||||
In any ways, the code must be legal python statements with correct indentation (if needed).
|
||||
Example:
|
||||
sql = '''SELECT id, name, ref, date
|
||||
FROM account_move_line
|
||||
WHERE account_id IN (SELECT id FROM account_account WHERE type = 'view')
|
||||
'''
|
||||
cr.execute(sql)
|
||||
result = cr.dictfetchall()
|
||||
</pre>
|
||||
</div>
|
||||
</group>
|
||||
</page>
|
||||
</notebook>
|
||||
</sheet>
|
||||
</form>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="accounting_assert_test_view_search" model="ir.ui.view">
|
||||
<field name="name">accounting.assert.test.view.search</field>
|
||||
<field name="model">accounting.assert.test</field>
|
||||
<field name="arch" type="xml">
|
||||
<search string="Search Account Test">
|
||||
<field string="Name" name="name"/>
|
||||
<field string="Description" name="desc"/>
|
||||
<separator/>
|
||||
<filter string="Archived" name="inactive" domain="[('active', '=', False)]"/>
|
||||
</search>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record model="ir.actions.act_window" id="action_accounting_assert">
|
||||
<field name="name">Accounting Tests</field>
|
||||
<field name="res_model">accounting.assert.test</field>
|
||||
<field name="view_mode">tree,form</field>
|
||||
<field name="search_view_id" ref="accounting_assert_test_view_search"/>
|
||||
<field name="help" type="html">
|
||||
<p class="o_view_nocontent_smiling_face">
|
||||
Create a new accounting test
|
||||
</p>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<menuitem name="Accounting Tests" parent="account.menu_finance_reports" id="menu_action_license" action="action_accounting_assert" sequence="50" groups="base.group_no_one"/>
|
||||
|
||||
</odoo>
|
Loading…
x
Reference in New Issue
Block a user