mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
[REF] account_check_deposit : Port to new API
* Move description from __openerp__.py to README.rst * Move files in sub-directories * FIX access rights issue when user was not accounting manager OCA Transbot updated translations from Transifex
This commit is contained in:
committed by
Víctor Martínez
parent
f46d74fc8b
commit
3468599430
69
account_check_deposit/README.rst
Normal file
69
account_check_deposit/README.rst
Normal file
@@ -0,0 +1,69 @@
|
||||
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
|
||||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
|
||||
:alt: License: AGPL-3
|
||||
|
||||
=============
|
||||
Check Deposit
|
||||
=============
|
||||
|
||||
This module allows you to easily manage check deposits : you can select all
|
||||
the checks you received and create a global deposit for the
|
||||
selected checks. This module supports multi-currency ; each deposit has a currency
|
||||
and all the checks of the deposit must have the same currency
|
||||
(so, if you have checks in EUR and checks in USD, you must create 2 deposits :
|
||||
one in EUR and one in USD).
|
||||
|
||||
Configuration
|
||||
=============
|
||||
|
||||
A journal named *Check Received* is automatically created. It will be available as a payment method in Odoo. On this journal, you must configure the *Default Debit Account* and *Defaut Credit Account* ; this is the account via which the amounts of checks will transit between the reception of a check from a customer and the validation of the check deposit in Odoo.
|
||||
|
||||
On the company form view, you should configure the *Account for Check Deposits* ; this is the account via which the amounts of checks will transit between the validation of the check deposit in Odoo and the credit on the bank account.
|
||||
|
||||
Usage
|
||||
=====
|
||||
|
||||
When you receive a check that pays a customer invoice, you can go to that invoice and click on the button *Register Payment* and select the *Check Received* journal as *Payment Method*.
|
||||
|
||||
When you want to deposit checks to the bank, go to the menu *Accounting > Bank and Cash > Check Deposit*, create a new check deposit and set the journal *Checks Received* and select the bank account on which you want to credit the checks. Then click on *Add an item* to select the checks you want to deposit at the bank. Eventually, validate the deposit and print the report (you probably want to customize this report).
|
||||
|
||||
.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
|
||||
:alt: Try me on Runbot
|
||||
:target: https://runbot.odoo-community.org/runbot/92/8.0
|
||||
|
||||
For further information, please visit:
|
||||
|
||||
* https://www.odoo.com/forum/help-1
|
||||
|
||||
Bug Tracker
|
||||
===========
|
||||
|
||||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-financial-tools/issues>`_.
|
||||
In case of trouble, please check there if your issue has already been reported.
|
||||
If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
|
||||
`here <https://github.com/OCA/account-financial-tools/issues/new?body=module:%20account_check_deposit%0Aversion:%208.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Contributors
|
||||
------------
|
||||
|
||||
* Benoît GUILLOT <benoit.guillot@akretion.com>
|
||||
* Chafique DELLI <chafique.delli@akretion.com>
|
||||
* Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
|
||||
Maintainer
|
||||
----------
|
||||
|
||||
.. image:: http://odoo-community.org/logo.png
|
||||
:alt: Odoo Community Association
|
||||
:target: http://odoo-community.org
|
||||
|
||||
This module is maintained by the OCA.
|
||||
|
||||
OCA, or the Odoo Community Association, is a nonprofit organization whose
|
||||
mission is to support the collaborative development of Odoo features and
|
||||
promote its widespread use.
|
||||
|
||||
To contribute to this module, please visit http://odoo-community.org.
|
||||
@@ -1,22 +1,3 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
###############################################################################
|
||||
#
|
||||
# account_check_deposit for Odoo/OpenERP
|
||||
# Copyright (C) 2012-2015 Akretion (http://www.akretion.com/)
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
###############################################################################
|
||||
|
||||
from . import account_deposit
|
||||
from . import models
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
###############################################################################
|
||||
#
|
||||
# account_check_deposit for Odoo/OpenERP
|
||||
# account_check_deposit for Odoo
|
||||
# Copyright (C) 2012-2015 Akretion (http://www.akretion.com/)
|
||||
# @author: Benoît GUILLOT <benoit.guillot@akretion.com>
|
||||
# @author: Chafique DELLI <chafique.delli@akretion.com>
|
||||
@@ -28,18 +28,6 @@
|
||||
'category': 'Accounting & Finance',
|
||||
'license': 'AGPL-3',
|
||||
'summary': 'Manage deposit of checks to the bank',
|
||||
'description': """
|
||||
Account Check Deposit
|
||||
=====================
|
||||
This module allows you to easily manage check deposits : you can select all
|
||||
the checks you received as payments and create a global deposit for the
|
||||
selected checks.
|
||||
|
||||
A journal for received checks is automatically created.
|
||||
You must configure on this journal the default debit account and the default
|
||||
credit account. You must also configure on the company the account for
|
||||
check deposits.
|
||||
""",
|
||||
'author': "Akretion,Odoo Community Association (OCA)",
|
||||
'website': 'http://www.akretion.com/',
|
||||
'depends': [
|
||||
@@ -47,14 +35,14 @@ check deposits.
|
||||
'report_webkit',
|
||||
],
|
||||
'data': [
|
||||
'account_deposit_view.xml',
|
||||
'account_move_line_view.xml',
|
||||
'account_deposit_sequence.xml',
|
||||
'company_view.xml',
|
||||
'views/account_deposit_view.xml',
|
||||
'views/account_move_line_view.xml',
|
||||
'data/account_deposit_sequence.xml',
|
||||
'views/company_view.xml',
|
||||
'security/ir.model.access.csv',
|
||||
'security/check_deposit_security.xml',
|
||||
'account_data.xml',
|
||||
'report.xml',
|
||||
'data/account_data.xml',
|
||||
'report/report.xml',
|
||||
'report/report_checkdeposit.xml',
|
||||
],
|
||||
'installable': True,
|
||||
|
||||
@@ -1,340 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
###############################################################################
|
||||
#
|
||||
# account_check_deposit for Odoo/OpenERP
|
||||
# Copyright (C) 2012-2015 Akretion (http://www.akretion.com/)
|
||||
# @author: Benoît GUILLOT <benoit.guillot@akretion.com>
|
||||
# @author: Chafique DELLI <chafique.delli@akretion.com>
|
||||
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
###############################################################################
|
||||
|
||||
from openerp.osv import fields, orm
|
||||
from openerp.tools.translate import _
|
||||
import openerp.addons.decimal_precision as dp
|
||||
|
||||
|
||||
class account_check_deposit(orm.Model):
|
||||
_name = "account.check.deposit"
|
||||
_description = "Account Check Deposit"
|
||||
_order = 'deposit_date desc'
|
||||
|
||||
def _compute_check_deposit(self, cr, uid, ids, name, args, context=None):
|
||||
res = {}
|
||||
for deposit in self.browse(cr, uid, ids, context=context):
|
||||
total = 0.0
|
||||
count = 0
|
||||
reconcile = False
|
||||
currency_none_same_company_id = False
|
||||
if deposit.company_id.currency_id != deposit.currency_id:
|
||||
currency_none_same_company_id = deposit.currency_id.id
|
||||
for line in deposit.check_payment_ids:
|
||||
count += 1
|
||||
if currency_none_same_company_id:
|
||||
total += line.amount_currency
|
||||
else:
|
||||
total += line.debit
|
||||
if deposit.move_id:
|
||||
for line in deposit.move_id.line_id:
|
||||
if line.debit > 0 and line.reconcile_id:
|
||||
reconcile = True
|
||||
res[deposit.id] = {
|
||||
'total_amount': total,
|
||||
'is_reconcile': reconcile,
|
||||
'currency_none_same_company_id': currency_none_same_company_id,
|
||||
'check_count': count,
|
||||
}
|
||||
return res
|
||||
|
||||
_columns = {
|
||||
'name': fields.char(
|
||||
'Name', size=64, readonly=True),
|
||||
'check_payment_ids': fields.one2many(
|
||||
'account.move.line', 'check_deposit_id', 'Check Payments',
|
||||
states={'done': [('readonly', '=', True)]}),
|
||||
'deposit_date': fields.date(
|
||||
'Deposit Date', required=True,
|
||||
states={'done': [('readonly', '=', True)]}),
|
||||
'journal_id': fields.many2one(
|
||||
'account.journal', 'Journal', domain=[('type', '=', 'bank')],
|
||||
required=True, states={'done': [('readonly', '=', True)]}),
|
||||
'journal_default_account_id': fields.related(
|
||||
'journal_id', 'default_debit_account_id', type='many2one',
|
||||
relation='account.account',
|
||||
string='Default Debit Account of the Journal'),
|
||||
'currency_id': fields.many2one(
|
||||
'res.currency', 'Currency', required=True,
|
||||
states={'done': [('readonly', '=', True)]}),
|
||||
'currency_none_same_company_id': fields.function(
|
||||
_compute_check_deposit, type='many2one',
|
||||
relation='res.currency', multi='deposit',
|
||||
string='Currency (False if same as company)'),
|
||||
'state': fields.selection([
|
||||
('draft', 'Draft'),
|
||||
('done', 'Done'),
|
||||
], 'Status', readonly=True),
|
||||
'move_id': fields.many2one(
|
||||
'account.move', 'Journal Entry', readonly=True),
|
||||
'partner_bank_id': fields.many2one(
|
||||
'res.partner.bank', 'Bank Account', required=True,
|
||||
domain="[('company_id', '=', company_id)]",
|
||||
states={'done': [('readonly', '=', True)]}),
|
||||
'line_ids': fields.related(
|
||||
'move_id', 'line_id', relation='account.move.line',
|
||||
type='one2many', string='Lines', readonly=True),
|
||||
'company_id': fields.many2one(
|
||||
'res.company', 'Company', required=True,
|
||||
change_default=True,
|
||||
states={'done': [('readonly', '=', True)]}),
|
||||
'total_amount': fields.function(
|
||||
_compute_check_deposit, multi='deposit',
|
||||
string="Total Amount", readonly=True,
|
||||
type="float", digits_compute=dp.get_precision('Account')),
|
||||
'check_count': fields.function(
|
||||
_compute_check_deposit, multi='deposit', readonly=True,
|
||||
string="Number of Checks", type="integer"),
|
||||
'is_reconcile': fields.function(
|
||||
_compute_check_deposit, multi='deposit', readonly=True,
|
||||
string="Reconcile", type="boolean"),
|
||||
}
|
||||
|
||||
_defaults = {
|
||||
'name': '/',
|
||||
'deposit_date': fields.date.context_today,
|
||||
'state': 'draft',
|
||||
'company_id': lambda self, cr, uid, c: self.pool['res.company'].
|
||||
_company_default_get(cr, uid, 'account.check.deposit', context=c),
|
||||
}
|
||||
|
||||
def _check_deposit(self, cr, uid, ids):
|
||||
for deposit in self.browse(cr, uid, ids):
|
||||
deposit_currency = deposit.currency_id
|
||||
if deposit_currency == deposit.company_id.currency_id:
|
||||
for line in deposit.check_payment_ids:
|
||||
if line.currency_id:
|
||||
raise orm.except_orm(
|
||||
_('Error:'),
|
||||
_("The check with amount %s and reference '%s' "
|
||||
"is in currency %s but the deposit is in "
|
||||
"currency %s.") % (
|
||||
line.debit, line.ref or '',
|
||||
line.currency_id.name,
|
||||
deposit_currency.name))
|
||||
else:
|
||||
for line in deposit.check_payment_ids:
|
||||
if line.currency_id != deposit_currency:
|
||||
raise orm.except_orm(
|
||||
_('Error:'),
|
||||
_("The check with amount %s and reference '%s' "
|
||||
"is in currency %s but the deposit is in "
|
||||
"currency %s.") % (
|
||||
line.debit, line.ref or '',
|
||||
line.currency_id.name,
|
||||
deposit_currency.name))
|
||||
return True
|
||||
|
||||
_constraints = [(
|
||||
_check_deposit,
|
||||
"All the checks of the deposit must be in the currency of the deposit",
|
||||
['currency_id', 'check_payment_ids', 'company_id']
|
||||
)]
|
||||
|
||||
def unlink(self, cr, uid, ids, context=None):
|
||||
for deposit in self.browse(cr, uid, ids, context=context):
|
||||
if deposit.state == 'done':
|
||||
raise orm.except_orm(
|
||||
_('Error!'),
|
||||
_("The deposit '%s' is in valid state, so you must "
|
||||
"cancel it before deleting it.")
|
||||
% deposit.name)
|
||||
return super(account_check_deposit, self).unlink(
|
||||
cr, uid, ids, context=context)
|
||||
|
||||
def backtodraft(self, cr, uid, ids, context=None):
|
||||
for deposit in self.browse(cr, uid, ids, context=context):
|
||||
if deposit.move_id:
|
||||
# It will raise here if journal_id.update_posted = False
|
||||
deposit.move_id.button_cancel()
|
||||
for line in deposit.check_payment_ids:
|
||||
if line.reconcile_id:
|
||||
line.reconcile_id.unlink()
|
||||
deposit.move_id.unlink()
|
||||
deposit.write({'state': 'draft'})
|
||||
return True
|
||||
|
||||
def create(self, cr, uid, vals, context=None):
|
||||
if vals.get('name', '/') == '/':
|
||||
vals['name'] = self.pool['ir.sequence'].\
|
||||
next_by_code(cr, uid, 'account.check.deposit')
|
||||
return super(account_check_deposit, self).\
|
||||
create(cr, uid, vals, context=context)
|
||||
|
||||
def _prepare_account_move_vals(self, cr, uid, deposit, context=None):
|
||||
date = deposit.deposit_date
|
||||
period_obj = self.pool['account.period']
|
||||
period_ids = period_obj.find(cr, uid, dt=date, context=context)
|
||||
# period_ids will always have a value, cf the code of find()
|
||||
move_vals = {
|
||||
'journal_id': deposit.journal_id.id,
|
||||
'date': date,
|
||||
'period_id': period_ids[0],
|
||||
'name': _('Check Deposit %s') % deposit.name,
|
||||
'ref': deposit.name,
|
||||
}
|
||||
return move_vals
|
||||
|
||||
def _prepare_move_line_vals(
|
||||
self, cr, uid, line, context=None):
|
||||
assert (line.debit > 0), 'Debit must have a value'
|
||||
return {
|
||||
'name': _('Check Deposit - Ref. Check %s') % line.ref,
|
||||
'credit': line.debit,
|
||||
'debit': 0.0,
|
||||
'account_id': line.account_id.id,
|
||||
'partner_id': line.partner_id.id,
|
||||
'currency_id': line.currency_id.id or False,
|
||||
'amount_currency': line.amount_currency * -1,
|
||||
}
|
||||
|
||||
def _prepare_counterpart_move_lines_vals(
|
||||
self, cr, uid, deposit, total_debit, total_amount_currency,
|
||||
context=None):
|
||||
return {
|
||||
'name': _('Check Deposit %s') % deposit.name,
|
||||
'debit': total_debit,
|
||||
'credit': 0.0,
|
||||
'account_id': deposit.company_id.check_deposit_account_id.id,
|
||||
'partner_id': False,
|
||||
'currency_id': deposit.currency_none_same_company_id.id or False,
|
||||
'amount_currency': total_amount_currency,
|
||||
}
|
||||
|
||||
def validate_deposit(self, cr, uid, ids, context=None):
|
||||
am_obj = self.pool['account.move']
|
||||
aml_obj = self.pool['account.move.line']
|
||||
if context is None:
|
||||
context = {}
|
||||
for deposit in self.browse(cr, uid, ids, context=context):
|
||||
move_vals = self._prepare_account_move_vals(
|
||||
cr, uid, deposit, context=context)
|
||||
context['journal_id'] = move_vals['journal_id']
|
||||
context['period_id'] = move_vals['period_id']
|
||||
move_id = am_obj.create(cr, uid, move_vals, context=context)
|
||||
total_debit = 0.0
|
||||
total_amount_currency = 0.0
|
||||
to_reconcile_line_ids = []
|
||||
for line in deposit.check_payment_ids:
|
||||
total_debit += line.debit
|
||||
total_amount_currency += line.amount_currency
|
||||
line_vals = self._prepare_move_line_vals(
|
||||
cr, uid, line, context=context)
|
||||
line_vals['move_id'] = move_id
|
||||
move_line_id = aml_obj.create(
|
||||
cr, uid, line_vals, context=context)
|
||||
to_reconcile_line_ids.append([line.id, move_line_id])
|
||||
|
||||
# Create counter-part
|
||||
if not deposit.company_id.check_deposit_account_id:
|
||||
raise orm.except_orm(
|
||||
_('Configuration Error:'),
|
||||
_("Missing Account for Check Deposits on the "
|
||||
"company '%s'.") % deposit.company_id.name)
|
||||
|
||||
counter_vals = self._prepare_counterpart_move_lines_vals(
|
||||
cr, uid, deposit, total_debit, total_amount_currency,
|
||||
context=context)
|
||||
counter_vals['move_id'] = move_id
|
||||
aml_obj.create(cr, uid, counter_vals, context=context)
|
||||
|
||||
am_obj.post(cr, uid, [move_id], context=context)
|
||||
deposit.write({'state': 'done', 'move_id': move_id})
|
||||
# We have to reconcile after post()
|
||||
for reconcile_line_ids in to_reconcile_line_ids:
|
||||
aml_obj.reconcile(
|
||||
cr, uid, reconcile_line_ids, context=context)
|
||||
return True
|
||||
|
||||
def onchange_company_id(
|
||||
self, cr, uid, ids, company_id, currency_id, context=None):
|
||||
vals = {}
|
||||
if company_id:
|
||||
company = self.pool['res.company'].browse(
|
||||
cr, uid, company_id, context=context)
|
||||
if currency_id:
|
||||
if company.currency_id.id == currency_id:
|
||||
vals['currency_none_same_company_id'] = False
|
||||
else:
|
||||
vals['currency_none_same_company_id'] = currency_id
|
||||
partner_bank_ids = self.pool['res.partner.bank'].search(
|
||||
cr, uid, [('company_id', '=', company_id)], context=context)
|
||||
if len(partner_bank_ids) == 1:
|
||||
vals['partner_bank_id'] = partner_bank_ids[0]
|
||||
else:
|
||||
vals['currency_none_same_company_id'] = False
|
||||
vals['partner_bank_id'] = False
|
||||
return {'value': vals}
|
||||
|
||||
def onchange_journal_id(self, cr, uid, ids, journal_id, context=None):
|
||||
vals = {}
|
||||
if journal_id:
|
||||
journal = self.pool['account.journal'].browse(
|
||||
cr, uid, journal_id, context=context)
|
||||
vals['journal_default_account_id'] = \
|
||||
journal.default_debit_account_id.id
|
||||
if journal.currency:
|
||||
vals['currency_id'] = journal.currency.id
|
||||
else:
|
||||
vals['currency_id'] = journal.company_id.currency_id.id
|
||||
else:
|
||||
vals['journal_default_account_id'] = False
|
||||
return {'value': vals}
|
||||
|
||||
def onchange_currency_id(
|
||||
self, cr, uid, ids, currency_id, company_id, context=None):
|
||||
vals = {}
|
||||
if currency_id and company_id:
|
||||
company = self.pool['res.company'].browse(
|
||||
cr, uid, company_id, context=context)
|
||||
if company.currency_id.id == currency_id:
|
||||
vals['currency_none_same_company_id'] = False
|
||||
else:
|
||||
vals['currency_none_same_company_id'] = currency_id
|
||||
else:
|
||||
vals['currency_none_same_company_id'] = False
|
||||
return {'value': vals}
|
||||
|
||||
|
||||
class account_move_line(orm.Model):
|
||||
_inherit = "account.move.line"
|
||||
|
||||
_columns = {
|
||||
'check_deposit_id': fields.many2one(
|
||||
'account.check.deposit',
|
||||
'Check Deposit'),
|
||||
}
|
||||
|
||||
|
||||
class res_company(orm.Model):
|
||||
_inherit = 'res.company'
|
||||
|
||||
_columns = {
|
||||
'check_deposit_account_id': fields.many2one(
|
||||
'account.account', 'Account for Check Deposits',
|
||||
domain=[
|
||||
('type', '<>', 'view'),
|
||||
('type', '<>', 'closed'),
|
||||
('reconcile', '=', True)]),
|
||||
}
|
||||
@@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
account_check_deposit for Odoo/OpenERP
|
||||
Copyright (C) 2014-2015 Akretion (http://www.akretion.com/)
|
||||
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
The licence is in the file __openerp__.py
|
||||
@@ -9,21 +8,12 @@
|
||||
<openerp>
|
||||
<data noupdate="1">
|
||||
|
||||
|
||||
<record id="check_received_journal_seq" model="ir.sequence">
|
||||
<field name="name">Journal Check Received</field>
|
||||
<field name="prefix">CHK/</field>
|
||||
<field name="padding">6</field>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
<!-- The user will have to configure manually the default_credit_account_id
|
||||
and default_debit_account_id, we can't do that for him -->
|
||||
<record id="check_received_journal" model="account.journal">
|
||||
<field name="name">Check Received</field>
|
||||
<field name="code">CHK</field>
|
||||
<field name="type">bank</field>
|
||||
<field name="sequence_id" ref="check_received_journal_seq"/>
|
||||
<field name="company_id" ref="base.main_company"/>
|
||||
</record>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
account_check_deposit for Odoo/OpenERP
|
||||
account_check_deposit for Odoo
|
||||
Copyright (C) 2012-2015 Akretion (http://www.akretion.com/)
|
||||
@author: Benoît GUILLOT <benoit.guillot@akretion.com>
|
||||
The licence is in the file __openerp__.py
|
||||
320
account_check_deposit/i18n/am.po
Normal file
320
account_check_deposit/i18n/am.po
Normal file
@@ -0,0 +1,320 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_check_deposit
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-12 10:23+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Amharic (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/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_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_check_deposit
|
||||
msgid "Account Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:res.company,check_deposit_account_id:0
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Back to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,partner_bank_id:0
|
||||
msgid "Bank Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank Account Number to Credit:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Beneficiary:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Currency:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.move.line,check_deposit_id:0
|
||||
#: model:ir.actions.report.xml,name:account_check_deposit.report_account_check_deposit
|
||||
msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Deposit n°"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.check.deposit,check_payment_ids:0
|
||||
msgid "Check Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_tree
|
||||
#: model:ir.actions.act_window,name:account_check_deposit.action_check_deposit_tree
|
||||
#: model:ir.ui.menu,name:account_check_deposit.menu_check_deposit_tree
|
||||
msgid "Checks Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Creado en"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,currency_id:0
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
msgid "Deposit Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,move_id:0
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización en"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,state:0
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
"deposit is in currency %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Transfer Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Validate"
|
||||
msgstr ""
|
||||
@@ -3,12 +3,20 @@
|
||||
# * account_check_deposit
|
||||
#
|
||||
# Translators:
|
||||
# danimaribeiro <danimaribeiro@gmail.com>, 2015-2016
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012-2014
|
||||
# Hotellook, 2014
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
# Paolo Valier, 2016
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2015
|
||||
# Thomas A. Jaeger, 2015
|
||||
# Thomas A. Jaeger, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 16:14+0000\n"
|
||||
"POT-Creation-Date: 2016-05-14 01:07+0000\n"
|
||||
"PO-Revision-Date: 2016-05-14 01:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: German (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -25,12 +33,7 @@ msgstr "Scheck-Konto"
|
||||
#. module: account_check_deposit
|
||||
#: field:res.company,check_deposit_account_id:0
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
msgstr "Scheck-Konto"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
@@ -40,33 +43,33 @@ msgstr "Betrag"
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Back to Draft"
|
||||
msgstr ""
|
||||
msgstr "Zurück auf Entwurf"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,partner_bank_id:0
|
||||
msgid "Bank Account"
|
||||
msgstr ""
|
||||
msgstr "Bankkonto"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank Account Number to Credit:"
|
||||
msgstr ""
|
||||
msgstr "Gutschrifts-Bankkontennummer"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank:"
|
||||
msgstr ""
|
||||
msgstr "Bank:"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Beneficiary:"
|
||||
msgstr ""
|
||||
msgstr "Berechtigter:"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Currency:"
|
||||
msgstr ""
|
||||
msgstr "Scheck-Währung:"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
@@ -76,22 +79,22 @@ msgid "Check Deposit"
|
||||
msgstr "Scheckeinreichung"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
msgstr "Scheck-Konto %s"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
msgstr "Scheck-Konto - Scheckref. %s"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Deposit n°"
|
||||
msgstr ""
|
||||
msgstr "Scheck-Konto Nr."
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
@@ -115,7 +118,7 @@ msgstr "Scheckdepotsuche"
|
||||
#: model:ir.actions.act_window,name:account_check_deposit.action_check_deposit_tree
|
||||
#: model:ir.ui.menu,name:account_check_deposit.menu_check_deposit_tree
|
||||
msgid "Checks Deposits"
|
||||
msgstr ""
|
||||
msgstr "Scheck-Konten"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_res_company
|
||||
@@ -127,21 +130,15 @@ msgstr "Unternehmen"
|
||||
msgid "Company"
|
||||
msgstr "Unternehmen"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
@@ -152,7 +149,7 @@ msgstr "Währung"
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
msgstr "Währung (Falsch wenn gleich wie Unternehmenswährung)"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
@@ -162,12 +159,12 @@ msgstr "Datum"
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
msgstr "Debitor"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
msgstr "Standard Aufwandskonto des Journals"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
@@ -175,6 +172,11 @@ msgstr ""
|
||||
msgid "Deposit Date"
|
||||
msgstr "Einreicherdatum"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
@@ -187,27 +189,19 @@ msgstr "Erledigt"
|
||||
msgid "Draft"
|
||||
msgstr "Entwurf"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Fehler!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
msgstr ""
|
||||
msgstr "Gruppiert nach"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: help:account.check.deposit,journal_default_account_id:0
|
||||
msgid "It acts as a default account for debit amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
@@ -226,15 +220,20 @@ msgstr "Journalbuchung"
|
||||
msgid "Journal Items"
|
||||
msgstr "Journalposten"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
msgstr "Zuletzt geändert von"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
msgstr "Zuletzt geändert am"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
@@ -244,13 +243,13 @@ msgstr "Zeilen"
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
msgstr "Scheckliste:"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
msgstr "Fehlendes Scheck-Konto im Unternehmen '%s'"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,name:0
|
||||
@@ -260,17 +259,17 @@ msgstr "Name"
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
msgstr "Anzahl Schecks"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
msgstr "Anzahl Schecks:"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
msgstr "Ausgleichen"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
@@ -283,26 +282,26 @@ msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
"deposit is in currency %s."
|
||||
msgstr ""
|
||||
msgstr "Beim Scheck mit Betrag %s und Referenz '%s' stimmt die Währung %s nicht mit der Währung des Kontos %s überein. "
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
msgstr "Die Einzahlung '%s' ist bereits bewilligt. Sie müssen sie zuerst absagen bevor Sie sie löschen können."
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
msgstr "Gesamtbetrag"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
@@ -312,9 +311,9 @@ msgstr "Gesamt:"
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Transfer Date:"
|
||||
msgstr ""
|
||||
msgstr "Übertragungsdatum:"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Validate"
|
||||
msgstr ""
|
||||
msgstr "Prüfen"
|
||||
|
||||
320
account_check_deposit/i18n/el_GR.po
Normal file
320
account_check_deposit/i18n/el_GR.po
Normal file
@@ -0,0 +1,320 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_check_deposit
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-05 01:25+0000\n"
|
||||
"PO-Revision-Date: 2015-12-09 16:40+0000\n"
|
||||
"Last-Translator: Goutoudis Kostas <goutoudis@gmail.com>\n"
|
||||
"Language-Team: Greek (Greece) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/el_GR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: el_GR\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_check_deposit
|
||||
msgid "Account Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:res.company,check_deposit_account_id:0
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Back to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,partner_bank_id:0
|
||||
msgid "Bank Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank Account Number to Credit:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Beneficiary:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Currency:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.move.line,check_deposit_id:0
|
||||
#: model:ir.actions.report.xml,name:account_check_deposit.report_account_check_deposit
|
||||
msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Deposit n°"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.check.deposit,check_payment_ids:0
|
||||
msgid "Check Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_tree
|
||||
#: model:ir.actions.act_window,name:account_check_deposit.action_check_deposit_tree
|
||||
#: model:ir.ui.menu,name:account_check_deposit.menu_check_deposit_tree
|
||||
msgid "Checks Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Εταιρείες"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Εταιρεία"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Δημιουργήθηκε από "
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Δημιουργήθηκε στις"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,currency_id:0
|
||||
msgid "Currency"
|
||||
msgstr "Νόμισμα"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
msgid "Deposit Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,id:0
|
||||
msgid "ID"
|
||||
msgstr "Κωδικός"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,move_id:0
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Τελευταία ενημέρωση από"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Τελευταία ενημέρωση στις"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,state:0
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
"deposit is in currency %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Transfer Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Validate"
|
||||
msgstr ""
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-05-14 01:07+0000\n"
|
||||
"PO-Revision-Date: 2016-05-14 01:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +27,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,12 +122,6 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "Company"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -152,7 +141,7 @@ msgstr ""
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
msgstr "Currency (False if same as company)"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
@@ -167,7 +156,7 @@ msgstr ""
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
msgstr "Default Debit Account of the Journal"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
@@ -175,6 +164,11 @@ msgstr ""
|
||||
msgid "Deposit Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
@@ -187,19 +181,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "Draft"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Error!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -210,6 +191,11 @@ msgstr ""
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: help:account.check.deposit,journal_default_account_id:0
|
||||
msgid "It acts as a default account for debit amount"
|
||||
msgstr "It acts as a default account for debit amount"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
@@ -226,6 +212,11 @@ msgstr ""
|
||||
msgid "Journal Items"
|
||||
msgstr "Journal Items"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
@@ -239,7 +230,7 @@ msgstr ""
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
msgstr "Lines"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
@@ -247,7 +238,7 @@ msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -260,7 +251,7 @@ msgstr "Name"
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
msgstr "Number of Checks"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
@@ -270,7 +261,7 @@ msgstr ""
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
msgstr "Reconcile"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
@@ -283,8 +274,8 @@ msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,7 +283,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
@@ -302,7 +293,7 @@ msgstr ""
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
msgstr "Total Amount"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
|
||||
@@ -3,13 +3,31 @@
|
||||
# * account_check_deposit
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altınışık <aaltinisik@altinkaya.com.tr>, 2015
|
||||
# Ahmet Altınışık <aaltinisik@altinkaya.com.tr>, 2013
|
||||
# Antonio Trueba, 2016
|
||||
# Antonio Trueba, 2016
|
||||
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
|
||||
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
|
||||
# danimaribeiro <danimaribeiro@gmail.com>, 2016
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011-2012,2014
|
||||
# Hotellook, 2014
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2016
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
|
||||
# Paolo Valier, 2016
|
||||
# Pedro M. Baeza <pedro.baeza@gmail.com>, 2015
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2016
|
||||
# SaFi J. <safi2266@gmail.com>, 2015
|
||||
# Stéphane Bidoul <sbi@skynet.be>, 2015
|
||||
# Yael Terrettaz, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-20 18:44+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-05-14 01:07+0000\n"
|
||||
"PO-Revision-Date: 2016-05-14 01:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +45,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -40,7 +53,7 @@ msgstr "Importe"
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Back to Draft"
|
||||
msgstr ""
|
||||
msgstr "Devolver a borrador"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
@@ -56,7 +69,7 @@ msgstr ""
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank:"
|
||||
msgstr ""
|
||||
msgstr "Banco:"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
@@ -76,14 +89,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -120,19 +133,13 @@ msgstr ""
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
msgstr "Compañías"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Compañía"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -147,7 +154,7 @@ msgstr "Creado en"
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,currency_id:0
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
msgstr "Divisa"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
@@ -175,6 +182,11 @@ msgstr ""
|
||||
msgid "Deposit Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
@@ -187,19 +199,6 @@ msgstr "Completado"
|
||||
msgid "Draft"
|
||||
msgstr "Borrador"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "¡Error!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -210,6 +209,11 @@ msgstr ""
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: help:account.check.deposit,journal_default_account_id:0
|
||||
msgid "It acts as a default account for debit amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
@@ -226,6 +230,11 @@ msgstr "Asiento contable"
|
||||
msgid "Journal Items"
|
||||
msgstr "Apuntes contables"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
@@ -239,7 +248,7 @@ msgstr "Última actualización en"
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
msgstr "Líneas"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
@@ -247,7 +256,7 @@ msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -283,8 +292,8 @@ msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,7 +301,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
|
||||
320
account_check_deposit/i18n/fi.po
Normal file
320
account_check_deposit/i18n/fi.po
Normal file
@@ -0,0 +1,320 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_check_deposit
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-12-03 09:18+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/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_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_check_deposit
|
||||
msgid "Account Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:res.company,check_deposit_account_id:0
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Back to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,partner_bank_id:0
|
||||
msgid "Bank Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank Account Number to Credit:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Beneficiary:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Currency:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.move.line,check_deposit_id:0
|
||||
#: model:ir.actions.report.xml,name:account_check_deposit.report_account_check_deposit
|
||||
msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Deposit n°"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.check.deposit,check_payment_ids:0
|
||||
msgid "Check Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_tree
|
||||
#: model:ir.actions.act_window,name:account_check_deposit.action_check_deposit_tree
|
||||
#: model:ir.ui.menu,name:account_check_deposit.menu_check_deposit_tree
|
||||
msgid "Checks Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Yritykset"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Yritys"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,currency_id:0
|
||||
msgid "Currency"
|
||||
msgstr "Valuutta"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
msgid "Deposit Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,move_id:0
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,state:0
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
"deposit is in currency %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Transfer Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Validate"
|
||||
msgstr ""
|
||||
@@ -3,14 +3,26 @@
|
||||
# * account_check_deposit
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altınışık <aaltinisik@altinkaya.com.tr>, 2016
|
||||
# Antonio Trueba, 2016
|
||||
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
|
||||
# danimaribeiro <danimaribeiro@gmail.com>, 2016
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013-2014
|
||||
# Florian Hatat, 2015
|
||||
# Florian Hatat, 2015
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||
# John Toro <johntoro@gmail.com>, 2015
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
# Miku Laitinen <miku.laitinen@gmail.com>, 2015
|
||||
# Paolo Valier, 2016
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-07-06 10:05+0000\n"
|
||||
"Last-Translator: Florian Hatat\n"
|
||||
"POT-Creation-Date: 2016-05-14 01:07+0000\n"
|
||||
"PO-Revision-Date: 2016-05-14 01:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: French (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -28,11 +40,6 @@ msgstr "Compte Remise de Chèque"
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr "Compte pour les remises de chèques"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr "Tous les chèques doivent être émis dans la même devise que la remise."
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -77,14 +84,14 @@ msgid "Check Deposit"
|
||||
msgstr "Remise de chèque"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr "Remise de chèque %s"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -128,12 +135,6 @@ msgstr "Sociétés"
|
||||
msgid "Company"
|
||||
msgstr "Société"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr "Erreur de configuration :"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -176,6 +177,11 @@ msgstr "Compte de débit par défaut du journal"
|
||||
msgid "Deposit Date"
|
||||
msgstr "Date du Versement"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
@@ -188,19 +194,6 @@ msgstr "Terminé"
|
||||
msgid "Draft"
|
||||
msgstr "Brouillon"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Erreur!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr "Erreur :"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -211,6 +204,11 @@ msgstr "Grouper par"
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: help:account.check.deposit,journal_default_account_id:0
|
||||
msgid "It acts as a default account for debit amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
@@ -227,6 +225,11 @@ msgstr "Pièce comptable"
|
||||
msgid "Journal Items"
|
||||
msgstr "Écritures comptables"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
@@ -248,7 +251,7 @@ msgid "List of checks:"
|
||||
msgstr "Liste des chèques :"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr "Compte manquant pour les remises de chèques de la société \"%s\"."
|
||||
@@ -284,8 +287,8 @@ msgid "Status"
|
||||
msgstr "État"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -293,7 +296,7 @@ msgid ""
|
||||
msgstr "Le chèque d'un montant de %s portant la référence \"%s\" est émis dans la devise %s mais la remise est dans la devise %s."
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
|
||||
@@ -1,255 +1,101 @@
|
||||
# Translation of Odoo Server.
|
||||
# Translation of OpenERP Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_check_deposit
|
||||
#
|
||||
# Translators:
|
||||
# * account_check_deposit
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Project-Id-Version: OpenERP Server 7.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 16:14+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Gujarati (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/gu/)\n"
|
||||
"POT-Creation-Date: 2013-02-21 10:01+0000\n"
|
||||
"PO-Revision-Date: 2013-02-21 10:01+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"
|
||||
"Language: gu\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: \n"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_check_deposit
|
||||
msgid "Account Check Deposit"
|
||||
#: code:addons/account_check_deposit/account_deposit.py:76
|
||||
#, python-format
|
||||
msgid "You cannot modify a posted entry of this journal.\n"
|
||||
"First you should set the journal to allow cancelling entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:res.company,check_deposit_account_id:0
|
||||
msgid "Account for Check Deposits"
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:58
|
||||
msgid "Beneficiary"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
#: model:ir.actions.report.xml,name:account_check_deposit.check_deposit_webkit
|
||||
msgid "WebKit Checks Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Back to Draft"
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:79
|
||||
msgid "Designation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,partner_bank_id:0
|
||||
msgid "Bank Account"
|
||||
#: field:account.check.deposit,state:0
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank Account Number to Credit:"
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:78
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Beneficiary:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Currency:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.move.line,check_deposit_id:0
|
||||
#: model:ir.actions.report.xml,name:account_check_deposit.report_account_check_deposit
|
||||
msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Deposit n°"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.check.deposit,check_payment_ids:0
|
||||
msgid "Check Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_tree
|
||||
#: model:ir.actions.act_window,name:account_check_deposit.action_check_deposit_tree
|
||||
#: model:ir.ui.menu,name:account_check_deposit.menu_check_deposit_tree
|
||||
msgid "Checks Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "કંપની"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:65
|
||||
msgid "RIB Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,currency_id:0
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:53
|
||||
msgid "Deposit Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Done"
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:63
|
||||
msgid "Account to crediting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Draft"
|
||||
msgstr "ડ્રાફ્ટ"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:76
|
||||
msgid "Payment Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Total Credit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,move_id:0
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
#: field:account.check.deposit,bank_id:0
|
||||
msgid "Bank"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
@@ -258,24 +104,178 @@ msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Checks Deposit Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
#: model:account.account.type,name:account_check_deposit.data_account_type_received_check
|
||||
msgid "Recieved Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
#: view:account.check.deposit:0
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:49
|
||||
msgid "Deposit N°"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Total Debit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:76
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:80
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
#: model:ir.actions.act_window,name:account_check_deposit.action_check_deposit_tree
|
||||
#: model:ir.ui.menu,name:account_check_deposit.menu_check_deposit_tree
|
||||
msgid "Checks Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,partner_id:0
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Validate Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
#: field:account.check.deposit,check_payment_ids:0
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:70
|
||||
msgid "Check Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:41
|
||||
msgid "Deposit Slip of Checks(\\u20acuros)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:55
|
||||
msgid "Bank Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:77
|
||||
msgid "Reference"
|
||||
msgstr "સંદર્ભ"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_check_deposit
|
||||
msgid "Account Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:60
|
||||
msgid "Office Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Check Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:99
|
||||
msgid "Total:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,move_id:0
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr ""
|
||||
# Translation of OpenERP Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_check_deposit
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: OpenERP Server 7.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-21 10:01+0000\n"
|
||||
"PO-Revision-Date: 2013-02-21 10:01+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_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:76
|
||||
#, python-format
|
||||
msgid "You cannot modify a posted entry of this journal.\n"
|
||||
"First you should set the journal to allow cancelling entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:58
|
||||
msgid "Beneficiary"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Group By..."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.actions.report.xml,name:account_check_deposit.check_deposit_webkit
|
||||
msgid "WebKit Checks Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:79
|
||||
msgid "Designation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,state:0
|
||||
@@ -283,38 +283,189 @@ msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
"deposit is in currency %s."
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:78
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: field:account.move.line,check_deposit_id:0
|
||||
msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,company_id:0
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:65
|
||||
msgid "RIB Key"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:53
|
||||
msgid "Deposit Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:63
|
||||
msgid "Account to crediting"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:76
|
||||
msgid "Payment Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Total Credit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,bank_id:0
|
||||
msgid "Bank"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Checks Deposit Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:account.account.type,name:account_check_deposit.data_account_type_received_check
|
||||
msgid "Recieved Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:49
|
||||
msgid "Deposit N°"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Total Debit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:76
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgid "Error!"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:80
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
#: model:ir.actions.act_window,name:account_check_deposit.action_check_deposit_tree
|
||||
#: model:ir.ui.menu,name:account_check_deposit.menu_check_deposit_tree
|
||||
msgid "Checks Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgid "total amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
#: field:account.check.deposit,partner_id:0
|
||||
msgid "Partner"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Validate Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
#: field:account.check.deposit,check_payment_ids:0
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:70
|
||||
msgid "Check Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:41
|
||||
msgid "Deposit Slip of Checks(\\u20acuros)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:55
|
||||
msgid "Bank Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:77
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_check_deposit
|
||||
msgid "Account Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:60
|
||||
msgid "Office Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Check Payment"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:0
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: report:addons/account_check_deposit/report/check_deposit.mako:99
|
||||
msgid "Total:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Transfer Date:"
|
||||
#: field:account.check.deposit,move_id:0
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Validate"
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-10-20 18:44+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-01-04 11:44+0000\n"
|
||||
"PO-Revision-Date: 2016-01-04 11:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +27,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,12 +122,6 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "Organizacija"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -149,11 +138,6 @@ msgstr ""
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
@@ -164,11 +148,6 @@ msgstr "Datum"
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
@@ -187,19 +166,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "Nacrt"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Greška!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -236,18 +202,13 @@ msgstr ""
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -257,21 +218,11 @@ msgstr ""
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
@@ -283,8 +234,8 @@ msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,18 +243,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
|
||||
311
account_check_deposit/i18n/hr_HR.po
Normal file
311
account_check_deposit/i18n/hr_HR.po
Normal file
@@ -0,0 +1,311 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_check_deposit
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-05-28 00:59+0000\n"
|
||||
"PO-Revision-Date: 2016-05-31 13:38+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hr_HR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hr_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_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_check_deposit
|
||||
msgid "Account Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:res.company,check_deposit_account_id:0
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Back to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,partner_bank_id:0
|
||||
msgid "Bank Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank Account Number to Credit:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Beneficiary:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Currency:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.move.line,check_deposit_id:0
|
||||
#: model:ir.actions.report.xml,name:account_check_deposit.report_account_check_deposit
|
||||
msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Deposit n°"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.check.deposit,check_payment_ids:0
|
||||
msgid "Check Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_tree
|
||||
#: model:ir.actions.act_window,name:account_check_deposit.action_check_deposit_tree
|
||||
#: model:ir.ui.menu,name:account_check_deposit.menu_check_deposit_tree
|
||||
msgid "Checks Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Poduzeća"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Poduzeće"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,currency_id:0
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
msgid "Deposit Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: help:account.check.deposit,journal_default_account_id:0
|
||||
msgid "It acts as a default account for debit amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,move_id:0
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,state:0
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
"deposit is in currency %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Transfer Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Validate"
|
||||
msgstr ""
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-01-04 11:44+0000\n"
|
||||
"PO-Revision-Date: 2016-01-04 11:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +27,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,12 +122,6 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "Vállalat"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -149,11 +138,6 @@ msgstr ""
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
@@ -164,11 +148,6 @@ msgstr "Dátum"
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
@@ -187,19 +166,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "Tervezet"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Hiba!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -236,18 +202,13 @@ msgstr ""
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -257,21 +218,11 @@ msgstr ""
|
||||
msgid "Name"
|
||||
msgstr "Név"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
@@ -283,8 +234,8 @@ msgid "Status"
|
||||
msgstr "Státusz"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,18 +243,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
|
||||
@@ -3,13 +3,23 @@
|
||||
# * account_check_deposit
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altınışık <aaltinisik@altinkaya.com.tr>, 2016
|
||||
# Antonio Trueba, 2016
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2010-2013
|
||||
# Giedrius Slavinskas <giedrius@inovera.lt>, 2012
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
# Paolo Valier, 2016
|
||||
# Pedro Castro Silva <pedrocs@sossia.pt>, 2015
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2015
|
||||
# Sofce Dimitrijeva <sofce@eskon.com.mk>, 2013
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-05-14 01:07+0000\n"
|
||||
"PO-Revision-Date: 2016-05-14 01:10+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/it/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +37,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +81,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -120,19 +125,13 @@ msgstr ""
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
msgstr "Azienda"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Azienda"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -147,7 +146,7 @@ msgstr "Creato il"
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,currency_id:0
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
msgstr "Valuta"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
@@ -175,11 +174,16 @@ msgstr ""
|
||||
msgid "Deposit Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
msgstr "Fatto"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
@@ -187,19 +191,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "Bozza"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -210,6 +201,11 @@ msgstr ""
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: help:account.check.deposit,journal_default_account_id:0
|
||||
msgid "It acts as a default account for debit amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
@@ -226,6 +222,11 @@ msgstr ""
|
||||
msgid "Journal Items"
|
||||
msgstr "Voci Sezionale"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
@@ -247,7 +248,7 @@ msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -283,8 +284,8 @@ msgid "Status"
|
||||
msgstr "Stato"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,7 +293,7 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-01-04 11:44+0000\n"
|
||||
"PO-Revision-Date: 2016-01-04 11:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/lt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +27,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,12 +122,6 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "Įmonė"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -149,11 +138,6 @@ msgstr ""
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
@@ -164,11 +148,6 @@ msgstr "Data"
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
@@ -187,19 +166,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "Juodraštis"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Klaida!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -236,18 +202,13 @@ msgstr ""
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -257,21 +218,11 @@ msgstr ""
|
||||
msgid "Name"
|
||||
msgstr "Pavadinimas"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
@@ -283,8 +234,8 @@ msgid "Status"
|
||||
msgstr "Būsena"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,18 +243,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-01-04 11:44+0000\n"
|
||||
"PO-Revision-Date: 2016-01-04 11:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Macedonian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mk/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +27,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,12 +122,6 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "Компанија"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -149,11 +138,6 @@ msgstr ""
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
@@ -164,11 +148,6 @@ msgstr "Датум"
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
@@ -187,19 +166,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "Нацрт"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Грешка!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -236,18 +202,13 @@ msgstr ""
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -257,21 +218,11 @@ msgstr ""
|
||||
msgid "Name"
|
||||
msgstr "Име"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
@@ -283,8 +234,8 @@ msgid "Status"
|
||||
msgstr "Статус"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,18 +243,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-01-04 11:44+0000\n"
|
||||
"PO-Revision-Date: 2016-01-04 11:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Mongolian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/mn/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +27,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,12 +122,6 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "Компани"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -149,11 +138,6 @@ msgstr ""
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
@@ -164,11 +148,6 @@ msgstr "Огноо"
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
@@ -187,19 +166,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "Ноорог"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Алдаа!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -236,18 +202,13 @@ msgstr ""
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -257,21 +218,11 @@ msgstr ""
|
||||
msgid "Name"
|
||||
msgstr "Нэр"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
@@ -283,8 +234,8 @@ msgid "Status"
|
||||
msgstr "Төлөв"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,18 +243,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-01-04 11:44+0000\n"
|
||||
"PO-Revision-Date: 2016-01-04 11:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Dutch (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/nl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +27,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,12 +122,6 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "Bedrijf"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -149,11 +138,6 @@ msgstr ""
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
@@ -164,11 +148,6 @@ msgstr "Datum"
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
@@ -187,19 +166,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "Concept"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Fout!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -236,18 +202,13 @@ msgstr ""
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -257,21 +218,11 @@ msgstr ""
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
@@ -283,8 +234,8 @@ msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,18 +243,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-01-04 11:44+0000\n"
|
||||
"PO-Revision-Date: 2016-01-04 11:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,15 +27,10 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
msgstr "Montante"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,21 +122,15 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
@@ -149,11 +138,6 @@ msgstr ""
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
@@ -164,11 +148,6 @@ msgstr "Data"
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
@@ -179,7 +158,7 @@ msgstr ""
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
msgstr "Feito"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
@@ -187,19 +166,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "Rascunho"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -208,7 +174,7 @@ msgstr ""
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
@@ -219,7 +185,7 @@ msgstr "Diário"
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,move_id:0
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
msgstr "Mov. de Diário"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_move_line
|
||||
@@ -229,17 +195,12 @@ msgstr "Items Diários"
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
@@ -247,7 +208,7 @@ msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -257,21 +218,11 @@ msgstr ""
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
@@ -283,8 +234,8 @@ msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,18 +243,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-01-04 11:44+0000\n"
|
||||
"PO-Revision-Date: 2016-01-04 11:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_BR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +27,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,12 +122,6 @@ msgstr "Empresas"
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -149,11 +138,6 @@ msgstr ""
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
@@ -164,11 +148,6 @@ msgstr "Data"
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
@@ -187,19 +166,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "Provisório"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Erro!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -236,18 +202,13 @@ msgstr ""
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -257,21 +218,11 @@ msgstr ""
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
@@ -283,8 +234,8 @@ msgid "Status"
|
||||
msgstr "Situação"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,18 +243,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
|
||||
324
account_check_deposit/i18n/pt_PT.po
Normal file
324
account_check_deposit/i18n/pt_PT.po
Normal file
@@ -0,0 +1,324 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_check_deposit
|
||||
#
|
||||
# Translators:
|
||||
# Ahmet Altınışık <aaltinisik@altinkaya.com.tr>, 2015-2016
|
||||
# Antonio Trueba, 2016
|
||||
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
|
||||
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
|
||||
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012-2014
|
||||
# Hotellook, 2014
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
|
||||
# Paolo Valier, 2016
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
|
||||
# SaFi J. <safi2266@gmail.com>, 2015
|
||||
# Thomas A. Jaeger, 2015
|
||||
# Wagner Pereira <wagner@wagner.pereira.nom.br>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-05-21 00:52+0000\n"
|
||||
"PO-Revision-Date: 2016-05-22 18:16+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/pt_PT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: pt_PT\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_check_deposit
|
||||
msgid "Account Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:res.company,check_deposit_account_id:0
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
msgstr "Valor"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Back to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,partner_bank_id:0
|
||||
msgid "Bank Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank Account Number to Credit:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Beneficiary:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Currency:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.move.line,check_deposit_id:0
|
||||
#: model:ir.actions.report.xml,name:account_check_deposit.report_account_check_deposit
|
||||
msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Deposit n°"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.check.deposit,check_payment_ids:0
|
||||
msgid "Check Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_tree
|
||||
#: model:ir.actions.act_window,name:account_check_deposit.action_check_deposit_tree
|
||||
#: model:ir.ui.menu,name:account_check_deposit.menu_check_deposit_tree
|
||||
msgid "Checks Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Empresa"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,currency_id:0
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
msgstr "Data"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
msgid "Deposit Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Nome a exibir"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Done"
|
||||
msgstr "Feito"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Draft"
|
||||
msgstr "Rascunho"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,id:0
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: help:account.check.deposit,journal_default_account_id:0
|
||||
msgid "It acts as a default account for debit amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
msgid "Journal"
|
||||
msgstr "Diário"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,move_id:0
|
||||
msgid "Journal Entry"
|
||||
msgstr "Mov. de Diário"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr "Item do Diário"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Modificado pela última vez em"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Atualizado pela última vez por"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Atualizado pela última vez em"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,name:0
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
msgstr "Referência"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,state:0
|
||||
msgid "Status"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
"deposit is in currency %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Transfer Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Validate"
|
||||
msgstr ""
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-01-04 11:44+0000\n"
|
||||
"PO-Revision-Date: 2016-01-04 11:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Romanian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ro/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +27,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,12 +122,6 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "Companie"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -149,11 +138,6 @@ msgstr ""
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
@@ -164,11 +148,6 @@ msgstr "Data"
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
@@ -187,19 +166,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "Ciorna"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Eroare!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -236,18 +202,13 @@ msgstr ""
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -257,21 +218,11 @@ msgstr ""
|
||||
msgid "Name"
|
||||
msgstr "Nume"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
@@ -283,8 +234,8 @@ msgid "Status"
|
||||
msgstr "Stare"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,18 +243,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-01-04 11:44+0000\n"
|
||||
"PO-Revision-Date: 2016-01-04 11:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +27,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,12 +122,6 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "Компания"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -149,11 +138,6 @@ msgstr ""
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
@@ -164,11 +148,6 @@ msgstr "Дата"
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
@@ -187,19 +166,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "Черновик"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Ошибка !"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -236,18 +202,13 @@ msgstr ""
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -257,21 +218,11 @@ msgstr ""
|
||||
msgid "Name"
|
||||
msgstr "Название"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
@@ -283,8 +234,8 @@ msgid "Status"
|
||||
msgstr "Статус"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,18 +243,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
|
||||
266
account_check_deposit/i18n/sk.po
Normal file
266
account_check_deposit/i18n/sk.po
Normal file
@@ -0,0 +1,266 @@
|
||||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_check_deposit
|
||||
#
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2016-04-14 02:46+0000\n"
|
||||
"PO-Revision-Date: 2016-04-21 08:25+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Slovak (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_check_deposit
|
||||
msgid "Account Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:res.company,check_deposit_account_id:0
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Back to Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,partner_bank_id:0
|
||||
msgid "Bank Account"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank Account Number to Credit:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Bank:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Beneficiary:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Currency:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.move.line,check_deposit_id:0
|
||||
#: model:ir.actions.report.xml,name:account_check_deposit.report_account_check_deposit
|
||||
msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Check Deposit n°"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: field:account.check.deposit,check_payment_ids:0
|
||||
msgid "Check Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Checks Deposit Search"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_tree
|
||||
#: model:ir.actions.act_window,name:account_check_deposit.action_check_deposit_tree
|
||||
#: model:ir.ui.menu,name:account_check_deposit.menu_check_deposit_tree
|
||||
msgid "Checks Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_res_company
|
||||
msgid "Companies"
|
||||
msgstr "Spoločnosti"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,company_id:0
|
||||
msgid "Company"
|
||||
msgstr "Spoločnosť"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_date:0
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,currency_id:0
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
msgid "Deposit Date"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Done"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
msgid "Draft"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,id:0
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,move_id:0
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: model:ir.model,name:account_check_deposit.model_account_move_line
|
||||
msgid "Journal Items"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravil"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_date:0
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravené"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,name:0
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,state:0
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
"deposit is in currency %s."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Transfer Date:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.account_check_deposit_view_form
|
||||
msgid "Validate"
|
||||
msgstr ""
|
||||
@@ -3,13 +3,29 @@
|
||||
# * account_check_deposit
|
||||
#
|
||||
# Translators:
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015
|
||||
# Ahmet Altınışık <aaltinisik@altinkaya.com.tr>, 2015
|
||||
# Antonio Trueba, 2016
|
||||
# Armando Vulcano Junior <vulcano@uol.com.br>, 2015
|
||||
# Carles Antoli <carlesantoli@hotmail.com>, 2015
|
||||
# Christophe CHAUVET <christophe.chauvet@gmail.com>, 2015
|
||||
# danimaribeiro <danimaribeiro@gmail.com>, 2016
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2012
|
||||
# Hotellook, 2014
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2016
|
||||
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2016
|
||||
# Matjaž Mozetič <m.mozetic@matmoz.si>, 2015-2016
|
||||
# Miku Laitinen <miku.laitinen@gmail.com>, 2015
|
||||
# Paolo Valier, 2016
|
||||
# Rudolf Schnapka <rs@techno-flex.de>, 2015-2016
|
||||
# SaFi J. <safi2266@gmail.com>, 2015
|
||||
# Thomas A. Jaeger, 2015
|
||||
# Wagner Pereira <wagner@wagner.pereira.nom.br>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-07-01 12:22+0000\n"
|
||||
"POT-Creation-Date: 2016-05-14 01:07+0000\n"
|
||||
"PO-Revision-Date: 2016-05-14 05:10+0000\n"
|
||||
"Last-Translator: Matjaž Mozetič <m.mozetic@matmoz.si>\n"
|
||||
"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/sl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -28,11 +44,6 @@ msgstr "Konto čekovnih depozitov"
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr "Konto za čekovne depozite"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr "Vsi čeki depozita morajo biti v valuti depozita"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -77,14 +88,14 @@ msgid "Check Deposit"
|
||||
msgstr "Čekovni depozit"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr "Čekovni depozit %s"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr "Čekovni depozit - sklic čeka %s"
|
||||
@@ -128,12 +139,6 @@ msgstr "Družbe"
|
||||
msgid "Company"
|
||||
msgstr "Družba"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr "Nastavitvena napaka:"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -176,6 +181,11 @@ msgstr "Privzeti konto obveznosti za dnevnik"
|
||||
msgid "Deposit Date"
|
||||
msgstr "Datum depozita"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,display_name:0
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazni naziv"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: selection:account.check.deposit,state:0
|
||||
@@ -188,19 +198,6 @@ msgstr "Opravljeno"
|
||||
msgid "Draft"
|
||||
msgstr "Osnutek"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Napaka!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr "Napaka:"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -211,6 +208,11 @@ msgstr "Združi po"
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: help:account.check.deposit,journal_default_account_id:0
|
||||
msgid "It acts as a default account for debit amount"
|
||||
msgstr "Deluje kot privzeti konto za znesek obveznosti"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,journal_id:0
|
||||
@@ -227,6 +229,11 @@ msgstr "Dnevniški vnos"
|
||||
msgid "Journal Items"
|
||||
msgstr "Postavke"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,__last_update:0
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,write_uid:0
|
||||
msgid "Last Updated by"
|
||||
@@ -248,7 +255,7 @@ msgid "List of checks:"
|
||||
msgstr "Seznam čekov:"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr "Konto čekovnih depozitov družbe '%s' manjka."
|
||||
@@ -284,8 +291,8 @@ msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -293,7 +300,7 @@ msgid ""
|
||||
msgstr "Ček z zneskom %s in sklicem '%s' je v valuti %s, a depozit je v valuti %s."
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-01-04 11:44+0000\n"
|
||||
"PO-Revision-Date: 2016-01-04 11:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Thai (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/th/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +27,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,12 +122,6 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "บริษัท"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -149,11 +138,6 @@ msgstr ""
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
@@ -164,11 +148,6 @@ msgstr "วันที่"
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
@@ -187,19 +166,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "ฉบับร่าง"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "ผิดพลาด!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -236,18 +202,13 @@ msgstr ""
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -257,21 +218,11 @@ msgstr ""
|
||||
msgid "Name"
|
||||
msgstr "ชื่อ"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
@@ -283,8 +234,8 @@ msgid "Status"
|
||||
msgstr "สถานะ"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,18 +243,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-01-04 11:44+0000\n"
|
||||
"PO-Revision-Date: 2016-01-04 11:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Turkish (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/tr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +27,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,12 +122,6 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "Şirket"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -149,11 +138,6 @@ msgstr ""
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
@@ -164,11 +148,6 @@ msgstr "Tarih"
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
@@ -187,19 +166,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "Taslak"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "Hata!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -236,18 +202,13 @@ msgstr ""
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -257,21 +218,11 @@ msgstr ""
|
||||
msgid "Name"
|
||||
msgstr "Adı"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
@@ -283,8 +234,8 @@ msgid "Status"
|
||||
msgstr "Durum"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,18 +243,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
|
||||
@@ -7,9 +7,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: account-financial-tools (8.0)\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-07-01 13:26+0000\n"
|
||||
"PO-Revision-Date: 2015-06-03 15:58+0000\n"
|
||||
"Last-Translator: <>\n"
|
||||
"POT-Creation-Date: 2016-01-04 11:44+0000\n"
|
||||
"PO-Revision-Date: 2016-01-04 11:47+0000\n"
|
||||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>\n"
|
||||
"Language-Team: Chinese (China) (http://www.transifex.com/oca/OCA-account-financial-tools-8-0/language/zh_CN/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
@@ -27,11 +27,6 @@ msgstr ""
|
||||
msgid "Account for Check Deposits"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: constraint:account.check.deposit:0
|
||||
msgid "All the checks of the deposit must be in the currency of the deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Amount"
|
||||
@@ -76,14 +71,14 @@ msgid "Check Deposit"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:194
|
||||
#: code:addons/account_check_deposit/account_deposit.py:216
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:180
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:202
|
||||
#, python-format
|
||||
msgid "Check Deposit %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:203
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:189
|
||||
#, python-format
|
||||
msgid "Check Deposit - Ref. Check %s"
|
||||
msgstr ""
|
||||
@@ -127,12 +122,6 @@ msgstr ""
|
||||
msgid "Company"
|
||||
msgstr "公司"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:252
|
||||
#, python-format
|
||||
msgid "Configuration Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,create_uid:0
|
||||
msgid "Created by"
|
||||
@@ -149,11 +138,6 @@ msgstr ""
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,currency_none_same_company_id:0
|
||||
msgid "Currency (False if same as company)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Date"
|
||||
@@ -164,11 +148,6 @@ msgstr "日期"
|
||||
msgid "Debtor"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,journal_default_account_id:0
|
||||
msgid "Default Debit Account of the Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
#: field:account.check.deposit,deposit_date:0
|
||||
@@ -187,19 +166,6 @@ msgstr ""
|
||||
msgid "Draft"
|
||||
msgstr "草稿"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:159
|
||||
#, python-format
|
||||
msgid "Error!"
|
||||
msgstr "错误!"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:129
|
||||
#: code:addons/account_check_deposit/account_deposit.py:140
|
||||
#, python-format
|
||||
msgid "Error:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:account.check.deposit:account_check_deposit.view_check_deposit_search
|
||||
msgid "Group By"
|
||||
@@ -236,18 +202,13 @@ msgstr ""
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,line_ids:0
|
||||
msgid "Lines"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "List of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:253
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:232
|
||||
#, python-format
|
||||
msgid "Missing Account for Check Deposits on the company '%s'."
|
||||
msgstr ""
|
||||
@@ -257,21 +218,11 @@ msgstr ""
|
||||
msgid "Name"
|
||||
msgstr "名称"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,check_count:0
|
||||
msgid "Number of Checks"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Number of checks:"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,is_reconcile:0
|
||||
msgid "Reconcile"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Reference"
|
||||
@@ -283,8 +234,8 @@ msgid "Status"
|
||||
msgstr "状态"
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:130
|
||||
#: code:addons/account_check_deposit/account_deposit.py:141
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:123
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:133
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The check with amount %s and reference '%s' is in currency %s but the "
|
||||
@@ -292,18 +243,13 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: code:addons/account_check_deposit/account_deposit.py:160
|
||||
#: code:addons/account_check_deposit/models/account_deposit.py:145
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The deposit '%s' is in valid state, so you must cancel it before deleting "
|
||||
"it."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: field:account.check.deposit,total_amount:0
|
||||
msgid "Total Amount"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_check_deposit
|
||||
#: view:website:account_check_deposit.report_checkdeposit
|
||||
msgid "Total:"
|
||||
|
||||
3
account_check_deposit/models/__init__.py
Normal file
3
account_check_deposit/models/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from . import account_deposit
|
||||
281
account_check_deposit/models/account_deposit.py
Normal file
281
account_check_deposit/models/account_deposit.py
Normal file
@@ -0,0 +1,281 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
###############################################################################
|
||||
#
|
||||
# account_check_deposit for Odoo
|
||||
# Copyright (C) 2012-2015 Akretion (http://www.akretion.com/)
|
||||
# @author: Benoît GUILLOT <benoit.guillot@akretion.com>
|
||||
# @author: Chafique DELLI <chafique.delli@akretion.com>
|
||||
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as
|
||||
# published by the Free Software Foundation, either version 3 of the
|
||||
# License, or (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
###############################################################################
|
||||
|
||||
from openerp import models, fields, api, _
|
||||
import openerp.addons.decimal_precision as dp
|
||||
from openerp.exceptions import ValidationError
|
||||
from openerp.exceptions import Warning as UserError
|
||||
|
||||
|
||||
class AccountCheckDeposit(models.Model):
|
||||
_name = "account.check.deposit"
|
||||
_description = "Account Check Deposit"
|
||||
_order = 'deposit_date desc'
|
||||
|
||||
@api.multi
|
||||
@api.depends(
|
||||
'company_id', 'currency_id', 'check_payment_ids.debit',
|
||||
'check_payment_ids.amount_currency',
|
||||
'move_id.line_id.reconcile_id')
|
||||
def _compute_check_deposit(self):
|
||||
for deposit in self:
|
||||
total = 0.0
|
||||
count = 0
|
||||
reconcile = False
|
||||
currency_none_same_company_id = False
|
||||
if deposit.company_id.currency_id != deposit.currency_id:
|
||||
currency_none_same_company_id = deposit.currency_id.id
|
||||
for line in deposit.check_payment_ids:
|
||||
count += 1
|
||||
if currency_none_same_company_id:
|
||||
total += line.amount_currency
|
||||
else:
|
||||
total += line.debit
|
||||
if deposit.move_id:
|
||||
for line in deposit.move_id.line_id:
|
||||
if line.debit > 0 and line.reconcile_id:
|
||||
reconcile = True
|
||||
deposit.total_amount = total
|
||||
deposit.is_reconcile = reconcile
|
||||
deposit.currency_none_same_company_id =\
|
||||
currency_none_same_company_id
|
||||
deposit.check_count = count
|
||||
|
||||
name = fields.Char(string='Name', size=64, readonly=True, default='/')
|
||||
check_payment_ids = fields.One2many(
|
||||
'account.move.line', 'check_deposit_id', string='Check Payments',
|
||||
states={'done': [('readonly', '=', True)]})
|
||||
deposit_date = fields.Date(
|
||||
string='Deposit Date', required=True,
|
||||
states={'done': [('readonly', '=', True)]},
|
||||
default=fields.Date.context_today)
|
||||
journal_id = fields.Many2one(
|
||||
'account.journal', string='Journal', domain=[('type', '=', 'bank')],
|
||||
required=True, states={'done': [('readonly', '=', True)]})
|
||||
journal_default_account_id = fields.Many2one(
|
||||
'account.account', related='journal_id.default_debit_account_id',
|
||||
string='Default Debit Account of the Journal', readonly=True)
|
||||
currency_id = fields.Many2one(
|
||||
'res.currency', string='Currency', required=True,
|
||||
states={'done': [('readonly', '=', True)]})
|
||||
currency_none_same_company_id = fields.Many2one(
|
||||
'res.currency', compute='_compute_check_deposit',
|
||||
string='Currency (False if same as company)')
|
||||
state = fields.Selection([
|
||||
('draft', 'Draft'),
|
||||
('done', 'Done'),
|
||||
], string='Status', default='draft', readonly=True)
|
||||
move_id = fields.Many2one(
|
||||
'account.move', string='Journal Entry', readonly=True)
|
||||
partner_bank_id = fields.Many2one(
|
||||
'res.partner.bank', string='Bank Account', required=True,
|
||||
domain="[('company_id', '=', company_id)]",
|
||||
states={'done': [('readonly', '=', True)]})
|
||||
line_ids = fields.One2many(
|
||||
'account.move.line', related='move_id.line_id',
|
||||
string='Lines', readonly=True)
|
||||
company_id = fields.Many2one(
|
||||
'res.company', string='Company', required=True,
|
||||
states={'done': [('readonly', '=', True)]},
|
||||
default=lambda self: self.env['res.company']._company_default_get(
|
||||
'account.check.deposit'))
|
||||
total_amount = fields.Float(
|
||||
compute='_compute_check_deposit',
|
||||
string="Total Amount", readonly=True,
|
||||
digits=dp.get_precision('Account'))
|
||||
check_count = fields.Integer(
|
||||
compute='_compute_check_deposit', readonly=True,
|
||||
string="Number of Checks")
|
||||
is_reconcile = fields.Boolean(
|
||||
compute='_compute_check_deposit', readonly=True,
|
||||
string="Reconcile")
|
||||
|
||||
@api.multi
|
||||
@api.constrains('currency_id', 'check_payment_ids', 'company_id')
|
||||
def _check_deposit(self):
|
||||
for deposit in self:
|
||||
deposit_currency = deposit.currency_id
|
||||
if deposit_currency == deposit.company_id.currency_id:
|
||||
for line in deposit.check_payment_ids:
|
||||
if line.currency_id:
|
||||
raise ValidationError(
|
||||
_("The check with amount %s and reference '%s' "
|
||||
"is in currency %s but the deposit is in "
|
||||
"currency %s.") % (
|
||||
line.debit, line.ref or '',
|
||||
line.currency_id.name,
|
||||
deposit_currency.name))
|
||||
else:
|
||||
for line in deposit.check_payment_ids:
|
||||
if line.currency_id != deposit_currency:
|
||||
raise ValidationError(
|
||||
_("The check with amount %s and reference '%s' "
|
||||
"is in currency %s but the deposit is in "
|
||||
"currency %s.") % (
|
||||
line.debit, line.ref or '',
|
||||
line.currency_id.name,
|
||||
deposit_currency.name))
|
||||
|
||||
@api.multi
|
||||
def unlink(self):
|
||||
for deposit in self:
|
||||
if deposit.state == 'done':
|
||||
raise UserError(
|
||||
_("The deposit '%s' is in valid state, so you must "
|
||||
"cancel it before deleting it.")
|
||||
% deposit.name)
|
||||
return super(AccountCheckDeposit, self).unlink()
|
||||
|
||||
@api.multi
|
||||
def backtodraft(self):
|
||||
for deposit in self:
|
||||
if deposit.move_id:
|
||||
# It will raise here if journal_id.update_posted = False
|
||||
deposit.move_id.button_cancel()
|
||||
for line in deposit.check_payment_ids:
|
||||
if line.reconcile_id:
|
||||
line.reconcile_id.unlink()
|
||||
deposit.move_id.unlink()
|
||||
deposit.write({'state': 'draft'})
|
||||
return True
|
||||
|
||||
@api.model
|
||||
def create(self, vals):
|
||||
if vals.get('name', '/') == '/':
|
||||
vals['name'] = self.env['ir.sequence'].\
|
||||
next_by_code('account.check.deposit')
|
||||
return super(AccountCheckDeposit, self).create(vals)
|
||||
|
||||
@api.model
|
||||
def _prepare_account_move_vals(self, deposit):
|
||||
date = deposit.deposit_date
|
||||
period_obj = self.env['account.period']
|
||||
period_ids = period_obj.find(dt=date)
|
||||
# period_ids will always have a value, cf the code of find()
|
||||
move_vals = {
|
||||
'journal_id': deposit.journal_id.id,
|
||||
'date': date,
|
||||
'period_id': period_ids[0].id,
|
||||
'name': _('Check Deposit %s') % deposit.name,
|
||||
'ref': deposit.name,
|
||||
}
|
||||
return move_vals
|
||||
|
||||
@api.model
|
||||
def _prepare_move_line_vals(self, line):
|
||||
assert (line.debit > 0), 'Debit must have a value'
|
||||
return {
|
||||
'name': _('Check Deposit - Ref. Check %s') % line.ref,
|
||||
'credit': line.debit,
|
||||
'debit': 0.0,
|
||||
'account_id': line.account_id.id,
|
||||
'partner_id': line.partner_id.id,
|
||||
'currency_id': line.currency_id.id or False,
|
||||
'amount_currency': line.amount_currency * -1,
|
||||
}
|
||||
|
||||
@api.model
|
||||
def _prepare_counterpart_move_lines_vals(
|
||||
self, deposit, total_debit, total_amount_currency):
|
||||
return {
|
||||
'name': _('Check Deposit %s') % deposit.name,
|
||||
'debit': total_debit,
|
||||
'credit': 0.0,
|
||||
'account_id': deposit.company_id.check_deposit_account_id.id,
|
||||
'partner_id': False,
|
||||
'currency_id': deposit.currency_none_same_company_id.id or False,
|
||||
'amount_currency': total_amount_currency,
|
||||
}
|
||||
|
||||
@api.multi
|
||||
def validate_deposit(self):
|
||||
am_obj = self.env['account.move']
|
||||
aml_obj = self.env['account.move.line']
|
||||
for deposit in self:
|
||||
move_vals = self._prepare_account_move_vals(deposit)
|
||||
move = am_obj.create(move_vals)
|
||||
total_debit = 0.0
|
||||
total_amount_currency = 0.0
|
||||
to_reconcile_lines = []
|
||||
for line in deposit.check_payment_ids:
|
||||
total_debit += line.debit
|
||||
total_amount_currency += line.amount_currency
|
||||
line_vals = self._prepare_move_line_vals(line)
|
||||
line_vals['move_id'] = move.id
|
||||
move_line = aml_obj.create(line_vals)
|
||||
to_reconcile_lines.append(line + move_line)
|
||||
|
||||
# Create counter-part
|
||||
if not deposit.company_id.check_deposit_account_id:
|
||||
raise UserError(
|
||||
_("Missing Account for Check Deposits on the "
|
||||
"company '%s'.") % deposit.company_id.name)
|
||||
|
||||
counter_vals = self._prepare_counterpart_move_lines_vals(
|
||||
deposit, total_debit, total_amount_currency)
|
||||
counter_vals['move_id'] = move.id
|
||||
aml_obj.create(counter_vals)
|
||||
|
||||
move.post()
|
||||
deposit.write({'state': 'done', 'move_id': move.id})
|
||||
# We have to reconcile after post()
|
||||
for reconcile_lines in to_reconcile_lines:
|
||||
reconcile_lines.reconcile()
|
||||
return True
|
||||
|
||||
@api.onchange('company_id')
|
||||
def onchange_company_id(self):
|
||||
if self.company_id:
|
||||
partner_banks = self.env['res.partner.bank'].search(
|
||||
[('company_id', '=', self.company_id.id)])
|
||||
if len(partner_banks) == 1:
|
||||
self.partner_bank_id = partner_banks[0]
|
||||
else:
|
||||
self.partner_bank_id = False
|
||||
|
||||
@api.onchange('journal_id')
|
||||
def onchange_journal_id(self):
|
||||
if self.journal_id:
|
||||
if self.journal_id.currency:
|
||||
self.currency_id = self.journal_id.currency
|
||||
else:
|
||||
self.currency_id = self.journal_id.company_id.currency_id
|
||||
|
||||
|
||||
class AccountMoveLine(models.Model):
|
||||
_inherit = "account.move.line"
|
||||
|
||||
check_deposit_id = fields.Many2one(
|
||||
'account.check.deposit', string='Check Deposit', copy=False)
|
||||
|
||||
|
||||
class ResCompany(models.Model):
|
||||
_inherit = 'res.company'
|
||||
|
||||
check_deposit_account_id = fields.Many2one(
|
||||
'account.account', string='Account for Check Deposits', copy=False,
|
||||
domain=[
|
||||
('type', '<>', 'view'),
|
||||
('type', '<>', 'closed'),
|
||||
('reconcile', '=', True)])
|
||||
@@ -34,18 +34,15 @@
|
||||
<group name="left">
|
||||
<field name="deposit_date" />
|
||||
<field name="journal_id"
|
||||
widget="selection"
|
||||
on_change="onchange_journal_id(journal_id, context)"/>
|
||||
widget="selection"/>
|
||||
<field name="journal_default_account_id"
|
||||
invisible="1"/>
|
||||
<field name="currency_id"
|
||||
groups="base.group_multi_currency"
|
||||
on_change="onchange_currency_id(currency_id, company_id, context)"/>
|
||||
groups="base.group_multi_currency"/>
|
||||
<field name="partner_bank_id"/>
|
||||
</group>
|
||||
<group name="right">
|
||||
<field name="company_id"
|
||||
on_change="onchange_company_id(company_id, currency_id, context)"
|
||||
groups="base.group_multi_company"/>
|
||||
<field name="currency_none_same_company_id"
|
||||
invisible="1"/>
|
||||
Reference in New Issue
Block a user