mirror of
https://github.com/bringout/oca-ocb-accounting.git
synced 2026-04-18 04:02:01 +02:00
Initial commit: Accounting packages
This commit is contained in:
commit
4ef34c2317
2661 changed files with 1709616 additions and 0 deletions
52
odoo-bringout-oca-ocb-account_test/README.md
Normal file
52
odoo-bringout-oca-ocb-account_test/README.md
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
# Accounting Consistency Tests
|
||||
|
||||
|
||||
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.
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-account_test
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- account
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Accounting Consistency Tests
|
||||
- **Version**: 1.0
|
||||
- **Category**: Accounting/Accounting
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `account_test`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
|
|
@ -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
|
||||
|
|
@ -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',
|
||||
}
|
||||
|
|
@ -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>
|
||||
|
|
@ -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 ""
|
||||
246
odoo-bringout-oca-ocb-account_test/account_test/i18n/af.po
Normal file
246
odoo-bringout-oca-ocb-account_test/account_test/i18n/af.po
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: af\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/am.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/am.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: am\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
283
odoo-bringout-oca-ocb-account_test/account_test/i18n/ar.po
Normal file
283
odoo-bringout-oca-ocb-account_test/account_test/i18n/ar.po
Normal file
|
|
@ -0,0 +1,283 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ar\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 "Accouting 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: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 succesful. 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 ""
|
||||
"يجب أن يحدد الكود دائماً متغير اسمه result يكون هو النتيجة المطلوبة من الاختبار، وقد يكون قائمة List أو قائمة أزواج Dictionary.\n"
|
||||
"\n"
|
||||
"إذا كان المتغير result قائمة فارغة، فذلك يعني أن نتيجة الاختبار كانت إيجابية ولا توجد أخطاء في الحسابات.\n"
|
||||
"إذا لم تكن تلك هي الحالة، فسيحاول النظام ترجمة وطباعة نتائج المتغير result.\n"
|
||||
"\n"
|
||||
"إذا كانت نتيجة الاختبار قائمة أزواج Dictionary، فيمكنك تعيين متغير اسمه column_order لتحديد الترتيب الذي سيتم طباعة نتيجة الاختبار بناء عليه.\n"
|
||||
"\n"
|
||||
"إن تطلب الأمر، يمكنك استخدام المتغيرات:\n"
|
||||
"cr لتحديد موضع المؤشر في قاعدة البيانات\n"
|
||||
"uid لتحديد معرف المستخدم الحالي.\n"
|
||||
"\n"
|
||||
"في كافة الأحوال، يجب أن يكون الكود البرمجي كوداً سليماً بلغة بايثون Python مع استخدام الإزاحة السليمة Indentation (متى تطلب الأمر ذلك).\n"
|
||||
"\n"
|
||||
"مثال:\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"
|
||||
"cr.execute(sql)\n"
|
||||
"result = cr.dictfetchall()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "تم اجتياز الاختبار بنجاح"
|
||||
242
odoo-bringout-oca-ocb-account_test/account_test/i18n/az.po
Normal file
242
odoo-bringout-oca-ocb-account_test/account_test/i18n/az.po
Normal file
|
|
@ -0,0 +1,242 @@
|
|||
# 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: 2018-09-21 13:17+0000\n"
|
||||
"PO-Revision-Date: 2018-08-24 09:15+0000\n"
|
||||
"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: az\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/bg.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/bg.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: bg\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
258
odoo-bringout-oca-ocb-account_test/account_test/i18n/bs.po
Normal file
258
odoo-bringout-oca-ocb-account_test/account_test/i18n/bs.po
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 "<strong>Naziv:</strong>"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "Account Test Report"
|
||||
msgstr "Izveštaj testa računa"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "Accounting Assert Test"
|
||||
msgstr "Test potvrde računovodstva"
|
||||
|
||||
#. 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 "Računovodstveni testovi uključeni"
|
||||
|
||||
#. 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 "Arhivirano"
|
||||
|
||||
#. 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 "Proverava da li su linije pokreta balansirane i imaju isti datum i period"
|
||||
|
||||
#. 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 "Proverava da plaćene/poravnate fakture nisu u 'Otvoren' stanju"
|
||||
|
||||
#. 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 "Pomoć za kod"
|
||||
|
||||
#. 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 "Kreiranje novog računovodstvenog testa"
|
||||
|
||||
#. 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 "Naziv:"
|
||||
|
||||
#. 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 "Pretraga računovodstvenog testa"
|
||||
|
||||
#. 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 "Test 1: Opšti balans"
|
||||
|
||||
#. module: account_test
|
||||
#: model:accounting.assert.test,name:account_test.account_test_03
|
||||
msgid "Test 3: Movement lines"
|
||||
msgstr "Test 3: Linije pokreta"
|
||||
|
||||
#. 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 "Test 5.2 : Poravnate fakture i računi platnih obaveza/potraživanja"
|
||||
|
||||
#. 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 "Test 7 : Završno stanje na bankovnim izvodima"
|
||||
|
||||
#. 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"
|
||||
279
odoo-bringout-oca-ocb-account_test/account_test/i18n/ca.po
Normal file
279
odoo-bringout-oca-ocb-account_test/account_test/i18n/ca.po
Normal file
|
|
@ -0,0 +1,279 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ca\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 "Accouting tests on"
|
||||
msgstr "Proves de comptabilitat en"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Actiu"
|
||||
|
||||
#. 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 succesful. 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 ""
|
||||
"El codi sempre ha d'establir una variable anomenada 'result' amb el resultat de la prova, que pot ser una llista o un diccionari. Si 'result és una llista buida, significa que la prova ha estat satisfactòria. En cas contrari, es tractarà de traduir i imprimir el que hi ha dintre de 'result'.\n"
|
||||
"\n"
|
||||
"Si el resultat de la prova és un diccionari, es pot establir una variable anomenada 'column_order' per elegir en quin ordre es volen imprimir el contingut de 'result'.\n"
|
||||
"\n"
|
||||
"En cas de necessitar-les, es poden utilitzar les següents variables al codi:\n"
|
||||
"* cr: cursor a la base de dades\n"
|
||||
"* uid: ID de l'usuari actual\n"
|
||||
"\n"
|
||||
"En qualsevol cas, el codi ha de ser sentencies Python legals amb correcta indentació (si fos necessari).\n"
|
||||
"\n"
|
||||
"Exemple:\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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "La prova ha estat superada satisfactòriament"
|
||||
249
odoo-bringout-oca-ocb-account_test/account_test/i18n/cs.po
Normal file
249
odoo-bringout-oca-ocb-account_test/account_test/i18n/cs.po
Normal file
|
|
@ -0,0 +1,249 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: cs\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
259
odoo-bringout-oca-ocb-account_test/account_test/i18n/da.po
Normal file
259
odoo-bringout-oca-ocb-account_test/account_test/i18n/da.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
|
||||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: da\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 "Accouting tests on"
|
||||
msgstr "Regnskabstest aktiveret"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. 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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Testen blev gennemført med succes"
|
||||
275
odoo-bringout-oca-ocb-account_test/account_test/i18n/de.po
Normal file
275
odoo-bringout-oca-ocb-account_test/account_test/i18n/de.po
Normal file
|
|
@ -0,0 +1,275 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: de\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 "Accouting tests on"
|
||||
msgstr "Plausibilitätsprüfung auf"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. 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 succesful. 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 ""
|
||||
"Code sollte immer eine Variable namens 'result' mit dem Ergebnis Ihres Tests erstellen. Das kann eine Liste oder\n"
|
||||
"ein Wörterbuch sein. Wenn 'result' eine leere Liste ist, war der Test erfolgreich. Ansonsten wird\n"
|
||||
"versucht zu übersetzen und zu drucken, was in 'result' steht.\n"
|
||||
"\n"
|
||||
"Wenn das Ergebnis Ihres Tests ein Wörterbuch ist, können Sie eine Variable namens 'column_order' erstellen, um auszuwählen\n"
|
||||
"in welcher Reihenfolge Sie die Inhalte von 'result' drucken wollen.\n"
|
||||
"\n"
|
||||
"Wenn Sie sie benötigen, können Sie auch die folgenden Variablen in Ihrem Code verwenden:\n"
|
||||
" *cr: cursor to the database\n"
|
||||
" *uid: ID of the current user\n"
|
||||
"\n"
|
||||
"In jeder Hinsicht muss der Code gültige Python-Anweisungen mit der richtigen Vertiefung haben (wenn nötig).\n"
|
||||
"\n"
|
||||
"Beispiel: \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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Die Prüfung war erfolgreich"
|
||||
253
odoo-bringout-oca-ocb-account_test/account_test/i18n/el.po
Normal file
253
odoo-bringout-oca-ocb-account_test/account_test/i18n/el.po
Normal file
|
|
@ -0,0 +1,253 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
251
odoo-bringout-oca-ocb-account_test/account_test/i18n/en_AU.po
Normal file
251
odoo-bringout-oca-ocb-account_test/account_test/i18n/en_AU.po
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
# 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: 2016-08-18 14:07+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.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report.xml,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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 "
|
||||
"succesful. 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: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
|
||||
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.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: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/account_test_report.py:49
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/en_GB.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/en_GB.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: en_GB\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
275
odoo-bringout-oca-ocb-account_test/account_test/i18n/es.po
Normal file
275
odoo-bringout-oca-ocb-account_test/account_test/i18n/es.po
Normal file
|
|
@ -0,0 +1,275 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es\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 "Accouting tests on"
|
||||
msgstr "Pruebas de contabilidad en"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Activo"
|
||||
|
||||
#. 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 succesful. 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 ""
|
||||
"El código siempre debe establecer una variable llamada 'result' con el resultado de la prueba, que puede ser una lista o un diccionario. Si 'result' es una lista vacía, significa que la prueba ha sido satisfactoria. En caso contrario, se tratará de traducir e imprimir lo que hay dentro de 'result'.\n"
|
||||
"\n"
|
||||
"Si el resultado de la prueba es un diccionario, se puede establecer una variable llamada 'column_order' para elegir en qué orden se quieren imprimir el contenido de 'result'.\n"
|
||||
"\n"
|
||||
"En caso de necesitarlas, se pueden usar las siguientes variables en el código:\n"
|
||||
" * cr: cursor a la base de datos\n"
|
||||
" * uid: id. del usuario actual\n"
|
||||
"\n"
|
||||
"En cualquier caso, el código debe ser sentencias Python legales con correcta indentación (si fuera necesario).\n"
|
||||
"\n"
|
||||
"Ejemplo: \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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "La prueba fue superada satisfactoriamente"
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_BO.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_BO.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_BO\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_CL.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_CL.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CL\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_CO.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_CO.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CO\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_CR.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_CR.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_CR\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_DO.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_DO.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_DO\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_EC.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_EC.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_EC\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
251
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_PA.po
Normal file
251
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_PA.po
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
# 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: 2016-08-18 14:07+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.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report.xml,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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 "
|
||||
"succesful. 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: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
|
||||
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.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: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/account_test_report.py:49
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_PE.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_PE.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PE\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_PY.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_PY.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_PY\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_VE.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/es_VE.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: es_VE\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
282
odoo-bringout-oca-ocb-account_test/account_test/i18n/et.po
Normal file
282
odoo-bringout-oca-ocb-account_test/account_test/i18n/et.po
Normal file
|
|
@ -0,0 +1,282 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: et\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 "Accouting tests on"
|
||||
msgstr "Raamatupidamise katsed"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiivne"
|
||||
|
||||
#. 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 succesful. 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 ""
|
||||
"Kood peaks alati määrama muutuja nimega 'tulemus' koos testi tulemustega, see võib olla nimekiri või ka seletus.\n"
|
||||
"If `result` is an empty list, it means that the test was succesful. 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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Test läbiti edukalt"
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/eu.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/eu.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: eu\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
248
odoo-bringout-oca-ocb-account_test/account_test/i18n/fa.po
Normal file
248
odoo-bringout-oca-ocb-account_test/account_test/i18n/fa.po
Normal file
|
|
@ -0,0 +1,248 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fa\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "آزمایش با موفقت قبول شد"
|
||||
253
odoo-bringout-oca-ocb-account_test/account_test/i18n/fi.po
Normal file
253
odoo-bringout-oca-ocb-account_test/account_test/i18n/fi.po
Normal file
|
|
@ -0,0 +1,253 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fi\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/fo.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/fo.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fo\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
275
odoo-bringout-oca-ocb-account_test/account_test/i18n/fr.po
Normal file
275
odoo-bringout-oca-ocb-account_test/account_test/i18n/fr.po
Normal file
|
|
@ -0,0 +1,275 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr\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 "Accouting tests on"
|
||||
msgstr "Comptabilité - Tests en cours"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Actif"
|
||||
|
||||
#. 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 succesful. 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 ""
|
||||
"Le code devrait définir une variable nommée 'result' avec pour valeur le résultat de votre test, et de type liste ou\n"
|
||||
"dictionnaire. Si 'result' est une liste vide, alors le test fut réussi. Autrement il essaiera\n"
|
||||
"de traduire et d'imprimer le contenu de 'result'.\n"
|
||||
"\n"
|
||||
"Si le 'result' de votre test est un dictionnaire, vous pouvez définir une variable nommée 'column_order' pour indiquer\n"
|
||||
"dans quel ordre vous voulez imprimer le contenu de 'result'.\n"
|
||||
"\n"
|
||||
"En cas de besoin, vous pouvez aussi utiliser les variables suivantes dans votre code:\n"
|
||||
" * cr: curseur de base de données\n"
|
||||
" * uid: ID de l'utilisateur actuel\n"
|
||||
"\n"
|
||||
"Dans tous les cas, le code doit être des déclarations python correctes avec une indentation correcte (si besoin).\n"
|
||||
"\n"
|
||||
"Exemple: \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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Le test a été effectué avec succès."
|
||||
251
odoo-bringout-oca-ocb-account_test/account_test/i18n/fr_BE.po
Normal file
251
odoo-bringout-oca-ocb-account_test/account_test/i18n/fr_BE.po
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
# 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: 2016-08-18 14:07+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.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report.xml,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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 "
|
||||
"succesful. 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: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
|
||||
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.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: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/account_test_report.py:49
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/fr_CA.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/fr_CA.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: fr_CA\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/gl.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/gl.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gl\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
247
odoo-bringout-oca-ocb-account_test/account_test/i18n/gu.po
Normal file
247
odoo-bringout-oca-ocb-account_test/account_test/i18n/gu.po
Normal file
|
|
@ -0,0 +1,247 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: gu\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
246
odoo-bringout-oca-ocb-account_test/account_test/i18n/he.po
Normal file
246
odoo-bringout-oca-ocb-account_test/account_test/i18n/he.po
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: he\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
252
odoo-bringout-oca-ocb-account_test/account_test/i18n/hr.po
Normal file
252
odoo-bringout-oca-ocb-account_test/account_test/i18n/hr.po
Normal file
|
|
@ -0,0 +1,252 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Test prošao uspješno"
|
||||
283
odoo-bringout-oca-ocb-account_test/account_test/i18n/hu.po
Normal file
283
odoo-bringout-oca-ocb-account_test/account_test/i18n/hu.po
Normal file
|
|
@ -0,0 +1,283 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hu\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 "Accouting tests on"
|
||||
msgstr "Könyvelési teszt be"
|
||||
|
||||
#. 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: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 succesful. 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 ""
|
||||
"A kód mindíg egy `eredmény` változóként legyen beállítva a teszte eredménye szerint, ami lehet egy lista vagy egy szótár. Ha az `eredmény` egy üres lista, az azt jelenti, hogy a teszt sikerrel járt. Egyéb esetben megpróbálja lefordítani és kinyomtatni az `eredmény` tartaláat.\n"
|
||||
"\n"
|
||||
"Ha a teszjánek az eredménye egy szótár, akkor a `column_order` váltózót beállíthatja, hogy milyen sorrendben szeretné kinyomtatni az `eredmény` tartalmát.\n"
|
||||
"\n"
|
||||
"Ha igényli, akkor a következő változókat is használhatja a kódjában:\n"
|
||||
" * cr: kurzor az adatbázisra\n"
|
||||
" * uid: a jelenlegi felhasználó ID azonosítója\n"
|
||||
"\n"
|
||||
"Bármely esetben, a kódnak legális python kifejezésnek kell lennie megfelelő azonosítással (ha szükséges).\n"
|
||||
"\n"
|
||||
"Példa: \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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "A teszt sikeressen lefutott"
|
||||
252
odoo-bringout-oca-ocb-account_test/account_test/i18n/id.po
Normal file
252
odoo-bringout-oca-ocb-account_test/account_test/i18n/id.po
Normal file
|
|
@ -0,0 +1,252 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: id\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.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 "Accouting tests on"
|
||||
msgstr "Tes akuntansi pada"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test_active
|
||||
msgid "Active"
|
||||
msgstr "Aktif"
|
||||
|
||||
#. 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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
msgstr "Klik untuk membuat Tes Akuntansi."
|
||||
|
||||
#. 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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Tes telah selesai"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr "accounting.assert.test"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr "report.account_test.report_accounttest"
|
||||
248
odoo-bringout-oca-ocb-account_test/account_test/i18n/is.po
Normal file
248
odoo-bringout-oca-ocb-account_test/account_test/i18n/is.po
Normal file
|
|
@ -0,0 +1,248 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: is\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
282
odoo-bringout-oca-ocb-account_test/account_test/i18n/it.po
Normal file
282
odoo-bringout-oca-ocb-account_test/account_test/i18n/it.po
Normal file
|
|
@ -0,0 +1,282 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: it\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 "Accouting tests on"
|
||||
msgstr "Test contabile su"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Attivo"
|
||||
|
||||
#. 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 succesful. 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 ""
|
||||
"Il codice dovrebbe sempre impostare una variabile nominata 'risultato' con l'esito del test, può essere una lista\n"
|
||||
"o un dizionario. Se 'risultato' è una lista vuota significa che il test ha avuto successo. Altrimenti cercherà di\n"
|
||||
"tradurre e stampare il contenuto dentro il 'risultato'.\n"
|
||||
"\n"
|
||||
"Se il risultato del vostro test è un dizionario potete impostare delle variabili chiamate \"column_order\" per schegliere in\n"
|
||||
"che ordine vorrete stamapre il \"risultato\" contenuto.\n"
|
||||
"\n"
|
||||
"Nel caso vi servano potrete ance accedere alle sequenti variabili all'interno del vosto codice:\n"
|
||||
" * cr: cursore del database\n"
|
||||
" * uid: ID dell'utente corrente\n"
|
||||
"\n"
|
||||
"In ogni caso il codice deve essere una dichiarazione corretta in python con la corretta indentazione (se necessaria).\n"
|
||||
"\n"
|
||||
"Esempio:\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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Il test è stato passato con successo"
|
||||
250
odoo-bringout-oca-ocb-account_test/account_test/i18n/ja.po
Normal file
250
odoo-bringout-oca-ocb-account_test/account_test/i18n/ja.po
Normal file
|
|
@ -0,0 +1,250 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ja\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/ka.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/ka.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ka\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/kab.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/kab.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: kab\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
250
odoo-bringout-oca-ocb-account_test/account_test/i18n/kk.po
Normal file
250
odoo-bringout-oca-ocb-account_test/account_test/i18n/kk.po
Normal file
|
|
@ -0,0 +1,250 @@
|
|||
# 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: 2016-08-18 14:07+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.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report.xml,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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 "
|
||||
"succesful. 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: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
|
||||
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.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: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/account_test_report.py:49
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
246
odoo-bringout-oca-ocb-account_test/account_test/i18n/km.po
Normal file
246
odoo-bringout-oca-ocb-account_test/account_test/i18n/km.po
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: km\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
271
odoo-bringout-oca-ocb-account_test/account_test/i18n/ko.po
Normal file
271
odoo-bringout-oca-ocb-account_test/account_test/i18n/ko.po
Normal file
|
|
@ -0,0 +1,271 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ko\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 "Accouting 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: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 succesful. 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 ""
|
||||
"항상 `result` 변수는 테스트 결과값으로 설정해야 합니다. 이는 목록 또는\n"
|
||||
"사전이 될 수 있습니다. `result`가 빈 목록일 경우, 테스트가 성공했다는 의미입니다. 그렇지 않을 경우에는\n"
|
||||
"‘result’의 내용을 번역해서 인쇄하려고 시도합니다.\n"
|
||||
"\n"
|
||||
"테스트 결과가 사전일 경우, `column_order` 변수를 설정해서\n"
|
||||
"‘result’ 내용을 인쇄할 순서를 지정할 수 있습니다.\n"
|
||||
"\n"
|
||||
"필요한 경우, 다음 변수를 코드에 사용할 수 있습니다.\n"
|
||||
" * cr: 데이터베이스에 대한 커서\n"
|
||||
" * uid: 현재 사용자 ID\n"
|
||||
"\n"
|
||||
"코드는 언제나 적정한 파이썬 구문을 사용하고 올바르게 들여쓰기를 해야 합니다(필요한 경우).\n"
|
||||
"\n"
|
||||
"예: \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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "테스트를 통과했습니다."
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/lo.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/lo.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lo\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
251
odoo-bringout-oca-ocb-account_test/account_test/i18n/lt.po
Normal file
251
odoo-bringout-oca-ocb-account_test/account_test/i18n/lt.po
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lt\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/lv.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/lv.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: lv\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/mk.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/mk.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mk\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
251
odoo-bringout-oca-ocb-account_test/account_test/i18n/ml_IN.po
Normal file
251
odoo-bringout-oca-ocb-account_test/account_test/i18n/ml_IN.po
Normal file
|
|
@ -0,0 +1,251 @@
|
|||
# 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: 2016-08-18 14:07+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.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report.xml,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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 "
|
||||
"succesful. 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: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
|
||||
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.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: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/account_test_report.py:49
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
279
odoo-bringout-oca-ocb-account_test/account_test/i18n/mn.po
Normal file
279
odoo-bringout-oca-ocb-account_test/account_test/i18n/mn.po
Normal file
|
|
@ -0,0 +1,279 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: mn\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 "Accouting 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: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 succesful. 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 ""
|
||||
"Код нь үргэлж `result` нэртэй хувьсагчид жагсаалт эсвэл толь бичиг төрлийн таны тестийн үр \n"
|
||||
"дүнг оноох ёстой. Хэрэв `result` нь хоосон жагсаалт байвал тест амжилттай болсон гэсэн үг. \n"
|
||||
"Үгүй бол `result` доторхийг орчуулж хэвлэх гэж оролдоно.\n"
|
||||
"\n"
|
||||
"Хэрэв таны тестийн хариу толь бичиг бол `result`-н агуулгыг хэвлэх дарааллыг сонгохын тулд \n"
|
||||
"`column_order` хувьсагчид утга оноох боломжтой.\n"
|
||||
"\n"
|
||||
"Шаардлагатай бол мөн дараах хувьсагчуудыг ашиглах боломжтой:\n"
|
||||
" * cr: өгөгдлийн сан руу заах курсор\n"
|
||||
" * uid: идэвхитэй хэрэглэгчийн ID\n"
|
||||
"\n"
|
||||
"Ямар ч байсан, код нь (шаардлагатай бол) зөв догол мөртэй албан ёсны python илэрхийлэл \n"
|
||||
"байх ёстой.\n"
|
||||
"\n"
|
||||
"Жишээ: \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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Энэ тэст амжилттай давлаа"
|
||||
249
odoo-bringout-oca-ocb-account_test/account_test/i18n/nb.po
Normal file
249
odoo-bringout-oca-ocb-account_test/account_test/i18n/nb.po
Normal file
|
|
@ -0,0 +1,249 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nb\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 "Accouting tests on"
|
||||
msgstr "Regnskapsføring testes på."
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktiv"
|
||||
|
||||
#. 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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Testen ble bestått"
|
||||
242
odoo-bringout-oca-ocb-account_test/account_test/i18n/ne.po
Normal file
242
odoo-bringout-oca-ocb-account_test/account_test/i18n/ne.po
Normal file
|
|
@ -0,0 +1,242 @@
|
|||
# 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: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ne\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
277
odoo-bringout-oca-ocb-account_test/account_test/i18n/nl.po
Normal file
277
odoo-bringout-oca-ocb-account_test/account_test/i18n/nl.po
Normal file
|
|
@ -0,0 +1,277 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: nl\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 "Accouting tests on"
|
||||
msgstr "Financiële test op"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Actief"
|
||||
|
||||
#. 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 succesful. 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 ""
|
||||
"De code dient altijd een variabele in te stellen, met de naam 'result'. deze bevat het resultaat van de test. Dit kan een lijst of een woordenboek zijn. Indien 'result' een lege lijst is, betekend het dat de test succesvol was. Anders zal het proberen het resultaat te vertalen en af te drukken.\n"
|
||||
"\n"
|
||||
"Als het resultaat van uw test een woordenboek is, kunt u een variabele met de naam 'column_order' instellen, om in te stellen in welke volgorde u de inhoud van 'result' wilt afdrukken.\n"
|
||||
"\n"
|
||||
"Indien u ze nodig heeft kunt u de volgende variabelen in uw code gebruiken:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"\n"
|
||||
"In ieder geval moet de code correcte python statements bevatten met de juiste inspringingen (indien nodig).\n"
|
||||
"Voorbeeld: \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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "De test is geslaagd"
|
||||
283
odoo-bringout-oca-ocb-account_test/account_test/i18n/pl.po
Normal file
283
odoo-bringout-oca-ocb-account_test/account_test/i18n/pl.po
Normal file
|
|
@ -0,0 +1,283 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pl\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 "Accouting tests on"
|
||||
msgstr "Testy rachunkowe włączone"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktywne"
|
||||
|
||||
#. 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 succesful. 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 ""
|
||||
"Kod powinien zawsze zwracać zmienną zwaną `result` z rezultatem przeprowadzonego testu, który\n"
|
||||
"może być typu list lub a dictionary. Jeśli `result` jest pustą listą, to oznacza że test był zakończony\n"
|
||||
"sukcesem. W przeciwnym wypadku nastąpi próba tłumaczenia i wydruku zawartości 'result'.\n"
|
||||
"\n"
|
||||
"Jeśli rezultatem jest zmienna typu a dictionary, możesz ustawić zmienną nazywaną `column_order`\n"
|
||||
"żeby wybrać w jakiej kolejności wydrukować zawartość `result`.\n"
|
||||
"\n"
|
||||
"Jeśli będziesz potrzebować, możesz również użyć w kodzie zmienne:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"W jakikolwiek sposób kod musi być prawdziwymi wyrażeniami języka python z odpowiednimi wcięciami (tam gdzie wymagane).\n"
|
||||
"\n"
|
||||
"Przykład: \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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Test został zdany"
|
||||
283
odoo-bringout-oca-ocb-account_test/account_test/i18n/pt.po
Normal file
283
odoo-bringout-oca-ocb-account_test/account_test/i18n/pt.po
Normal file
|
|
@ -0,0 +1,283 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt\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 "Accouting tests on"
|
||||
msgstr "Testes de Contabilidade em"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. 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 succesful. 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 ""
|
||||
"Código deve sempre definir uma variável chamada `result` com o resultado de seu teste, que \n"
|
||||
"pode ser uma lista ou um dicionário. Se `result` é uma lista vazia, significa que o teste foi bem \n"
|
||||
"sucedido. Caso contrário, irá tentar traduzir e imprimir o que está dentro de `result`.\n"
|
||||
"\n"
|
||||
"Se o resultado do seu teste é um dicionário, pode definir uma variável chamada `column_order` \n"
|
||||
"para escolher em que ordem deseja imprimir o conteúdo de `result`.\n"
|
||||
"\n"
|
||||
"Se precisar deles, também pode usar as seguintes variáveis no seu código:\n"
|
||||
" * cr: cursor para a base de dados\n"
|
||||
" * uid: ID do utilizador atual\n"
|
||||
"\n"
|
||||
"Em todas as maneiras, o código deve ser comandos Python com recuo correto ( se necessário).\n"
|
||||
"\n"
|
||||
"Exemplo: \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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "O teste passou com êxito"
|
||||
281
odoo-bringout-oca-ocb-account_test/account_test/i18n/pt_BR.po
Normal file
281
odoo-bringout-oca-ocb-account_test/account_test/i18n/pt_BR.po
Normal file
|
|
@ -0,0 +1,281 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_BR\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 "Accouting tests on"
|
||||
msgstr "Testes Contábeis Ativos"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Ativo"
|
||||
|
||||
#. 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 succesful. 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 ""
|
||||
"O Código deve sempre definir uma variável chamada `resultado` com o resultado do seu teste, que pode ser uma lista ou\n"
|
||||
"um dicionário. Se `resultado` for uma lista vazia, isso significa que o teste foi bem sucedido. Caso contrário, será\n"
|
||||
"tentar traduzir e imprimir o que está dentro `resultado` .\n"
|
||||
"\n"
|
||||
"Se o resultado do seu teste é um dicionário, você pode definir uma variável chamada `column_order` para escolher em\n"
|
||||
"que ordem você deseja imprimir o conteúdo do `resultado`.\n"
|
||||
"\n"
|
||||
"Se você precisar deles, você também pode usar as seguintes variáveis em seu código:\n"
|
||||
" * cr: cursor para o banco de dados\n"
|
||||
" * uid: ID do usuário atual\n"
|
||||
"\n"
|
||||
"Em todas as maneiras, o código deve ser declarações Python legal com recuo correto (se necessário).\n"
|
||||
"\n"
|
||||
"exemplo:\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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "O teste passou com sucesso"
|
||||
275
odoo-bringout-oca-ocb-account_test/account_test/i18n/ro.po
Normal file
275
odoo-bringout-oca-ocb-account_test/account_test/i18n/ro.po
Normal file
|
|
@ -0,0 +1,275 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ro\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 "Accouting tests on"
|
||||
msgstr "Teste contabile in"
|
||||
|
||||
#. 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: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 succesful. 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 ""
|
||||
"Codul ar trebui sa configureze o variabila numita `result` cu rezultatul testului dumneavoastră, care poate fi o lista sau un dicționar. Dacă `result` este o lista goala, înseamnă ca testul a avut succes. In caz contrar, va încerca sa traducă și sa tipărească ceea ce se afla în `result`.\n"
|
||||
"\n"
|
||||
"Dacă rezultatul testului dumneavoastră este un dicționar, puteți configura o variabila numita`column_order` pentru a alege ordinea in care doriți tipărirea conținutul din `result`.\n"
|
||||
"\n"
|
||||
"Dacă o sa aveți nevoie de ele, puteți utiliza de asemenea următoarele variabile in codul dumneavoastră:\n"
|
||||
" * cr: cursorul in baza de date\n"
|
||||
" * uid: ID-ul utilizatorului actual\n"
|
||||
"\n"
|
||||
"Oricum, codul trebuie sa fie declarații python legale cu indentare corectă (daca este necesara).\n"
|
||||
"\n"
|
||||
"Exemplu: \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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Testul a fost trecut cu succes"
|
||||
278
odoo-bringout-oca-ocb-account_test/account_test/i18n/ru.po
Normal file
278
odoo-bringout-oca-ocb-account_test/account_test/i18n/ru.po
Normal file
|
|
@ -0,0 +1,278 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ru\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 "Accouting 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: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 succesful. 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 ""
|
||||
"Код должен всегда задать переменную с именем `результат` с результатом теста, это может быть список или словарь. Если результатом является пустой список, то это означает, что тест прошел успешно. В противном случае он будет пытаться перевести и напечатать то, что внутри `результат`. \n"
|
||||
"\n"
|
||||
"Если результат вашего теста-это словарь, вы можете установить переменную `column_order`, чтобы выбрать в\n"
|
||||
"какой порядок вы хотите напечатать \" результат` контента.\n"
|
||||
"\n"
|
||||
"Если вы нуждаетесь в них, вы также можете использовать следующие переменные в коде:\n"
|
||||
"* cr: cursor to the database\n"
|
||||
"* uid: ID текущего пользователя\n"
|
||||
"\n"
|
||||
"Код питона должен быть корректным с правильными отступами (если требуется).\n"
|
||||
"\n"
|
||||
"Пример: \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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Проверка прошла успешно"
|
||||
276
odoo-bringout-oca-ocb-account_test/account_test/i18n/sk.po
Normal file
276
odoo-bringout-oca-ocb-account_test/account_test/i18n/sk.po
Normal file
|
|
@ -0,0 +1,276 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sk\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 "Accouting tests on"
|
||||
msgstr "Účtovné testy na"
|
||||
|
||||
#. 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: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 succesful. 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 ""
|
||||
"Kód by mal vždy nastaviť premennú pomenovanú 'výsledok' s výsledkom vášho testu, ktorý môźe byť zoznam alebo\n"
|
||||
"slovník. Ak je 'výsledok' prázdny zoznam, znamená to že test bol úspešný. Inak sa bude\n"
|
||||
"snažiť peložiť vytlačiť obsah 'výsledku'.\n"
|
||||
"\n"
|
||||
"Ak je výsleodk vášho testu slovník, môžete nastaviť premennú `column_order` pre výber\n"
|
||||
"poradia v akom chcete vytlačiť obsah 'výsledku'.\n"
|
||||
"\n"
|
||||
"Ak by ste ich potrebovali, môžete použiť nasledujúce premenné vo vašom kóde:\n"
|
||||
"* cr: kurzor do databázy\n"
|
||||
"* uid: ID aktuálneho používateľa\n"
|
||||
"\n"
|
||||
"V akomkoľvek prípade, kód musí byť právna python závierka so správnou zarážkou (v prípade potreby).\n"
|
||||
"\n"
|
||||
"Príklad: \n"
|
||||
"sql = '''VYBRAŤ id, name, ref, date\n"
|
||||
"Z account_move_line \n"
|
||||
"KDE account_id V (VYBRAŤ id Z account_account KDE type = 'view')\n"
|
||||
"'''\n"
|
||||
"cr.execute(sql)\n"
|
||||
"result = cr.dictfetchall()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Test bol prejdený úspešne"
|
||||
242
odoo-bringout-oca-ocb-account_test/account_test/i18n/sl.po
Normal file
242
odoo-bringout-oca-ocb-account_test/account_test/i18n/sl.po
Normal file
|
|
@ -0,0 +1,242 @@
|
|||
# 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: 2017-09-20 09:53+0000\n"
|
||||
"PO-Revision-Date: 2017-09-20 09:53+0000\n"
|
||||
"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sl\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/sq.po
Normal file
245
odoo-bringout-oca-ocb-account_test/account_test/i18n/sq.po
Normal file
|
|
@ -0,0 +1,245 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sq\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
246
odoo-bringout-oca-ocb-account_test/account_test/i18n/sr.po
Normal file
246
odoo-bringout-oca-ocb-account_test/account_test/i18n/sr.po
Normal file
|
|
@ -0,0 +1,246 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
242
odoo-bringout-oca-ocb-account_test/account_test/i18n/sr@latin.po
Normal file
242
odoo-bringout-oca-ocb-account_test/account_test/i18n/sr@latin.po
Normal file
|
|
@ -0,0 +1,242 @@
|
|||
# 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: 2017-09-20 09:53+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sr@latin\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.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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 succesful. 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: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
|
||||
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.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: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:52
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr ""
|
||||
270
odoo-bringout-oca-ocb-account_test/account_test/i18n/sv.po
Normal file
270
odoo-bringout-oca-ocb-account_test/account_test/i18n/sv.po
Normal file
|
|
@ -0,0 +1,270 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sv\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 "Accouting 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: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 succesful. 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 ""
|
||||
"Kod ska alltid ställa en variabel med namnet `resultat` med resultatet av ditt test, kan det vara en lista eller\n"
|
||||
"en ordbok. Om `resultat` är en tom lista, betyder det att testet var lyckat. Annars kommer\n"
|
||||
"försöka översätta och skriva ut vad som finns i `resultat`.\n"
|
||||
"\n"
|
||||
"Om resultatet av testet är en ordbok kan du ställa in en variabel med namnet `column_order` för att välja in\n"
|
||||
"vilken ordning du vill skriva ut `resultat` s innehåll.\n"
|
||||
"\n"
|
||||
"Om du behöver dem, kan du även använda följande variabler i koden:\n"
|
||||
" * Cr: markören till databasen\n"
|
||||
" * Uid: ID för den aktuella användaren\n"
|
||||
"\n"
|
||||
"På något sätt måste koden vara lagliga python uttalanden med rätt indrag (om det behövs).\n"
|
||||
"\n"
|
||||
"Exempel:\n"
|
||||
" sql ='' 'SELECT id, namn, ref, datum\n"
|
||||
" FRÅN account_move_line\n"
|
||||
" VAR konto-IN (SELECT id FROM account_account WHERE typ = \"Visa\")\n"
|
||||
" '' '\n"
|
||||
" cr.execute (SQL)\n"
|
||||
" resultat = cr.dictfetchall ()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
255
odoo-bringout-oca-ocb-account_test/account_test/i18n/ta.po
Normal file
255
odoo-bringout-oca-ocb-account_test/account_test/i18n/ta.po
Normal file
|
|
@ -0,0 +1,255 @@
|
|||
# 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: 2016-08-18 14:07+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.actions.act_window,name:account_test.action_accounting_assert
|
||||
#: model:ir.actions.report.xml,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 "Accouting 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: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.actions.act_window,help:account_test.action_accounting_assert
|
||||
msgid "Click to create Accounting Test."
|
||||
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 "
|
||||
"succesful. 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: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
|
||||
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.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: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/account_test_report.py:49
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_accounting_assert_test
|
||||
msgid "accounting.assert.test"
|
||||
msgstr "accounting.assert.test"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model,name:account_test.model_report_account_test_report_accounttest
|
||||
msgid "report.account_test.report_accounttest"
|
||||
msgstr "report.account_test.report_accounttest"
|
||||
250
odoo-bringout-oca-ocb-account_test/account_test/i18n/th.po
Normal file
250
odoo-bringout-oca-ocb-account_test/account_test/i18n/th.po
Normal file
|
|
@ -0,0 +1,250 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: th\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
282
odoo-bringout-oca-ocb-account_test/account_test/i18n/tr.po
Normal file
282
odoo-bringout-oca-ocb-account_test/account_test/i18n/tr.po
Normal file
|
|
@ -0,0 +1,282 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: tr\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 "Accouting tests on"
|
||||
msgstr "Bunun için Muhasebe testi"
|
||||
|
||||
#. module: account_test
|
||||
#: model:ir.model.fields,field_description:account_test.field_accounting_assert_test__active
|
||||
msgid "Active"
|
||||
msgstr "Aktif"
|
||||
|
||||
#. 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 succesful. 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 ""
|
||||
"Kod her zaman, testinizin sonucunda ‘sonuç’ olarak adlandırılan bir değişken oluşturmalıdır, bu bir\n"
|
||||
"liste ya da bir sözlük olabilir. Eğer ‘sonuç’ boş bir listeyse, bu testin başarılı olduğu anlamındadır. Aksi\n"
|
||||
"takdirde ‘sonuç’ içinde ne varsa çevirisini yapın ve yazdırın.\n"
|
||||
"\n"
|
||||
"Testinizin sonucu bir sözlük ise, ‘sonuç’ içeriğini hangi sırada yazdırmayı seçmeniz için ‘sütun_sırası’\n"
|
||||
"adıyla bir değişken oluşturmalısınız.\n"
|
||||
"\n"
|
||||
"Gerekirse kodunuza aşağıdaki değişkenleri de ekleyebilirsiniz:\n"
|
||||
" * cr: veritabanı imleçi\n"
|
||||
" * uid: geçerli kullanıcı ID\n"
|
||||
"\n"
|
||||
"Kod her durumda doğru satırbaşı girintisi ile (gerekirse) geçerli piton komutları olmalı.\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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Testler başarıyla geçildi"
|
||||
281
odoo-bringout-oca-ocb-account_test/account_test/i18n/uk.po
Normal file
281
odoo-bringout-oca-ocb-account_test/account_test/i18n/uk.po
Normal file
|
|
@ -0,0 +1,281 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: uk\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 "Accouting 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: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 succesful. 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 ""
|
||||
"Код завжди повинен встановлювати змінну з назвою `результат` з результатом вашого тесту, що може бути списком або\n"
|
||||
"словником. Якщо у `результаті` порожній рядок, це означає, що тест був успішним. В іншому випадку \n"
|
||||
"він намагатиметься перекласти і роздруковувати те, що знаходиться всередині `результату`.\n"
|
||||
"\n"
|
||||
"Якщо результат вашого тесту це словник, ви можете встановити змінну з назвою `колонка_порядку`, \n"
|
||||
"який порядок ви хочете роздрукувати у вмісті `результат`.\n"
|
||||
"\n"
|
||||
"Якщо вам це потрібно, ви також можете використовувати наступні змінні у вашому коді:\n"
|
||||
" * cr: курсор до бази даних\n"
|
||||
" * uid: ID поточного користувача\n"
|
||||
"\n"
|
||||
"Будь-якими способами цей код повинен бути легальною заявою python з правильним відступом (при необхідності).\n"
|
||||
"\n"
|
||||
"Наприклад: \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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "Тест успішно пройдено"
|
||||
247
odoo-bringout-oca-ocb-account_test/account_test/i18n/vi.po
Normal file
247
odoo-bringout-oca-ocb-account_test/account_test/i18n/vi.po
Normal file
|
|
@ -0,0 +1,247 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: vi\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 "Accouting 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: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 succesful. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr ""
|
||||
267
odoo-bringout-oca-ocb-account_test/account_test/i18n/zh_CN.po
Normal file
267
odoo-bringout-oca-ocb-account_test/account_test/i18n/zh_CN.po
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_CN\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 "Accouting 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: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 succesful. 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 ""
|
||||
"代码应该总是设置一个名为\"result\"变量来保存你的测试结果,这可以是列表或字典。 如果\"result\"变量是一个空列表,这意味着测试是成功的。 否则,它会尝试翻译和打印\"result\"变量中的内容.\n"
|
||||
"\n"
|
||||
"如果输出的结果在列表或字典中你可以在`result`的内容中设置一个名为`column_order`的变量。\n"
|
||||
"\n"
|
||||
"若您需要它们,您同样可以使用以列变量至你的代码中:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"时刻留意的事是,所编写的代码均需要在python标准语法范围内 (若您需要的话)。\n"
|
||||
"\n"
|
||||
"例如::\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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "测试通过"
|
||||
267
odoo-bringout-oca-ocb-account_test/account_test/i18n/zh_TW.po
Normal file
267
odoo-bringout-oca-ocb-account_test/account_test/i18n/zh_TW.po
Normal file
|
|
@ -0,0 +1,267 @@
|
|||
# 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: 2018-09-21 13:17+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"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: zh_TW\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 "Accouting 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: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 succesful. 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 ""
|
||||
"代碼應該總是設置一個名為\"result\"變量來保存您的測試結果,這可以是列表或字典。 如果\"result\"變量是一個空列表,這意味著測試是成功的。 否則,它會嘗試翻譯和列印\"result\"變量中的內容.\n"
|
||||
"\n"
|
||||
"如果輸出的結果在列表或字典中您可以在`result`的內容中設定一個名為`column_order`的變量。\n"
|
||||
"\n"
|
||||
"若您需要它們,您同樣可以使用以列變量至您的代碼中:\n"
|
||||
" * cr: cursor to the database\n"
|
||||
" * uid: ID of the current user\n"
|
||||
"\n"
|
||||
"時刻留意的事是,所編寫的代碼均需要在python標準語法範圍內 (若您需要的話)。\n"
|
||||
"\n"
|
||||
"例如::\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()"
|
||||
|
||||
#. 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
|
||||
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.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: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:53
|
||||
#, python-format
|
||||
msgid "The test was passed successfully"
|
||||
msgstr "測試通過"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import accounting_assert_test
|
||||
|
|
@ -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)
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import report_account_test
|
||||
|
|
@ -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>
|
||||
|
|
@ -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)
|
||||
'_': lambda *a, **kw: _(*a, **kw), # pylint: disable=E8502
|
||||
}
|
||||
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
|
||||
}
|
||||
|
|
@ -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-esc="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-esc="test_result"/>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</t>
|
||||
</t>
|
||||
</template>
|
||||
</odoo>
|
||||
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
32
odoo-bringout-oca-ocb-account_test/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-account_test/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Account_test Module - account_test
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
3
odoo-bringout-oca-ocb-account_test/doc/CONFIGURATION.md
Normal file
3
odoo-bringout-oca-ocb-account_test/doc/CONFIGURATION.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for account_test. Configure related models, access rights, and options as needed.
|
||||
3
odoo-bringout-oca-ocb-account_test/doc/CONTROLLERS.md
Normal file
3
odoo-bringout-oca-ocb-account_test/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
5
odoo-bringout-oca-ocb-account_test/doc/DEPENDENCIES.md
Normal file
5
odoo-bringout-oca-ocb-account_test/doc/DEPENDENCIES.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [account](../../odoo-bringout-oca-ocb-account)
|
||||
4
odoo-bringout-oca-ocb-account_test/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-account_test/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon account_test or install in UI.
|
||||
7
odoo-bringout-oca-ocb-account_test/doc/INSTALL.md
Normal file
7
odoo-bringout-oca-ocb-account_test/doc/INSTALL.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Install
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-account_test"
|
||||
# or
|
||||
uv pip install odoo-bringout-oca-ocb-account_test"
|
||||
```
|
||||
12
odoo-bringout-oca-ocb-account_test/doc/MODELS.md
Normal file
12
odoo-bringout-oca-ocb-account_test/doc/MODELS.md
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
# Models
|
||||
|
||||
Detected core models and extensions in account_test.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class accounting_assert_test
|
||||
```
|
||||
|
||||
Notes
|
||||
- Classes show model technical names; fields omitted for brevity.
|
||||
- Items listed under _inherit are extensions of existing models.
|
||||
6
odoo-bringout-oca-ocb-account_test/doc/OVERVIEW.md
Normal file
6
odoo-bringout-oca-ocb-account_test/doc/OVERVIEW.md
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# Overview
|
||||
|
||||
Packaged Odoo addon: account_test. Provides features documented in upstream Odoo 16 under this addon.
|
||||
|
||||
- Source: OCA/OCB 16.0, addon account_test
|
||||
- License: LGPL-3
|
||||
28
odoo-bringout-oca-ocb-account_test/doc/REPORTS.md
Normal file
28
odoo-bringout-oca-ocb-account_test/doc/REPORTS.md
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
# Reports
|
||||
|
||||
Report definitions and templates in account_test.
|
||||
|
||||
```mermaid
|
||||
classDiagram
|
||||
class ReportAssertAccount
|
||||
AbstractModel <|-- ReportAssertAccount
|
||||
```
|
||||
|
||||
## Available Reports
|
||||
|
||||
### PDF/Document Reports
|
||||
- **Accounting Tests** (PDF/Print)
|
||||
|
||||
|
||||
## Report Files
|
||||
|
||||
- **accounting_assert_test_reports.xml** (XML template/definition)
|
||||
- **__init__.py** (Python logic)
|
||||
- **report_account_test.py** (Python logic)
|
||||
- **report_account_test_templates.xml** (XML template/definition)
|
||||
|
||||
## Notes
|
||||
- Named reports above are accessible through Odoo's reporting menu
|
||||
- Python files define report logic and data processing
|
||||
- XML files contain report templates, definitions, and formatting
|
||||
- Reports are integrated with Odoo's printing and email systems
|
||||
34
odoo-bringout-oca-ocb-account_test/doc/SECURITY.md
Normal file
34
odoo-bringout-oca-ocb-account_test/doc/SECURITY.md
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# Security
|
||||
|
||||
Access control and security definitions in account_test.
|
||||
|
||||
## Access Control Lists (ACLs)
|
||||
|
||||
Model access permissions defined in:
|
||||
- **[ir.model.access.csv](../account_test/security/ir.model.access.csv)**
|
||||
- 2 model access rules
|
||||
|
||||
## Record Rules
|
||||
|
||||
Row-level security rules defined in:
|
||||
|
||||
```mermaid
|
||||
graph TB
|
||||
subgraph "Security Layers"
|
||||
A[Users] --> B[Groups]
|
||||
B --> C[Access Control Lists]
|
||||
C --> D[Models]
|
||||
B --> E[Record Rules]
|
||||
E --> F[Individual Records]
|
||||
end
|
||||
```
|
||||
|
||||
Security files overview:
|
||||
- **[ir.model.access.csv](../account_test/security/ir.model.access.csv)**
|
||||
- Model access permissions (CRUD rights)
|
||||
|
||||
Notes
|
||||
- Access Control Lists define which groups can access which models
|
||||
- Record Rules provide row-level security (filter records by user/group)
|
||||
- Security groups organize users and define permission sets
|
||||
- All security is enforced at the ORM level by Odoo
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
# Troubleshooting
|
||||
|
||||
- Ensure Python and Odoo environment matches repo guidance.
|
||||
- Check database connectivity and logs if startup fails.
|
||||
- Validate that dependent addons listed in DEPENDENCIES.md are installed.
|
||||
7
odoo-bringout-oca-ocb-account_test/doc/USAGE.md
Normal file
7
odoo-bringout-oca-ocb-account_test/doc/USAGE.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Usage
|
||||
|
||||
Start Odoo including this addon (from repo root):
|
||||
|
||||
```bash
|
||||
python3 scripts/nix_odoo_web_server.py --db-name mydb --addon account_test
|
||||
```
|
||||
3
odoo-bringout-oca-ocb-account_test/doc/WIZARDS.md
Normal file
3
odoo-bringout-oca-ocb-account_test/doc/WIZARDS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Wizards
|
||||
|
||||
This module does not include UI wizards.
|
||||
42
odoo-bringout-oca-ocb-account_test/pyproject.toml
Normal file
42
odoo-bringout-oca-ocb-account_test/pyproject.toml
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
[project]
|
||||
name = "odoo-bringout-oca-ocb-account_test"
|
||||
version = "16.0.0"
|
||||
description = "Accounting Consistency Tests - Odoo addon"
|
||||
authors = [
|
||||
{ name = "Ernad Husremovic", email = "hernad@bring.out.ba" }
|
||||
]
|
||||
dependencies = [
|
||||
"odoo-bringout-oca-ocb-account>=16.0.0",
|
||||
"requests>=2.25.1"
|
||||
]
|
||||
readme = "README.md"
|
||||
requires-python = ">= 3.11"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Topic :: Office/Business",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/bringout/0"
|
||||
repository = "https://github.com/bringout/0"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.metadata]
|
||||
allow-direct-references = true
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["account_test"]
|
||||
|
||||
[tool.rye]
|
||||
managed = true
|
||||
dev-dependencies = [
|
||||
"pytest>=8.4.1",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue