← Back to team overview

credativ team mailing list archive

[Merge] lp:~therp-nl/openupgrade-addons/6.1-merge_openobject-addons into lp:openupgrade-addons

 

Holger Brunn (Therp) has proposed merging lp:~therp-nl/openupgrade-addons/6.1-merge_openobject-addons into lp:openupgrade-addons.

Requested reviews:
  OpenUpgrade Committers (openupgrade-committers)

For more details, see:
https://code.launchpad.net/~therp-nl/openupgrade-addons/6.1-merge_openobject-addons/+merge/108928
-- 
The attached diff has been truncated due to its size.
https://code.launchpad.net/~therp-nl/openupgrade-addons/6.1-merge_openobject-addons/+merge/108928
Your team OpenUpgrade Committers is requested to review the proposed merge of lp:~therp-nl/openupgrade-addons/6.1-merge_openobject-addons into lp:openupgrade-addons.
=== modified file 'account/__openerp__.py'
--- account/__openerp__.py	2012-01-31 13:36:57 +0000
+++ account/__openerp__.py	2012-06-06 12:41:23 +0000
@@ -133,7 +133,7 @@
         'project/analytic_account_demo.xml',
         'demo/account_minimal.xml',
         'demo/account_invoice_demo.xml',
-#        'account_unit_test.xml',
+        #'account_unit_test.xml',
     ],
     'test': [
         'test/account_customer_invoice.yml',

=== modified file 'account/account.py'
--- account/account.py	2012-02-15 09:38:17 +0000
+++ account/account.py	2012-06-06 12:41:23 +0000
@@ -1079,7 +1079,7 @@
 
     def build_ctx_periods(self, cr, uid, period_from_id, period_to_id):
         if period_from_id == period_to_id:
-            return period_from_id
+            return [period_from_id]
         period_from = self.browse(cr, uid, period_from_id)
         period_date_start = period_from.date_start
         company1_id = period_from.company_id.id
@@ -1652,7 +1652,7 @@
         'create_date': fields.date('Creation date', readonly=True),
     }
     _defaults = {
-        'name': lambda self,cr,uid,ctx={}: self.pool.get('ir.sequence').get(cr, uid, 'account.reconcile') or '/',
+        'name': lambda self,cr,uid,ctx=None: self.pool.get('ir.sequence').get(cr, uid, 'account.reconcile', context=ctx) or '/',
     }
 
     def reconcile_partial_check(self, cr, uid, ids, type='auto', context=None):

=== modified file 'account/account_bank_statement.py'
--- account/account_bank_statement.py	2012-02-14 12:25:20 +0000
+++ account/account_bank_statement.py	2012-06-06 12:41:23 +0000
@@ -341,11 +341,11 @@
             if not st.name == '/':
                 st_number = st.name
             else:
+                c = {'fiscalyear_id': st.period_id.fiscalyear_id.id}
                 if st.journal_id.sequence_id:
-                    c = {'fiscalyear_id': st.period_id.fiscalyear_id.id}
                     st_number = obj_seq.next_by_id(cr, uid, st.journal_id.sequence_id.id, context=c)
                 else:
-                    st_number = obj_seq.next_by_code(cr, uid, 'account.bank.statement')
+                    st_number = obj_seq.next_by_code(cr, uid, 'account.bank.statement', context=c)
 
             for line in st.move_line_ids:
                 if line.state <> 'valid':

=== modified file 'account/account_cash_statement.py'
--- account/account_cash_statement.py	2011-12-31 07:57:20 +0000
+++ account/account_cash_statement.py	2012-06-06 12:41:23 +0000
@@ -214,11 +214,12 @@
         if self.pool.get('account.journal').browse(cr, uid, vals['journal_id'], context=context).type == 'cash':
             open_close = self._get_cash_open_close_box_lines(cr, uid, context)
             if vals.get('starting_details_ids', False):
-                for start in vals.get('starting_details_ids'):
-                    dict_val = start[2]
+                starting_details_ids = vals.get('starting_details_ids')
+                for start in starting_details_ids:
+                    dict_val = start[2] or {}
                     for end in open_close['end']:
-                       if end[2]['pieces'] == dict_val['pieces']:
-                           end[2]['number'] += dict_val['number']
+                       if end[2]['pieces'] == dict_val.get('pieces', 0.0):
+                           end[2]['number'] += dict_val.get('number', 0.0)
             vals.update({
 #                'ending_details_ids': open_close['start'],
                 'starting_details_ids': open_close['end']
@@ -292,11 +293,11 @@
                 raise osv.except_osv(_('Error !'), (_('User %s does not have rights to access %s journal !') % (statement.user_id.name, statement.journal_id.name)))
 
             if statement.name and statement.name == '/':
+                c = {'fiscalyear_id': statement.period_id.fiscalyear_id.id}
                 if statement.journal_id.sequence_id:
-                    c = {'fiscalyear_id': statement.period_id.fiscalyear_id.id}
                     st_number = obj_seq.next_by_id(cr, uid, statement.journal_id.sequence_id.id, context=c)
                 else:
-                    st_number = obj_seq.next_by_code(cr, uid, 'account.cash.statement')
+                    st_number = obj_seq.next_by_code(cr, uid, 'account.cash.statement', context=c)
                 vals.update({
                     'name': st_number
                 })

=== modified file 'account/account_invoice.py'
--- account/account_invoice.py	2012-02-16 19:11:07 +0000
+++ account/account_invoice.py	2012-06-06 12:41:23 +0000
@@ -80,8 +80,11 @@
 
     def _reconciled(self, cr, uid, ids, name, args, context=None):
         res = {}
-        for id in ids:
-            res[id] = self.test_paid(cr, uid, [id])
+        wf_service = netsvc.LocalService("workflow")
+        for inv in self.browse(cr, uid, ids, context=context):
+            res[inv.id] = self.test_paid(cr, uid, [inv.id])
+            if not res[inv.id] and inv.state == 'paid':
+                wf_service.trg_validate(uid, 'account.invoice', inv.id, 'open_test', cr)
         return res
 
     def _get_reference_type(self, cr, uid, context=None):
@@ -1092,7 +1095,7 @@
         return map(lambda x: (0,0,x), lines)
 
     def refund(self, cr, uid, ids, date=None, period_id=None, description=None, journal_id=None):
-        invoices = self.read(cr, uid, ids, ['name', 'type', 'number', 'reference', 'comment', 'date_due', 'partner_id', 'address_contact_id', 'address_invoice_id', 'partner_contact', 'partner_insite', 'partner_ref', 'payment_term', 'account_id', 'currency_id', 'invoice_line', 'tax_line', 'journal_id'])
+        invoices = self.read(cr, uid, ids, ['name', 'type', 'number', 'reference', 'comment', 'date_due', 'partner_id', 'address_contact_id', 'address_invoice_id', 'partner_contact', 'partner_insite', 'partner_ref', 'payment_term', 'account_id', 'currency_id', 'invoice_line', 'tax_line', 'journal_id', 'user_id', 'fiscal_position'])
         obj_invoice_line = self.pool.get('account.invoice.line')
         obj_invoice_tax = self.pool.get('account.invoice.tax')
         obj_journal = self.pool.get('account.journal')
@@ -1141,7 +1144,8 @@
                 })
             # take the id part of the tuple returned for many2one fields
             for field in ('address_contact_id', 'address_invoice_id', 'partner_id',
-                    'account_id', 'currency_id', 'payment_term', 'journal_id'):
+                    'account_id', 'currency_id', 'payment_term', 'journal_id',
+                    'user_id', 'fiscal_position'):
                 invoice[field] = invoice[field] and invoice[field][0]
             # create the new invoice
             new_ids.append(self.create(cr, uid, invoice))

=== modified file 'account/account_move_line.py'
--- account/account_move_line.py	2012-02-13 18:07:41 +0000
+++ account/account_move_line.py	2012-06-06 12:41:23 +0000
@@ -827,7 +827,12 @@
         if r[0][1] != None:
             raise osv.except_osv(_('Error'), _('Some entries are already reconciled !'))
 
-        if (not currency_obj.is_zero(cr, uid, account.company_id.currency_id, writeoff)) or \
+        if context.get('fy_closing'):
+            # We don't want to generate any write-off when being called from the
+            # wizard used to close a fiscal year (and it doesn't give us any
+            # writeoff_acc_id).
+            pass
+        elif (not currency_obj.is_zero(cr, uid, account.company_id.currency_id, writeoff)) or \
            (account.currency_id and (not currency_obj.is_zero(cr, uid, account.currency_id, currency))):
             if not writeoff_acc_id:
                 raise osv.except_osv(_('Warning'), _('You have to provide an account for the write off/exchange difference entry !'))

=== modified file 'account/edi/invoice_action_data.xml'
--- account/edi/invoice_action_data.xml	2011-11-09 17:38:17 +0000
+++ account/edi/invoice_action_data.xml	2012-06-06 12:41:23 +0000
@@ -43,8 +43,9 @@
             <field name="email_to">${object.address_invoice_id.email or ''}</field>
             <field name="model_id" ref="account.model_account_invoice"/>
             <field name="auto_delete" eval="True"/>
+            <field name="lang">${object.partner_id.lang}</field>
             <field name="body_html"><![CDATA[
-<div style="font-family: 'Lucica Grande', Ubuntu, Arial, Verdana, sans-serif; font-size: 12px; color: rgb(34, 34, 34); background-color: rgb(255, 255, 255); ">
+<div style="font-family: 'Lucica Grande', Ubuntu, Arial, Verdana, sans-serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; ">
 
     <p>Hello${object.address_invoice_id.name and ' ' or ''}${object.address_invoice_id.name or ''},</p>
     
@@ -64,7 +65,7 @@
     <p>
     You can view the invoice document, download it and pay online using the following link:
     </p>
-            <a style="display:block; width: 150px; height:20px; margin-left: 120px; color: #FFF; font-family: 'Lucida Grande', Helvetica, Arial, sans-serif; font-size: 13px; font-weight: bold; text-align: center; text-decoration: none !important; line-height: 1; padding: 5px 0px 0px 0px; background-color: #8E0000; border-radius: 5px 5px; background-repeat: repeat no-repeat;" 
+            <a style="display:block; width: 150px; height:20px; margin-left: 120px; color: #DDD; font-family: 'Lucida Grande', Helvetica, Arial, sans-serif; font-size: 13px; font-weight: bold; text-align: center; text-decoration: none !important; line-height: 1; padding: 5px 0px 0px 0px; background-color: #8E0000; border-radius: 5px 5px; background-repeat: repeat no-repeat;" 
                href="${ctx.get('edi_web_url_view') or ''}">View Invoice</a>
     
     % if object.company_id.paypal_account and object.type in ('out_invoice', 'in_refund'):
@@ -91,7 +92,7 @@
     <br/>
     <br/>
     <div style="width: 375px; margin: 0px; padding: 0px; background-color: #8E0000; border-top-left-radius: 5px 5px; border-top-right-radius: 5px 5px; background-repeat: repeat no-repeat;">
-        <h3 style="margin: 0px; padding: 2px 14px; font-size: 12px; color: #FFF;">
+        <h3 style="margin: 0px; padding: 2px 14px; font-size: 12px; color: #DDD;">
             <strong style="text-transform:uppercase;">${object.company_id.name}</strong></h3>
     </div>
     <div style="width: 347px; margin: 0px; padding: 5px 14px; line-height: 16px; background-color: #F2F2F2;">

=== modified file 'account/i18n/ar.po'
--- account/i18n/ar.po	2012-02-28 06:30:37 +0000
+++ account/i18n/ar.po	2012-06-06 12:41:23 +0000
@@ -7,14 +7,14 @@
 "Project-Id-Version: OpenERP Server 6.0dev\n"
 "Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
 "POT-Creation-Date: 2012-02-08 00:35+0000\n"
-"PO-Revision-Date: 2012-02-27 23:56+0000\n"
+"PO-Revision-Date: 2012-04-29 12:51+0000\n"
 "Last-Translator: kifcaliph <Unknown>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-28 06:30+0000\n"
-"X-Generator: Launchpad (build 14874)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:17+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0
@@ -1364,7 +1364,7 @@
 #. module: account
 #: model:account.financial.report,name:account.account_financial_report_profitandloss0
 msgid "Profit and Loss"
-msgstr ""
+msgstr "الأرباح و الخسائر"
 
 #. module: account
 #: model:ir.model,name:account.model_account_account_template
@@ -2329,7 +2329,7 @@
 #. module: account
 #: constraint:res.partner:0
 msgid "Error ! You cannot create recursive associated members."
-msgstr ""
+msgstr "خطأ ! لا يمكنك إنشاء أعضاء مرتبطين و متداخلين."
 
 #. module: account
 #: field:account.sequence.fiscalyear,sequence_main_id:0
@@ -2732,7 +2732,7 @@
 #. module: account
 #: field:account.invoice,reference_type:0
 msgid "Communication Type"
-msgstr ""
+msgstr "نوع الاتصال"
 
 #. module: account
 #: field:account.invoice.line,discount:0
@@ -3063,7 +3063,7 @@
 #: view:account.invoice.report:0
 #: view:analytic.entries.report:0
 msgid "Month-1"
-msgstr ""
+msgstr "شهر-1"
 
 #. module: account
 #: view:account.analytic.line:0
@@ -3324,7 +3324,7 @@
 #. module: account
 #: constraint:account.invoice:0
 msgid "Invalid BBA Structured Communication !"
-msgstr ""
+msgstr "خطأ في إتصال قاعدة البيانات"
 
 #. module: account
 #: help:account.analytic.line,amount_currency:0
@@ -4815,7 +4815,7 @@
 #. module: account
 #: sql_constraint:account.invoice:0
 msgid "Invoice Number must be unique per Company!"
-msgstr ""
+msgstr "رقم الفاتورة يجب أن يكون فريداً داخل المشأة !"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_receivable_graph
@@ -5467,7 +5467,7 @@
 #. module: account
 #: selection:account.financial.report,style_overwrite:0
 msgid "Normal Text"
-msgstr ""
+msgstr "نص عادي"
 
 #. module: account
 #: view:account.invoice.refund:0
@@ -6190,7 +6190,7 @@
 #: model:account.account.type,name:account.data_account_type_receivable
 #: selection:account.entries.report,type:0
 msgid "Receivable"
-msgstr "المدينون"
+msgstr "الدائنون"
 
 #. module: account
 #: constraint:account.move.line:0
@@ -6714,7 +6714,7 @@
 #: code:addons/account/account_move_line.py:591
 #, python-format
 msgid "Error :"
-msgstr ""
+msgstr "خطأ :"
 
 #. module: account
 #: view:account.analytic.line:0
@@ -7068,7 +7068,7 @@
 #. module: account
 #: help:account.tax,amount:0
 msgid "For taxes of type percentage, enter % ratio between 0-1."
-msgstr "من اجل الضرائب للنسبة المئوية للنوع, ادخل نسبة %بين 0-1."
+msgstr "للضرائب من نوع نسبة مئوية، ادخل نسبة % بين ٠‎ - ١."
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_subscription_form
@@ -7119,7 +7119,7 @@
 #. module: account
 #: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation
 msgid "Monthly Turnover"
-msgstr "رأس مال شهري"
+msgstr "دورة الشهر"
 
 #. module: account
 #: view:account.move:0
@@ -7465,7 +7465,7 @@
 #: model:ir.actions.act_window,name:account.action_email_templates
 #: model:ir.ui.menu,name:account.menu_email_templates
 msgid "Email Templates"
-msgstr ""
+msgstr "قوالب البريد الإلكتروني"
 
 #. module: account
 #: view:account.move.line:0
@@ -7505,7 +7505,7 @@
 #. module: account
 #: field:account.model.line,date_maturity:0
 msgid "Maturity Date"
-msgstr ""
+msgstr "تاريخ الاستحقاق"
 
 #. module: account
 #: code:addons/account/account_move_line.py:1302
@@ -8669,7 +8669,7 @@
 #. module: account
 #: model:res.groups,name:account.group_account_invoice
 msgid "Invoicing & Payments"
-msgstr ""
+msgstr "الفواتير و المدفوعات"
 
 #. module: account
 #: help:account.invoice,internal_number:0
@@ -9224,7 +9224,7 @@
 #. module: account
 #: view:account.analytic.account:0
 msgid "Contract Data"
-msgstr ""
+msgstr "بيانات العقد"
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_account_moves_sale

=== modified file 'account/i18n/bg.po'
--- account/i18n/bg.po	2012-02-18 07:13:28 +0000
+++ account/i18n/bg.po	2012-06-06 12:41:23 +0000
@@ -7,20 +7,20 @@
 "Project-Id-Version: OpenERP Server 6.0dev\n"
 "Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
 "POT-Creation-Date: 2012-02-08 00:35+0000\n"
-"PO-Revision-Date: 2012-02-17 09:10+0000\n"
-"Last-Translator: Dimitar Markov <dimitar.markov@xxxxxxxxx>\n"
+"PO-Revision-Date: 2012-04-28 02:09+0000\n"
+"Last-Translator: Rado Serafimov <rserafimov@xxxxxxxxx>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:03+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:18+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0
 #: view:analytic.entries.report:0
 msgid "last month"
-msgstr ""
+msgstr "предходен месец"
 
 #. module: account
 #: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@@ -38,6 +38,8 @@
 "Determine the display order in the report 'Accounting \\ Reporting \\ "
 "Generic Reporting \\ Taxes \\ Taxes Report'"
 msgstr ""
+"Определяне на реда на извеждане в справката 'Счетоводство\\ Справки \\ Общи "
+"справки \\ Данъци \\ Справка за данъците'"
 
 #. module: account
 #: view:account.move.reconcile:0
@@ -50,12 +52,12 @@
 #: view:account.move:0
 #: view:account.move.line:0
 msgid "Account Statistics"
-msgstr "Статистики за сметка"
+msgstr "Статистика за сметката"
 
 #. module: account
 #: view:account.invoice:0
 msgid "Proforma/Open/Paid Invoices"
-msgstr ""
+msgstr "Проформа/Отворени/Платени Фактури"
 
 #. module: account
 #: field:report.invoice.created,residual:0
@@ -75,13 +77,13 @@
 #. module: account
 #: view:account.tax:0
 msgid "Children Definition"
-msgstr "Дефиниране на подчинени"
+msgstr "Определяне на елементи тип \"дете\""
 
 #. module: account
 #: code:addons/account/account_bank_statement.py:302
 #, python-format
 msgid "Journal item \"%s\" is not valid."
-msgstr ""
+msgstr "Елемент \"%s\" от дневника е невалиден."
 
 #. module: account
 #: model:ir.model,name:account.model_report_aged_receivable
@@ -109,8 +111,9 @@
 "If you unreconciliate transactions, you must also verify all the actions "
 "that are linked to those transactions because they will not be disabled"
 msgstr ""
-"Ако върнете изравняване на транзакции, трябва да проверите всички действия "
-"свързани с тези транзакции понеже те няма да бъдат премахнати"
+"В случай че анулирате съответствието на транзакции,моля да проверите всички "
+"действия свързани с тези транзакции, тъй като тези действия няма да бъдат "
+"премахнати автоматично"
 
 #. module: account
 #: constraint:account.journal:0
@@ -118,6 +121,8 @@
 "Configuration error! The currency chosen should be shared by the default "
 "accounts too."
 msgstr ""
+"Грешка в настройките! Избраната валута следва да се ползва и от стандартно "
+"настроените сметки."
 
 #. module: account
 #: report:account.invoice:0
@@ -204,8 +209,9 @@
 "invoice) to create analytic entries, OpenERP will look for a matching "
 "journal of the same type."
 msgstr ""
-"Дава типа на аналитичния дневник. Когато документ (напр. фактура) трябва да "
-"направи аналитичен запис, Open ERP ще търси съвпадащ дневник от същия тип."
+"Показва типа на аналитичния дневник. Когато даден документ (напр. фактура) "
+"трябва да направи аналитичен запис, Open ERP търси съответстващ дневник от "
+"същия тип."
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_tax_template_form
@@ -252,7 +258,7 @@
 #: code:addons/account/account_move_line.py:1200
 #, python-format
 msgid "You can not add/modify entries in a closed journal."
-msgstr "Не може да добавяте/променяте записи в затворен дневник."
+msgstr "Не може да добавяте/променяте записи в закрит дневник."
 
 #. module: account
 #: help:account.account,user_type:0
@@ -261,6 +267,10 @@
 "legal reports, and set the rules to close a fiscal year and generate opening "
 "entries."
 msgstr ""
+"Типът на сметката има информативен характер и служи за извеждането на "
+"специфични за съответната страна, изисквани по закон справки и определянето "
+"на правила за закриване и откриване на фискална година, както и създаването "
+"на свързаните с това записи."
 
 #. module: account
 #: report:account.overdue:0
@@ -303,7 +313,7 @@
 #. module: account
 #: field:account.journal.column,field:0
 msgid "Field Name"
-msgstr "Име на поле"
+msgstr "Име на полето"
 
 #. module: account
 #: help:account.installer,charts:0
@@ -311,7 +321,7 @@
 "Installs localized accounting charts to match as closely as possible the "
 "accounting needs of your company based on your country."
 msgstr ""
-"Инсталира локализиран сметкоплан, който да отговарят в максимална степен на "
+"Инсталира локализиран сметкоплан, който да отговаря в максимална степен на "
 "счетоводните нужди на вашата фирма на база държава."
 
 #. module: account
@@ -322,7 +332,7 @@
 "\n"
 "You can create one in the menu: \n"
 "Configuration/Financial Accounting/Accounts/Journals."
-msgstr ""
+msgstr "Липса на счетоводен дневник от тип %s за тази фирма"
 
 #. module: account
 #: model:ir.model,name:account.model_account_unreconcile
@@ -333,7 +343,7 @@
 #: view:product.product:0
 #: view:product.template:0
 msgid "Purchase Properties"
-msgstr "Параметри на поръчка"
+msgstr ""
 
 #. module: account
 #: help:account.financial.report,style_overwrite:0
@@ -342,6 +352,9 @@
 "leave the automatic formatting, it will be computed based on the financial "
 "reports hierarchy (auto-computed field 'level')."
 msgstr ""
+"Тук можете да настроите формата на извеждане на този запис. В случай че "
+"оставите автоматичното форматиране, то ще се изчисли въз основа на "
+"йерархията на финансовите отчети (атоматично изчислено поле 'level')."
 
 #. module: account
 #: view:account.installer:0
@@ -369,6 +382,7 @@
 #: constraint:account.move.line:0
 msgid "You can not create journal items on an account of type view."
 msgstr ""
+"Сметка от тип view не може да се ползва за създаването на записи в дневник"
 
 #. module: account
 #: model:ir.model,name:account.model_account_tax_template
@@ -412,8 +426,8 @@
 "This field contains the informatin related to the numbering of the journal "
 "entries of this journal."
 msgstr ""
-"Това поле съдържа информацията свързана с номерирането на журналните записи "
-"в този журнал."
+"Това поле съдържа информация свързана с номерирането на записите в този "
+"дневник."
 
 #. module: account
 #: field:account.journal,default_debit_account_id:0
@@ -446,7 +460,7 @@
 #. module: account
 #: field:accounting.report,enable_filter:0
 msgid "Enable Comparison"
-msgstr ""
+msgstr "Разреши Сравняване"
 
 #. module: account
 #: help:account.journal.period,state:0
@@ -455,9 +469,9 @@
 "it comes to 'Printed' state. When all transactions are done, it comes in "
 "'Done' state."
 msgstr ""
-"Когато се създава период в журнала състоянието му е \"Проект\". Ако се "
-"печата справка състоянието става \"Отпечатан/а\". Когато всички транзакции "
-"са завършени, състоянието става \"Готов/а\"."
+"При създаване на период в дневника състоянието му е \"Проект\". При "
+"отпечатване на справка състоянието се променя на \"Отпечатан/а\". Когато "
+"всички транзакции са завършени, състоянието става \"Готов/а\"."
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_account_tax_chart
@@ -467,6 +481,10 @@
 "amount of each area of the tax declaration for your country. It’s presented "
 "in a hierarchical structure, which can be modified to fit your needs."
 msgstr ""
+"План на данъците е изглед, отразяващ структурата на Данъчните Cases (или "
+"данъчните кодове) и показва текущата данъчна ситуация. Планът отразява "
+"сумата за всяка област на данъчно деклариране във вашата страна. Планът има "
+"йерархична структура, която позволява адаптирането му към вашите нужди."
 
 #. module: account
 #: view:account.analytic.line:0
@@ -496,7 +514,7 @@
 #: model:ir.model,name:account.model_account_journal
 #: field:validate.account.move,journal_id:0
 msgid "Journal"
-msgstr "Журнал"
+msgstr "Дневник"
 
 #. module: account
 #: model:ir.model,name:account.model_account_invoice_confirm
@@ -511,7 +529,7 @@
 #. module: account
 #: field:account.bank.statement,account_id:0
 msgid "Account used in this journal"
-msgstr "Смтека използвана в този журнал"
+msgstr "Смтека използвана в този дневник"
 
 #. module: account
 #: help:account.aged.trial.balance,chart_account_id:0
@@ -592,7 +610,7 @@
 #. module: account
 #: selection:account.installer,period:0
 msgid "3 Monthly"
-msgstr "На 3 месеца"
+msgstr "Тримесечно"
 
 #. module: account
 #: view:account.unreconcile.reconcile:0
@@ -600,8 +618,9 @@
 "If you unreconciliate transactions, you must also verify all the actions "
 "that are linked to those transactions because they will not be disable"
 msgstr ""
-"Ако върнете изравняване на транзакции трябва да проверите всички действия "
-"свързани с тази транзакции понеже те няма да бъдат забранени"
+"В случай че анулирате изравняване на транзакции трябва да проверите всички "
+"действия свързани с тези транзакции тъй като те няма да бъдат автоматично "
+"спрени"
 
 #. module: account
 #: view:analytic.entries.report:0
@@ -638,12 +657,12 @@
 #: code:addons/account/account_move_line.py:1251
 #, python-format
 msgid "No period found or more than one period found for the given date."
-msgstr ""
+msgstr "Липса на период или множество намерени периоди за тази дата."
 
 #. module: account
 #: field:account.invoice.tax,tax_amount:0
 msgid "Tax Code Amount"
-msgstr "Код на количество сума"
+msgstr "Сума за данъчен код"
 
 #. module: account
 #: code:addons/account/account.py:3116
@@ -697,6 +716,8 @@
 "The date of your Journal Entry is not in the defined period! You should "
 "change the date or remove this constraint from the journal."
 msgstr ""
+"Датата на записа не съответства на зададения в дневника период. Моля сменете "
+"датата или премахнете ограничението в дневника."
 
 #. module: account
 #: model:ir.model,name:account.model_account_report_general_ledger
@@ -706,7 +727,7 @@
 #. module: account
 #: view:account.invoice:0
 msgid "Re-Open"
-msgstr "Отвари отново"
+msgstr "Отвори отново"
 
 #. module: account
 #: view:account.use.model:0
@@ -726,12 +747,12 @@
 #. module: account
 #: view:report.hr.timesheet.invoice.journal:0
 msgid "Sale journal in this year"
-msgstr ""
+msgstr "Дневник Продажби текуща година"
 
 #. module: account
 #: selection:account.financial.report,display_detail:0
 msgid "Display children with hierarchy"
-msgstr ""
+msgstr "Показва елементи от тип 'дете' в йерархия"
 
 #. module: account
 #: selection:account.payment.term.line,value:0
@@ -742,7 +763,7 @@
 #. module: account
 #: model:ir.ui.menu,name:account.menu_finance_charts
 msgid "Charts"
-msgstr "Диаграми"
+msgstr "Графики"
 
 #. module: account
 #: code:addons/account/project/wizard/project_account_analytic_line.py:47
@@ -754,18 +775,18 @@
 #. module: account
 #: field:account.invoice.refund,filter_refund:0
 msgid "Refund Method"
-msgstr ""
+msgstr "Метод за възстановяване на сума"
 
 #. module: account
 #: code:addons/account/wizard/account_change_currency.py:38
 #, python-format
 msgid "You can only change currency for Draft Invoice !"
-msgstr "Можете да сменяте валутите само на фактури в проект"
+msgstr "Можете да сменяте валутата само на фактури в статус проект (чернова)"
 
 #. module: account
 #: model:ir.ui.menu,name:account.menu_account_report
 msgid "Financial Report"
-msgstr ""
+msgstr "Финансов отчет"
 
 #. module: account
 #: view:account.analytic.journal:0
@@ -789,6 +810,8 @@
 "Taxes are missing!\n"
 "Click on compute button."
 msgstr ""
+"Липса на данък!\n"
+"Моля натиснете бутон 'Изчисли'"
 
 #. module: account
 #: model:ir.model,name:account.model_account_subscription_line
@@ -811,7 +834,7 @@
 #: view:account.unreconcile.reconcile:0
 #: model:ir.model,name:account.model_account_move_line_unreconcile_select
 msgid "Unreconciliation"
-msgstr "Връщане приравняване"
+msgstr "Анулиране на съответствие между транзакции"
 
 #. module: account
 #: view:account.payment.term.line:0
@@ -841,6 +864,11 @@
 "or Loss you'd realized if those transactions were ended today. Only for "
 "accounts having a secondary currency set."
 msgstr ""
+"Когато извършвате мултивалутни транзакции е възможно да загубите или "
+"спечелите определена сума поради разлика във валутния курс. Това меню Ви "
+"дава прогноза за печалбата или загубата, която бихте реализирали ако "
+"приключите тези транзакции днес. Единствено за сметки поддържащи втора "
+"валута."
 
 #. module: account
 #: selection:account.entries.report,month:0
@@ -909,12 +937,12 @@
 #. module: account
 #: view:account.fiscalyear:0
 msgid "Create 3 Months Periods"
-msgstr "Създай 3 месечен период"
+msgstr "Раздели на тримесечни периоди"
 
 #. module: account
 #: report:account.overdue:0
 msgid "Due"
-msgstr "Краен срок"
+msgstr "За плащане"
 
 #. module: account
 #: code:addons/account/account.py:1345
@@ -923,6 +951,8 @@
 "You cannot validate this journal entry because account \"%s\" does not "
 "belong to chart of accounts \"%s\"!"
 msgstr ""
+"Не можете да потвърдите този запис в дневника, тъй като сметка \"%s\" не "
+"принадлежи към сметкоплан \"%s\"!"
 
 #. module: account
 #: code:addons/account/account_move_line.py:835
@@ -931,6 +961,8 @@
 "This account does not allow reconciliation! You should update the account "
 "definition to change this."
 msgstr ""
+"Тази сметка не поддържа равняване. Можете да промените това като редактирате "
+"параметрите на сметката."
 
 #. module: account
 #: view:account.invoice:0
@@ -959,7 +991,7 @@
 #: model:account.financial.report,name:account.account_financial_report_liability0
 #: model:account.financial.report,name:account.account_financial_report_liabilitysum0
 msgid "Liability"
-msgstr ""
+msgstr "Пасив"
 
 #. module: account
 #: view:account.entries.report:0
@@ -969,17 +1001,17 @@
 #. module: account
 #: model:ir.ui.menu,name:account.menu_account_central_journal
 msgid "Centralizing Journal"
-msgstr "Централизиране на журнала"
+msgstr "Централизиране на Дневника"
 
 #. module: account
 #: selection:account.journal,type:0
 msgid "Sale Refund"
-msgstr "Обезщетение за продажба"
+msgstr "Възстновяване на сума при продажба"
 
 #. module: account
 #: model:process.node,note:account.process_node_accountingstatemententries0
 msgid "Bank statement"
-msgstr "Банково извлечени"
+msgstr "Банково извлечение"
 
 #. module: account
 #: field:account.analytic.line,move_id:0
@@ -1035,7 +1067,7 @@
 #: code:addons/account/account_move_line.py:173
 #, python-format
 msgid "No Analytic Journal !"
-msgstr "Не е аналитичен дневник !"
+msgstr "Няма аналитичен дневник !"
 
 #. module: account
 #: report:account.partner.balance:0
@@ -1078,7 +1110,7 @@
 #. module: account
 #: field:account.report.general.ledger,sortby:0
 msgid "Sort by"
-msgstr ""
+msgstr "Сортирай по"
 
 #. module: account
 #: help:account.fiscalyear.close,fy_id:0
@@ -1091,7 +1123,7 @@
 "These types are defined according to your country. The type contains more "
 "information about the account and its specificities."
 msgstr ""
-"Тези видове са зададени в съответствие с вашата държава. Видът съдържа "
+"Тези типове са зададени в съответствие с вашата държава. Типът съдържа "
 "повече информация за съответното счетоводство и неговите спицифики."
 
 #. module: account
@@ -1100,6 +1132,7 @@
 msgid ""
 "You have to provide an account for the write off/exchange difference entry !"
 msgstr ""
+"Трябва да зададете сметка за отписване като загуба/разлика във валутен курс!"
 
 #. module: account
 #: view:account.tax:0
@@ -1115,7 +1148,7 @@
 #: model:ir.actions.act_window,name:account.action_view_bank_statement_tree
 #: model:ir.ui.menu,name:account.journal_cash_move_lines
 msgid "Cash Registers"
-msgstr "Каови апарати"
+msgstr "Касови апарати"
 
 #. module: account
 #: report:account.analytic.account.journal:0
@@ -1179,7 +1212,7 @@
 #. module: account
 #: view:report.account_type.sales:0
 msgid "All Months Sales by type"
-msgstr ""
+msgstr "Продажби за всички месеци по вид"
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_invoice_tree2
@@ -1189,6 +1222,11 @@
 "purchase orders or receipts. This way, you can control the invoice from your "
 "supplier according to what you purchased or received."
 msgstr ""
+"С фактурите към доставчици можете да създавате и управлявате фактури "
+"издадени от ваши доставчици. OpenERP може да генерира и фактури със статус "
+"чернова автоматично от заявки за покупка и складови записки. По този начин "
+"можете да контролирате фактурите от доставчици съгласно това което сте "
+"купили или приели в склад."
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_tax_code_template_form
@@ -1204,12 +1242,12 @@
 #. module: account
 #: help:account.journal,code:0
 msgid "The code will be displayed on reports."
-msgstr ""
+msgstr "Кодът ще бъде изписан в справки"
 
 #. module: account
 #: view:account.tax.template:0
 msgid "Taxes used in Purchases"
-msgstr ""
+msgstr "Данъци използвани при покупки"
 
 #. module: account
 #: field:account.invoice.tax,tax_code_id:0
@@ -1217,12 +1255,12 @@
 #: field:account.tax.template,tax_code_id:0
 #: model:ir.model,name:account.model_account_tax_code
 msgid "Tax Code"
-msgstr "Код на данък"
+msgstr "Данъчен код"
 
 #. module: account
 #: field:account.account,currency_mode:0
 msgid "Outgoing Currencies Rate"
-msgstr "Изходящи валутни курсове"
+msgstr "Изходящ валутен курс"
 
 #. module: account
 #: selection:account.analytic.journal,type:0
@@ -1232,7 +1270,7 @@
 #. module: account
 #: help:account.move.line,move_id:0
 msgid "The move of this entry line."
-msgstr "Движение по тази ред от запис"
+msgstr "Движение по този ред от запис"
 
 #. module: account
 #: code:addons/account/account_move_line.py:1302
@@ -1241,6 +1279,8 @@
 "You can not use this general account in this journal, check the tab 'Entry "
 "Controls' on the related journal !"
 msgstr ""
+"Не можете да използвате общата сметка с този дневник. Отметнете полето "
+"'Контрол на записите' в съответния дневник"
 
 #. module: account
 #: field:account.move.line.reconcile,trans_nbr:0
@@ -1259,13 +1299,14 @@
 #: code:addons/account/account.py:1129
 #, python-format
 msgid "You can not modify/delete a journal with entries for this period !"
-msgstr "Не може да променяте/узтривате дневник със записи от този период !"
+msgstr "Не може да променяте/изтривате дневник със записи от този период !"
 
 #. module: account
 #: help:account.invoice,origin:0
 #: help:account.invoice.line,origin:0
 msgid "Reference of the document that produced this invoice."
-msgstr "Отпратки към докумета послужил за база на тази фактура."
+msgstr ""
+"Референтен номер на документа въз основа на който е издадена фактурата"
 
 #. module: account
 #: view:account.analytic.line:0
@@ -1350,12 +1391,12 @@
 #. module: account
 #: model:account.financial.report,name:account.account_financial_report_profitandloss0
 msgid "Profit and Loss"
-msgstr ""
+msgstr "Отчет за приходите и разходите"
 
 #. module: account
 #: model:ir.model,name:account.model_account_account_template
 msgid "Templates for Accounts"
-msgstr "Шаблони за сметка"
+msgstr "Шаблони за сметки"
 
 #. module: account
 #: view:account.tax.code.template:0

=== modified file 'account/i18n/br.po'
--- account/i18n/br.po	2012-02-18 07:13:28 +0000
+++ account/i18n/br.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:02+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:18+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/bs.po'
--- account/i18n/bs.po	2012-02-18 07:13:28 +0000
+++ account/i18n/bs.po	2012-06-06 12:41:23 +0000
@@ -7,30 +7,30 @@
 "Project-Id-Version: OpenERP Server 6.0dev\n"
 "Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
 "POT-Creation-Date: 2012-02-08 00:35+0000\n"
-"PO-Revision-Date: 2012-02-17 09:10+0000\n"
-"Last-Translator: Fabien (Open ERP) <fp@xxxxxxxxxxx>\n"
+"PO-Revision-Date: 2012-04-18 19:45+0000\n"
+"Last-Translator: Haris Kovacevic <haris.kovacevic@xxxxxxxxxx>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:02+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:18+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0
 #: view:analytic.entries.report:0
 msgid "last month"
-msgstr ""
+msgstr "prošlog mjeseca"
 
 #. module: account
 #: model:process.transition,name:account.process_transition_supplierreconcilepaid0
 msgid "System payment"
-msgstr ""
+msgstr "Sistem plaćanja"
 
 #. module: account
 #: view:account.journal:0
 msgid "Other Configuration"
-msgstr ""
+msgstr "Ostale konfiguracije"
 
 #. module: account
 #: help:account.tax.code,sequence:0
@@ -38,6 +38,8 @@
 "Determine the display order in the report 'Accounting \\ Reporting \\ "
 "Generic Reporting \\ Taxes \\ Taxes Report'"
 msgstr ""
+"Odredite prikazni redoslijed u izvještaju 'Računovodstvo \\ Izvještavanje \\ "
+"Općenito Izvještavanje \\ Porezi \\ Porezni Izvještaj'"
 
 #. module: account
 #: view:account.move.reconcile:0
@@ -55,7 +57,7 @@
 #. module: account
 #: view:account.invoice:0
 msgid "Proforma/Open/Paid Invoices"
-msgstr ""
+msgstr "Proforma/Otvori/Plaćeni računi"
 
 #. module: account
 #: field:report.invoice.created,residual:0
@@ -70,7 +72,7 @@
 #. module: account
 #: field:account.analytic.line,currency_id:0
 msgid "Account currency"
-msgstr ""
+msgstr "Valuta konta"
 
 #. module: account
 #: view:account.tax:0
@@ -145,7 +147,7 @@
 #. module: account
 #: view:account.open.closed.fiscalyear:0
 msgid "Choose Fiscal Year "
-msgstr ""
+msgstr "Izaberite fiskalnu godinu "
 
 #. module: account
 #: help:account.payment.term,active:0
@@ -158,7 +160,7 @@
 #: code:addons/account/account_invoice.py:1428
 #, python-format
 msgid "Warning!"
-msgstr ""
+msgstr "Upozorenje!"
 
 #. module: account
 #: code:addons/account/account.py:3112

=== modified file 'account/i18n/ca.po'
--- account/i18n/ca.po	2012-02-18 07:13:28 +0000
+++ account/i18n/ca.po	2012-06-06 12:41:23 +0000
@@ -13,8 +13,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:03+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:18+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/cs.po'
--- account/i18n/cs.po	2012-02-18 07:13:28 +0000
+++ account/i18n/cs.po	2012-06-06 12:41:23 +0000
@@ -13,8 +13,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:03+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:18+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 "X-Poedit-Language: Czech\n"
 
 #. module: account

=== modified file 'account/i18n/da.po'
--- account/i18n/da.po	2012-02-18 07:13:28 +0000
+++ account/i18n/da.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:03+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:18+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/de.po'
--- account/i18n/de.po	2012-02-18 07:13:28 +0000
+++ account/i18n/de.po	2012-06-06 12:41:23 +0000
@@ -13,8 +13,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:04+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:19+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/el.po'
--- account/i18n/el.po	2012-03-07 06:04:13 +0000
+++ account/i18n/el.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-03-07 06:03+0000\n"
-"X-Generator: Launchpad (build 14907)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:19+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0
@@ -39,6 +39,8 @@
 "Determine the display order in the report 'Accounting \\ Reporting \\ "
 "Generic Reporting \\ Taxes \\ Taxes Report'"
 msgstr ""
+"Καθορίστε την σειρά προβολής στην αναφορά 'Λογιστικά \\ Αναφορές \\ Γενικές "
+"Αναφορές \\ Φόροι \\ Φορολογικές Αναφορές'"
 
 #. module: account
 #: view:account.move.reconcile:0
@@ -56,7 +58,7 @@
 #. module: account
 #: view:account.invoice:0
 msgid "Proforma/Open/Paid Invoices"
-msgstr ""
+msgstr "Προτιμολόγια/Ανοιχτά/Εξοφλημένα Τιμολόγια"
 
 #. module: account
 #: field:report.invoice.created,residual:0
@@ -82,7 +84,7 @@
 #: code:addons/account/account_bank_statement.py:302
 #, python-format
 msgid "Journal item \"%s\" is not valid."
-msgstr ""
+msgstr "Το αντικείμενο \"%s\" στο ημερολόγιο δεν είναι έγκυρο."
 
 #. module: account
 #: model:ir.model,name:account.model_report_aged_receivable
@@ -143,7 +145,7 @@
 #: field:account.move.line,ref:0
 #: field:account.subscription,ref:0
 msgid "Reference"
-msgstr "Παραπομπή"
+msgstr "Παραπομπές"
 
 #. module: account
 #: view:account.open.closed.fiscalyear:0
@@ -169,7 +171,7 @@
 #: code:addons/account/account.py:3112
 #, python-format
 msgid "Miscellaneous Journal"
-msgstr ""
+msgstr "Ημερολόγιο διαφόρων συμβάντων"
 
 #. module: account
 #: field:account.fiscal.position.account,account_src_id:0
@@ -205,6 +207,9 @@
 "invoice) to create analytic entries, OpenERP will look for a matching "
 "journal of the same type."
 msgstr ""
+"Δίνει τον τύπο του αναλυτικού ημερολογίου. Όταν χρειαστεί σε ένα έγγραφο (πχ "
+"σε ένα τιμολόγιο) να δημιουργηθούν αναλυτικές εγγραφές, το OpenERP θα "
+"αναζητήσει αυτόματα ένα ημερολόγιο ίδιου τύπου."
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_tax_template_form
@@ -263,6 +268,9 @@
 "legal reports, and set the rules to close a fiscal year and generate opening "
 "entries."
 msgstr ""
+"Ο Τύπος Λογαριασμού έχει πληροφοριακή χρησιμότητα. Παράγει νομικές αναφορές "
+"εξειδικευμένες για την χώρα, θέτει τους κανόνες για το κλείσιμο ενός "
+"οικονομικού έτους και επίσης παράγει εναρκτήριες εγγραφές."
 
 #. module: account
 #: report:account.overdue:0

=== modified file 'account/i18n/en_GB.po'
--- account/i18n/en_GB.po	2012-02-18 07:13:28 +0000
+++ account/i18n/en_GB.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:10+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:24+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/en_US.po'
--- account/i18n/en_US.po	2012-02-18 07:13:28 +0000
+++ account/i18n/en_US.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:09+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:23+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/es.po'
--- account/i18n/es.po	2012-02-18 07:13:28 +0000
+++ account/i18n/es.po	2012-06-06 12:41:23 +0000
@@ -7,14 +7,14 @@
 "Project-Id-Version: OpenERP Server 6.0dev\n"
 "Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
 "POT-Creation-Date: 2012-02-08 00:35+0000\n"
-"PO-Revision-Date: 2012-02-17 09:10+0000\n"
+"PO-Revision-Date: 2012-03-28 20:27+0000\n"
 "Last-Translator: Carlos @ smile-iberia <Unknown>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:08+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:22+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0
@@ -67,7 +67,7 @@
 #. module: account
 #: constraint:account.period:0
 msgid "Error ! The duration of the Period(s) is/are invalid. "
-msgstr "¡Error! La duración del periodo o periodos no es válida "
+msgstr "¡Error! La duración del periodo(s) no es válido. "
 
 #. module: account
 #: field:account.analytic.line,currency_id:0
@@ -3690,7 +3690,7 @@
 #. module: account
 #: view:account.move:0
 msgid "Post"
-msgstr ""
+msgstr "Enviar"
 
 #. module: account
 #: view:account.unreconcile:0
@@ -4733,7 +4733,7 @@
 #. module: account
 #: model:email.template,subject:account.email_template_edi_invoice
 msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a' })"
-msgstr ""
+msgstr "${object.company_id.name} Factura (Ref ${object.number or 'n/d' })"
 
 #. module: account
 #: help:res.partner,last_reconciliation_date:0
@@ -4982,6 +4982,9 @@
 "From this view, have an analysis of your treasury. It sums the balance of "
 "every accounting entries made on liquidity accounts per period."
 msgstr ""
+"En esta vista, visualice un análisis de su tesorería. El total es el balance "
+"de todos los apuntes contables realizados en cuentas de liquidez, por "
+"periodo."
 
 #. module: account
 #: field:account.journal,group_invoice_lines:0
@@ -6268,7 +6271,7 @@
 #. module: account
 #: selection:account.financial.report,display_detail:0
 msgid "Display children flat"
-msgstr ""
+msgstr "Mostrar descendientes  en plano"
 
 #. module: account
 #: code:addons/account/account.py:629
@@ -6592,7 +6595,7 @@
 #. module: account
 #: view:account.payment.term.line:0
 msgid "  Valuation: Balance"
-msgstr ""
+msgstr "  Evaluación: Balance"
 
 #. module: account
 #: field:account.invoice.line,uos_id:0
@@ -8208,6 +8211,8 @@
 "The statement balance is incorrect !\n"
 "The expected balance (%.2f) is different than the computed one. (%.2f)"
 msgstr ""
+"El balance del asiento es incorrecto\n"
+"El balance esperado (%.2f) es diferente al calculado. (%.2f)"
 
 #. module: account
 #: code:addons/account/account_bank_statement.py:353
@@ -8498,7 +8503,7 @@
 #. module: account
 #: field:account.account,adjusted_balance:0
 msgid "Adjusted Balance"
-msgstr ""
+msgstr "Balance ajustado"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form
@@ -8659,7 +8664,7 @@
 #. module: account
 #: view:account.payment.term.line:0
 msgid "  Value amount: n.a"
-msgstr ""
+msgstr "  Valor del importe: n.d."
 
 #. module: account
 #: view:account.automatic.reconcile:0
@@ -8755,7 +8760,7 @@
 #: code:addons/account/account.py:3296
 #, python-format
 msgid "Tax %.2f%%"
-msgstr ""
+msgstr "Impuestox %.2f%%"
 
 #. module: account
 #: view:account.analytic.account:0
@@ -10877,6 +10882,75 @@
 "% endif\n"
 "            "
 msgstr ""
+"\n"
+"Hola${object.address_invoice_id.name and ' ' or "
+"''}${object.address_invoice_id.name or ''},\n"
+"\n"
+"Está disponible una nueva factura para ${object.partner_id.name}:\n"
+"       | Nº de factura: *${object.number}*\n"
+"       | Importe: *${object.amount_total} ${object.currency_id.name}*\n"
+"       | Fecha: ${object.date_invoice}\n"
+"       % if object.origin:\n"
+"       | Referencia: ${object.origin}\n"
+"       % endif\n"
+"       | Su contacto: ${object.user_id.name} ${object.user_id.user_email and "
+"'<%s>'%(object.user_id.user_email) or ''}\n"
+"\n"
+"Puede ver el documento de la factura, descargarlo y pagarlo online siguiendo "
+"el enlace:\n"
+"    ${ctx.get('edi_web_url_view') or 'n/a'}\n"
+"\n"
+"% if object.company_id.paypal_account and object.type in ('out_invoice', "
+"'in_refund'):\n"
+"<% \n"
+"comp_name = quote(object.company_id.name)\n"
+"inv_number = quote(object.number)\n"
+"paypal_account = quote(object.company_id.paypal_account)\n"
+"inv_amount = quote(str(object.amount_total))\n"
+"cur_name = quote(object.currency_id.name)\n"
+"paypal_url = \"https://www.paypal.com/cgi-";
+"bin/webscr?cmd=_xclick&business=%s&item_name=%s%%20Invoice%%20%s\"\\\n"
+"             "
+"\"&invoice=%s&amount=%s&currency_code=%s&button_subtype=services&no_note=1&bn"
+"=OpenERP_Invoice_PayNow_%s\" % \\\n"
+"             "
+"(paypal_account,comp_name,inv_number,inv_number,inv_amount,cur_name,cur_name)"
+"\n"
+"%>\n"
+"También puede pagar directamente mediante Paypal:\n"
+"    ${paypal_url}\n"
+"% endif\n"
+"\n"
+"Si tiene cualquier consulta no dude en contactarnos.\n"
+"\n"
+"\n"
+"¡Gracia por elegir ${object.company_id.name}!\n"
+"\n"
+"\n"
+"--\n"
+"${object.user_id.name} ${object.user_id.user_email and "
+"'<%s>'%(object.user_id.user_email) or ''}\n"
+"${object.company_id.name}\n"
+"% if object.company_id.street:\n"
+"${object.company_id.street or ''}\n"
+"% endif\n"
+"% if object.company_id.street2:\n"
+"${object.company_id.street2}\n"
+"% endif\n"
+"% if object.company_id.city or object.company_id.zip:\n"
+"${object.company_id.zip or ''} ${object.company_id.city or ''}\n"
+"% endif\n"
+"% if object.company_id.country_id:\n"
+"${object.company_id.state_id and ('%s, ' % object.company_id.state_id.name) "
+"or ''} ${object.company_id.country_id.name or ''}\n"
+"% endif\n"
+"% if object.company_id.phone:\n"
+"Phone: ${object.company_id.phone}\n"
+"% endif\n"
+"% if object.company_id.website:\n"
+"${object.company_id.website or ''}\n"
+"% endif\n"
+"            "
 
 #. module: account
 #: model:ir.model,name:account.model_res_partner_bank

=== modified file 'account/i18n/es_AR.po'
--- account/i18n/es_AR.po	2012-02-18 07:13:28 +0000
+++ account/i18n/es_AR.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:10+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:24+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/es_CL.po'
--- account/i18n/es_CL.po	2012-02-18 07:13:28 +0000
+++ account/i18n/es_CL.po	2012-06-06 12:41:23 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: openobject-addons\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2012-02-08 00:35+0000\n"
-"PO-Revision-Date: 2012-02-17 09:10+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2012-05-07 20:28+0000\n"
+"Last-Translator: roberto antonio <Unknown>\n"
 "Language-Team: Spanish (Chile) <es_CL@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:10+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:24+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0
@@ -39,11 +39,13 @@
 "Determine the display order in the report 'Accounting \\ Reporting \\ "
 "Generic Reporting \\ Taxes \\ Taxes Report'"
 msgstr ""
+"Determina el órden de visualización en el informe 'Contabilidad\\Informes\\ "
+"Informes genéricos\\ Impuestos \\ Informes de impuestos'"
 
 #. module: account
 #: view:account.move.reconcile:0
 msgid "Journal Entry Reconcile"
-msgstr "entrada de revista conciliable"
+msgstr "Conciliar asiento contable"
 
 #. module: account
 #: view:account.account:0
@@ -51,12 +53,12 @@
 #: view:account.move:0
 #: view:account.move.line:0
 msgid "Account Statistics"
-msgstr "cuentas estadisticas"
+msgstr "Estadísticas de cuentas"
 
 #. module: account
 #: view:account.invoice:0
 msgid "Proforma/Open/Paid Invoices"
-msgstr "sistema de pagos"
+msgstr "Facturas proforma/abiertas/pagadas"
 
 #. module: account
 #: field:report.invoice.created,residual:0
@@ -76,18 +78,18 @@
 #. module: account
 #: view:account.tax:0
 msgid "Children Definition"
-msgstr "definicion de los niños"
+msgstr "Definición hijos"
 
 #. module: account
 #: code:addons/account/account_bank_statement.py:302
 #, python-format
 msgid "Journal item \"%s\" is not valid."
-msgstr ""
+msgstr "El asiento \"%s\" no es válido"
 
 #. module: account
 #: model:ir.model,name:account.model_report_aged_receivable
 msgid "Aged Receivable Till Today"
-msgstr "edad aceptable hasta hoy"
+msgstr "A cobrar vencidos hasta hoy"
 
 #. module: account
 #: model:process.transition,name:account.process_transition_invoiceimport0
@@ -97,7 +99,7 @@
 #. module: account
 #: model:ir.model,name:account.model_wizard_multi_charts_accounts
 msgid "wizard.multi.charts.accounts"
-msgstr ""
+msgstr "wizard.multi.charts.accounts"
 
 #. module: account
 #: view:account.move:0
@@ -120,8 +122,8 @@
 "Configuration error! The currency chosen should be shared by the default "
 "accounts too."
 msgstr ""
-"error de configuracion¡ la moneda elegida debe ser compartida con las "
-"cuentas defectuosas tambien."
+"¡Error de configuración! La moneda elegida debería ser también la misma en "
+"las cuentas por defecto"
 
 #. module: account
 #: report:account.invoice:0
@@ -136,7 +138,7 @@
 #: view:account.move.line.reconcile:0
 #: view:account.move.line.reconcile.writeoff:0
 msgid "Reconcile"
-msgstr "Conciliar"
+msgstr "Reconciliar"
 
 #. module: account
 #: field:account.bank.statement.line,ref:0
@@ -146,7 +148,7 @@
 #: field:account.move.line,ref:0
 #: field:account.subscription,ref:0
 msgid "Reference"
-msgstr ""
+msgstr "Referencia"
 
 #. module: account
 #: view:account.open.closed.fiscalyear:0
@@ -172,18 +174,18 @@
 #: code:addons/account/account.py:3112
 #, python-format
 msgid "Miscellaneous Journal"
-msgstr "diario miscelaneo"
+msgstr "Diario varios"
 
 #. module: account
 #: field:account.fiscal.position.account,account_src_id:0
 #: field:account.fiscal.position.account.template,account_src_id:0
 msgid "Account Source"
-msgstr "fuente de la cuenta"
+msgstr "Cuenta de origen"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal
 msgid "All Analytic Entries"
-msgstr "todas las entradas analiticas"
+msgstr "Todos los asientos analíticos"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard
@@ -193,7 +195,7 @@
 #. module: account
 #: field:accounting.report,label_filter:0
 msgid "Column Label"
-msgstr "etuquetas en la columnas"
+msgstr "Etiqueta de columna"
 
 #. module: account
 #: code:addons/account/wizard/account_move_journal.py:95
@@ -216,12 +218,12 @@
 #: model:ir.actions.act_window,name:account.action_account_tax_template_form
 #: model:ir.ui.menu,name:account.menu_action_account_tax_template_form
 msgid "Tax Templates"
-msgstr "plantillas de impuestos"
+msgstr "Plantillas impuestos"
 
 #. module: account
 #: model:ir.model,name:account.model_account_tax
 msgid "account.tax"
-msgstr "impuesto de contabilidad"
+msgstr "account.tax"
 
 #. module: account
 #: model:ir.model,name:account.model_account_move_line_reconcile_select
@@ -259,7 +261,7 @@
 #: code:addons/account/account_move_line.py:1200
 #, python-format
 msgid "You can not add/modify entries in a closed journal."
-msgstr "no ´puede añadir o modificcar entradas en un diario cerrado"
+msgstr "No puede añadir/modificar asientos en un diario cerrado."
 
 #. module: account
 #: help:account.account,user_type:0
@@ -268,14 +270,14 @@
 "legal reports, and set the rules to close a fiscal year and generate opening "
 "entries."
 msgstr ""
-"este tipo de cuenta es usado con propositos informativos, para generar "
-"reportes especificos del pais, y  una serie de reglar para cerrar el año "
-"fiscal y generar entradas"
+"El tipo de cuenta es usado con propósito informativo, para generar informes "
+"legales específicos de cada país, y establecer las reglas para cerrar un año "
+"fiscal y generar los apuntes de apertura."
 
 #. module: account
 #: report:account.overdue:0
 msgid "Sub-Total :"
-msgstr ""
+msgstr "Subtotal :"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_use_model_create_entry
@@ -297,7 +299,7 @@
 #. module: account
 #: view:account.analytic.chart:0
 msgid "Select the Period for Analysis"
-msgstr ""
+msgstr "Seleccione el período de análisis"
 
 #. module: account
 #: view:account.move.line:0

=== modified file 'account/i18n/es_CR.po'
--- account/i18n/es_CR.po	2012-02-18 07:13:28 +0000
+++ account/i18n/es_CR.po	2012-06-06 12:41:23 +0000
@@ -8,14 +8,15 @@
 "Project-Id-Version: openobject-addons\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2012-02-08 00:35+0000\n"
-"PO-Revision-Date: 2012-02-17 09:10+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2012-03-17 18:02+0000\n"
+"Last-Translator: Carlos Vásquez (CLEARCORP) "
+"<carlos.vasquez@xxxxxxxxxxxxxxx>\n"
 "Language-Team: Spanish (Costa Rica) <es_CR@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:10+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:24+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0
@@ -89,7 +90,7 @@
 #. module: account
 #: model:ir.model,name:account.model_report_aged_receivable
 msgid "Aged Receivable Till Today"
-msgstr "A cobrar vencidos hasta hoy"
+msgstr "Por cobrar vencidos hasta hoy"
 
 #. module: account
 #: model:process.transition,name:account.process_transition_invoiceimport0
@@ -723,7 +724,7 @@
 #: model:ir.actions.act_window,name:account.action_aged_receivable
 #, python-format
 msgid "Receivable Accounts"
-msgstr "Cuentas a cobrar"
+msgstr "Cuentas por Cobrar"
 
 #. module: account
 #: constraint:account.move.line:0
@@ -1478,7 +1479,7 @@
 #. module: account
 #: field:res.partner,property_account_receivable:0
 msgid "Account Receivable"
-msgstr "Cuenta a cobrar"
+msgstr "Cuenta por Cobrar"
 
 #. module: account
 #: model:ir.actions.report.xml,name:account.account_central_journal
@@ -1648,7 +1649,7 @@
 #: view:account.chart.template:0
 #: field:account.chart.template,property_account_payable:0
 msgid "Payable Account"
-msgstr "Cuenta a pagar"
+msgstr "Cuenta por Pagar"
 
 #. module: account
 #: field:account.tax,account_paid_id:0
@@ -1808,7 +1809,7 @@
 #. module: account
 #: model:ir.actions.act_window,name:account.act_account_partner_account_move_all
 msgid "Receivables & Payables"
-msgstr "Cuentas a cobrar y pagar"
+msgstr "Cuentas por Cobrar y por Pagar"
 
 #. module: account
 #: model:ir.model,name:account.model_account_common_journal_report
@@ -3815,7 +3816,7 @@
 #. module: account
 #: field:res.partner,property_account_payable:0
 msgid "Account Payable"
-msgstr "Cuenta a pagar"
+msgstr "Cuenta por Pagar"
 
 #. module: account
 #: model:process.node,name:account.process_node_supplierpaymentorder0
@@ -5861,7 +5862,7 @@
 #: code:addons/account/report/account_partner_balance.py:301
 #, python-format
 msgid "Receivable and Payable Accounts"
-msgstr "Cuentas a cobrar y pagar"
+msgstr "Cuentas por Cobrar y por Pagar"
 
 #. module: account
 #: field:account.fiscal.position.account.template,position_id:0
@@ -6161,11 +6162,11 @@
 "line of the expense account. OpenERP will propose to you automatically the "
 "Tax related to this account and the counterpart \"Account Payable\"."
 msgstr ""
-"Esta vista puede ser utilizada por los contables para registrar asientos "
+"Esta vista puede ser utilizada por los contadores para registrar asientos "
 "rápidamente en OpenERP. Si desea registrar una factura de proveedor, "
-"comience registrando el apunte de la cuenta de gastos. OpenERP le propondrá "
-"automáticamente el impuesto asociado a esta cuenta y la \"cuenta a pagar\" "
-"de contrapartida."
+"comience registrando la línea de asiento de la cuenta de gastos. OpenERP le "
+"propondrá automáticamente el impuesto asociado a esta cuenta y la \"cuenta "
+"por pagar\" de contrapartida."
 
 #. module: account
 #: field:account.entries.report,date_created:0
@@ -6367,7 +6368,7 @@
 #: model:account.account.type,name:account.data_account_type_receivable
 #: selection:account.entries.report,type:0
 msgid "Receivable"
-msgstr "A cobrar"
+msgstr "Por Cobrar"
 
 #. module: account
 #: constraint:account.move.line:0
@@ -6797,8 +6798,8 @@
 "This account will be used instead of the default one as the receivable "
 "account for the current partner"
 msgstr ""
-"Esta cuenta se utilizará en lugar de la cuenta por defecto como la cuenta a "
-"cobrar para la empresa actual."
+"Esta cuenta se utilizará en lugar de la cuenta por defecto como la cuenta "
+"por cobrar para la empresa actual."
 
 #. module: account
 #: field:account.tax,python_applicable:0
@@ -7234,12 +7235,12 @@
 "you request an interval of 30 days OpenERP generates an analysis of "
 "creditors for the past month, past two months, and so on. "
 msgstr ""
-"Saldos vencidos de empresa es un informe más detallado de sus efectos a "
-"cobrar por intervalos. Al abrir el informe, OpenERP pregunta por el nombre "
-"de la compañía, el periodo fiscal, y el tamaño del intervalo a analizar (en "
-"días). Luego OpenERP calcula una tabla del saldo deudor por periodo. Así que "
-"si solicita un intervalo de 30 días, OpenERP genera un análisis de todos los "
-"deudores para el mes pasado, últimos dos meses, etc. "
+"Antigüedad de saldos de empresa es un informe más detallado de sus cuentas "
+"por cobrar por intervalos. Al abrir el informe, OpenERP pregunta por el "
+"nombre de la compañía, el periodo fiscal, y el tamaño del intervalo a "
+"analizar (en días). Luego OpenERP calcula una tabla del saldo deudor por "
+"periodo. Así que si solicita un intervalo de 30 días, OpenERP genera un "
+"análisis de todos los deudores para el mes pasado, últimos dos meses, etc. "
 
 #. module: account
 #: field:account.invoice,origin:0
@@ -7624,11 +7625,11 @@
 "line of the expense account, OpenERP will propose to you automatically the "
 "Tax related to this account and the counter-part \"Account Payable\"."
 msgstr ""
-"Esta vista es usada por los contables para registrar asientos masivamente en "
-"OpenERP. Si quiere registrar una factura de proveedor, comience "
-"introduciendo el apunte de la cuenta de gastos. OpenERP le propondrá "
-"automáticamente el impuesto asociado a esta cuenta, y la \"cuenta a pagar\" "
-"de contrapartida."
+"Esta vista puede ser utilizada por los contadores para registrar asientos "
+"rápidamente en OpenERP. Si desea registrar una factura de proveedor, "
+"comience registrando la línea de asiento de la cuenta de gastos. OpenERP le "
+"propondrá automáticamente el impuesto asociado a esta cuenta y la \"cuenta "
+"por pagar\" de contrapartida."
 
 #. module: account
 #: view:account.invoice.line:0
@@ -7656,7 +7657,7 @@
 #. module: account
 #: model:account.account.type,name:account.data_account_type_view
 msgid "Root/View"
-msgstr "Raiz/vista"
+msgstr "Raíz/Vista"
 
 #. module: account
 #: code:addons/account/account.py:3121
@@ -7715,7 +7716,7 @@
 "This field is used for payable and receivable journal entries. You can put "
 "the limit date for the payment of this line."
 msgstr ""
-"Este campo se usa para asientos a pagar y a cobrar. Puede introducir la "
+"Este campo se usa para asientos por pagar y por cobrar. Puede introducir la "
 "fecha límite para el pago de esta línea."
 
 #. module: account
@@ -7864,7 +7865,7 @@
 #: code:addons/account/report/account_partner_balance.py:299
 #, python-format
 msgid "Payable Accounts"
-msgstr "Cuentas a pagar"
+msgstr "Cuentas por Pagar"
 
 #. module: account
 #: code:addons/account/account_invoice.py:732
@@ -8554,12 +8555,12 @@
 "useful because it enables you to preview at any time the tax that you owe at "
 "the start and end of the month or quarter."
 msgstr ""
-"Este menú imprime una declaración de IVA basada en facturas o pagos. Puede "
+"Este menú imprime una declaración de I.V. basada en facturas o pagos. Puede "
 "seleccionar uno o varios periodos del ejercicio fiscal. La información "
 "necesaria para la declaración de impuestos es generada por OpenERP a partir "
 "de las facturas (o pagos, en algunos países). Esta información se actualiza "
 "en tiempo real; lo cual es muy útil porque le permite previsualizar en "
-"cualquier momento los impuestos a pagar al principio y al final del mes o "
+"cualquier momento los impuestos por pagar al principio y al final del mes o "
 "trimestre."
 
 #. module: account
@@ -8689,7 +8690,7 @@
 #: view:account.chart.template:0
 #: field:account.chart.template,property_account_receivable:0
 msgid "Receivable Account"
-msgstr "Cuenta a cobrar"
+msgstr "Cuenta por Cobrar"
 
 #. module: account
 #: view:account.invoice:0
@@ -8842,8 +8843,8 @@
 "The residual amount on a receivable or payable of a journal entry expressed "
 "in the company currency."
 msgstr ""
-"El importe residual de un apunte a cobrar o a pagar expresado en la moneda "
-"de la compañía."
+"El monto residual de una línea de asiento por cobrar o por pagar expresado "
+"en la moneda de la compañía."
 
 #. module: account
 #: view:account.tax.code:0
@@ -9452,7 +9453,7 @@
 #. module: account
 #: view:account.account.template:0
 msgid "Receivale Accounts"
-msgstr "Cuentas a cobrar"
+msgstr "Cuentas por Cobrar"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_bank_statement_periodic_tree
@@ -9509,7 +9510,7 @@
 #: model:account.account.type,name:account.data_account_type_payable
 #: selection:account.entries.report,type:0
 msgid "Payable"
-msgstr "A pagar"
+msgstr "Por Pagar"
 
 #. module: account
 #: view:report.account.sales:0
@@ -9543,12 +9544,12 @@
 "the income account. OpenERP will propose to you automatically the Tax "
 "related to this account and the counter-part \"Account receivable\"."
 msgstr ""
-"Esta vista es usada por los contables para registrar asientos masivamente en "
-"OpenERP. Si quiere registrar una factura de cliente, seleccione el diario y "
-"el periodo en la barra de herramientas de búsqueda. Luego, comience "
-"introduciendo el apunte de la cuenta de ingresos. OpenERP le propondrá "
-"automáticamente el impuesto asociado a esta cuenta, y la \"cuenta a cobrar\" "
-"de contrapartida."
+"Esta vista es usada por los contadores para registrar asientos masivamente "
+"en OpenERP. Si quiere registrar una factura de cliente, seleccione el diario "
+"y el periodo en la barra de herramientas de búsqueda. Luego, comience "
+"introduciendo la línea de la cuenta de ingresos. OpenERP le propondrá "
+"automáticamente el impuesto asociado a esta cuenta, y la \"cuenta por "
+"cobrar\" de contrapartida."
 
 #. module: account
 #: code:addons/account/wizard/account_automatic_reconcile.py:152
@@ -9918,8 +9919,8 @@
 "This account will be used instead of the default one as the payable account "
 "for the current partner"
 msgstr ""
-"Este cuenta se utilizará en lugar de la cuenta por defecto como la cuenta a "
-"pagar para la empresa actual."
+"Este cuenta se utilizará en lugar de la cuenta por defecto como la cuenta "
+"por pagar para la empresa actual."
 
 #. module: account
 #: field:account.period,special:0
@@ -10579,7 +10580,7 @@
 #. module: account
 #: model:ir.model,name:account.model_report_account_receivable
 msgid "Receivable accounts"
-msgstr "Cuentas a cobrar"
+msgstr "Cuentas por Cobrar"
 
 #. module: account
 #: selection:account.model.line,date_maturity:0
@@ -10606,9 +10607,9 @@
 "computations), closed for depreciated accounts."
 msgstr ""
 "El 'tipo interno' se usa para funcionalidad disponible en distintos tipos de "
-"cuentas: las vistas no pueden contener asientos, consolicaciones son cuentas "
-"que pueden tener cuentas hijas para consolidaciones multi-compañía, a "
-"cobrar/a pagar son para cuentas de clientes (para cálculos de "
+"cuentas: las vistas no pueden contener asientos, consolidaciones son cuentas "
+"que pueden tener cuentas hijas para consolidaciones multi-compañía, por "
+"cobrar / por pagar son para cuentas de clientes (para cálculos de "
 "débito/crédito), cerradas para cuentas depreciadas."
 
 #. module: account
@@ -10662,7 +10663,7 @@
 #: model:ir.actions.act_window,name:account.action_aged_receivable_graph
 #: view:report.aged.receivable:0
 msgid "Aged Receivable"
-msgstr "A cobrar vencido"
+msgstr "Por cobrar vencido"
 
 #. module: account
 #: field:account.tax,applicable_type:0
@@ -10972,7 +10973,7 @@
 #. module: account
 #: field:res.partner,credit:0
 msgid "Total Receivable"
-msgstr "Total a cobrar"
+msgstr "Total por Cobrar"
 
 #. module: account
 #: view:account.account:0
@@ -11183,5 +11184,5 @@
 "The residual amount on a receivable or payable of a journal entry expressed "
 "in its currency (maybe different of the company currency)."
 msgstr ""
-"El importe residual de un apunte a cobrar o a pagar expresado en su moneda "
-"(puede ser diferente de la moneda de la compañía)."
+"El monto residual de una línea de asiento por cobrar o por pagar expresado "
+"en su moneda (puede ser diferente de la moneda de la compañía)."

=== modified file 'account/i18n/es_EC.po'
--- account/i18n/es_EC.po	2012-02-18 07:13:28 +0000
+++ account/i18n/es_EC.po	2012-06-06 12:41:23 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: openobject-addons\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2012-02-08 00:35+0000\n"
-"PO-Revision-Date: 2012-02-17 09:10+0000\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2012-03-24 03:08+0000\n"
+"Last-Translator: Cristian Salamea (Gnuthink) <ovnicraft@xxxxxxxxx>\n"
 "Language-Team: Spanish (Ecuador) <es_EC@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:11+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:24+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0
@@ -39,6 +39,8 @@
 "Determine the display order in the report 'Accounting \\ Reporting \\ "
 "Generic Reporting \\ Taxes \\ Taxes Report'"
 msgstr ""
+"Determina el órden de visualización en el informe 'Contabilidad\\informes\\ "
+"informes genéricos\\ impuestos \\ informes de impuestos'"
 
 #. module: account
 #: view:account.move.reconcile:0
@@ -82,7 +84,7 @@
 #: code:addons/account/account_bank_statement.py:302
 #, python-format
 msgid "Journal item \"%s\" is not valid."
-msgstr ""
+msgstr "El asiento \"%s\" no es válido"
 
 #. module: account
 #: model:ir.model,name:account.model_report_aged_receivable
@@ -354,6 +356,9 @@
 "leave the automatic formatting, it will be computed based on the financial "
 "reports hierarchy (auto-computed field 'level')."
 msgstr ""
+"Puede configurar aquí el formato en que desea que se muestre este registro. "
+"Si deja el formato automático, será calculado en base a la jerarquía de los "
+"informes financieros (campo auto-calculado 'nivel')"
 
 #. module: account
 #: view:account.installer:0
@@ -383,7 +388,7 @@
 #. module: account
 #: constraint:account.move.line:0
 msgid "You can not create journal items on an account of type view."
-msgstr ""
+msgstr "No puede crear asientos en una cuenta de tipo vista"
 
 #. module: account
 #: model:ir.model,name:account.model_account_tax_template
@@ -636,7 +641,7 @@
 #: field:account.financial.report,account_report_id:0
 #: selection:account.financial.report,type:0
 msgid "Report Value"
-msgstr ""
+msgstr "Reporte de Valor"
 
 #. module: account
 #: view:account.fiscal.position.template:0
@@ -658,6 +663,7 @@
 #, python-format
 msgid "No period found or more than one period found for the given date."
 msgstr ""
+"No se encuentra periodo o más  de un periodo encontrado para la fecha dada"
 
 #. module: account
 #: field:account.invoice.tax,tax_amount:0
@@ -718,6 +724,8 @@
 "The date of your Journal Entry is not in the defined period! You should "
 "change the date or remove this constraint from the journal."
 msgstr ""
+"¡La fecha de su asiento no está en el periodo definido! Usted debería "
+"cambiar la fecha o borrar esta restricción del diario."
 
 #. module: account
 #: model:ir.model,name:account.model_account_report_general_ledger
@@ -809,7 +817,7 @@
 msgid ""
 "Taxes are missing!\n"
 "Click on compute button."
-msgstr ""
+msgstr "¡Faltan impuestos!"
 
 #. module: account
 #: model:ir.model,name:account.model_account_subscription_line
@@ -838,6 +846,7 @@
 #: view:account.payment.term.line:0
 msgid "At 14 net days 2 percent, remaining amount at 30 days end of month."
 msgstr ""
+"2 por ciento en 14 días netos, la cantidad restante a 30 días fin de mes"
 
 #. module: account
 #: model:ir.model,name:account.model_account_analytic_journal_report
@@ -949,6 +958,8 @@
 "You cannot validate this journal entry because account \"%s\" does not "
 "belong to chart of accounts \"%s\"!"
 msgstr ""
+"¡ No puede validar este asiento porque la cuenta \"%s\" no pertenece a la "
+"plantilla de cuentas \"%s\" !"
 
 #. module: account
 #: code:addons/account/account_move_line.py:835
@@ -957,6 +968,8 @@
 "This account does not allow reconciliation! You should update the account "
 "definition to change this."
 msgstr ""
+"¡ Esta cuenta no permite reconciliación! Usted debería actualizar la "
+"definición de la cuenta para cambiarlo."
 
 #. module: account
 #: view:account.invoice:0
@@ -1916,7 +1929,7 @@
 #. module: account
 #: model:ir.actions.report.xml,name:account.account_journal_sale_purchase
 msgid "Sale/Purchase Journal"
-msgstr ""
+msgstr "Diario de Ventas/Compras"
 
 #. module: account
 #: view:account.analytic.account:0
@@ -2006,7 +2019,7 @@
 #: code:addons/account/account_invoice.py:73
 #, python-format
 msgid "You must define an analytic journal of type '%s'!"
-msgstr ""
+msgstr "Usted debe definir un diario analítico de tipo '%s'!"
 
 #. module: account
 #: field:account.installer,config_logo:0
@@ -2021,6 +2034,9 @@
 "currency. You should remove the secondary currency on the account or select "
 "a multi-currency view on the journal."
 msgstr ""
+"La cuenta selecionada de su diario obliga a tener una moneda secundaria. "
+"Usted debería eliminar la moneda secundaria de la cuenta o asignar una vista "
+"de multi-moneda al diario."
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_account_financial_report_tree
@@ -2051,7 +2067,7 @@
 #. module: account
 #: selection:account.financial.report,style_overwrite:0
 msgid "Italic Text (smaller)"
-msgstr ""
+msgstr "Texto en Italica (más pequeño)"
 
 #. module: account
 #: view:account.bank.statement:0
@@ -2069,7 +2085,7 @@
 #. module: account
 #: report:account.journal.period.print.sale.purchase:0
 msgid "VAT Declaration"
-msgstr ""
+msgstr "Declaración de IVA"
 
 #. module: account
 #: field:account.move.reconcile,line_partial_ids:0
@@ -2140,7 +2156,7 @@
 #: code:addons/account/account_bank_statement.py:357
 #, python-format
 msgid "You have to assign an analytic journal on the '%s' journal!"
-msgstr ""
+msgstr "¡Debes asignar un diario analítico en el último '%s' diario!"
 
 #. module: account
 #: selection:account.invoice,state:0
@@ -2189,6 +2205,9 @@
 "Put a sequence in the journal definition for automatic numbering or create a "
 "sequence manually for this piece."
 msgstr ""
+"¡No se puede crear una secuencia automática para este objeto!\n"
+"Ponga una secuencia en la definición del diario para una numeración "
+"automática o cree un número manualmente para este objeto."
 
 #. module: account
 #: code:addons/account/account.py:787
@@ -2197,6 +2216,8 @@
 "You can not modify the company of this journal as its related record exist "
 "in journal items"
 msgstr ""
+"No puede modificar la compañía de este diario, ya que contiene apuntes "
+"contables"
 
 #. module: account
 #: report:account.invoice:0
@@ -2261,7 +2282,7 @@
 #. module: account
 #: constraint:res.partner.bank:0
 msgid "The RIB and/or IBAN is not valid"
-msgstr ""
+msgstr "La CC y/o IBAN no es válido"
 
 #. module: account
 #: view:product.category:0
@@ -2368,6 +2389,9 @@
 "'Setup Your Bank Accounts' tool that will automatically create the accounts "
 "and journals for you."
 msgstr ""
+"Configure sus diarios contables. Para cuentas de bancos, es mejor usar la "
+"herramienta 'Configurar sus cuentas de banco' que creará automáticamente las "
+"cuentas y los diarios por usted."
 
 #. module: account
 #: model:ir.model,name:account.model_account_move
@@ -2377,7 +2401,7 @@
 #. module: account
 #: constraint:res.partner:0
 msgid "Error ! You cannot create recursive associated members."
-msgstr ""
+msgstr "Error! Usted no puede crear miembros asociados recursivos"
 
 #. module: account
 #: field:account.sequence.fiscalyear,sequence_main_id:0
@@ -2391,6 +2415,8 @@
 "In order to delete a bank statement, you must first cancel it to delete "
 "related journal items."
 msgstr ""
+"Para poder borrar un extracto bancario, primero debe cancelarlo para borrar "
+"los apuntes contables relacionados."
 
 #. module: account
 #: field:account.invoice,payment_term:0
@@ -2476,7 +2502,7 @@
 #: model:account.payment.term,name:account.account_payment_term_advance
 #: model:account.payment.term,note:account.account_payment_term_advance
 msgid "30% Advance End 30 Days"
-msgstr ""
+msgstr "30% adelando después de 30 días"
 
 #. module: account
 #: view:account.entries.report:0
@@ -2563,7 +2589,7 @@
 #. module: account
 #: view:account.entries.report:0
 msgid "entries"
-msgstr ""
+msgstr "entradas"
 
 #. module: account
 #: help:account.invoice,date_due:0
@@ -2615,7 +2641,7 @@
 #. module: account
 #: model:ir.model,name:account.model_account_move_line_reconcile_writeoff
 msgid "Account move line reconcile (writeoff)"
-msgstr ""
+msgstr "Reconcilia linea de asiento (desajuste)"
 
 #. module: account
 #: model:account.account.type,name:account.account_type_tax
@@ -2711,7 +2737,7 @@
 #. module: account
 #: sql_constraint:account.model.line:0
 msgid "Wrong credit or debit value in model, they must be positive!"
-msgstr ""
+msgstr "¡Valor debe o haber incorrecto, debe ser positivo!"
 
 #. module: account
 #: model:ir.ui.menu,name:account.menu_automatic_reconcile
@@ -2746,7 +2772,7 @@
 #. module: account
 #: field:account.chart.template,parent_id:0
 msgid "Parent Chart Template"
-msgstr ""
+msgstr "Plantilla de plan padre"
 
 #. module: account
 #: field:account.tax,parent_id:0
@@ -2758,7 +2784,7 @@
 #: code:addons/account/wizard/account_change_currency.py:59
 #, python-format
 msgid "New currency is not configured properly !"
-msgstr ""
+msgstr "¡La nueva moneda no está configurada correctamente!"
 
 #. module: account
 #: view:account.subscription.generate:0
@@ -2785,7 +2811,7 @@
 #. module: account
 #: field:account.invoice,reference_type:0
 msgid "Communication Type"
-msgstr ""
+msgstr "Tipo de comunicación"
 
 #. module: account
 #: field:account.invoice.line,discount:0
@@ -2816,7 +2842,7 @@
 #. module: account
 #: view:account.installer:0
 msgid "Configure Your Chart of Accounts"
-msgstr ""
+msgstr "Configure su plan de cuentas"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all
@@ -2851,6 +2877,8 @@
 "You need an Opening journal with centralisation checked to set the initial "
 "balance!"
 msgstr ""
+"¡Necesita un diario de apertura con la casilla 'Centralización' marcada para "
+"establecer el balance inicial!"
 
 #. module: account
 #: view:account.invoice.tax:0
@@ -2862,7 +2890,7 @@
 #. module: account
 #: view:account.account:0
 msgid "Unrealized Gains and losses"
-msgstr ""
+msgstr "Pérdidas y ganancias no realizadas"
 
 #. module: account
 #: model:ir.ui.menu,name:account.menu_account_customer
@@ -2951,6 +2979,8 @@
 "You can not delete an invoice which is open or paid. We suggest you to "
 "refund it instead."
 msgstr ""
+"No puede borrar una factura que está abierta o pagada. Le sugerimos que la "
+"devuelva."
 
 #. module: account
 #: field:wizard.multi.charts.accounts,sale_tax:0
@@ -2961,7 +2991,7 @@
 #: code:addons/account/account_invoice.py:1013
 #, python-format
 msgid "Invoice  '%s' is validated."
-msgstr ""
+msgstr "Factura '%s' es validada."
 
 #. module: account
 #: help:account.model.line,date_maturity:0
@@ -3004,7 +3034,7 @@
 msgid ""
 "Tax base different!\n"
 "Click on compute to update the tax base."
-msgstr ""
+msgstr "¡Distintas bases de impuestos!"
 
 #. module: account
 #: field:account.partner.ledger,page_split:0
@@ -3053,7 +3083,7 @@
 #: field:accounting.report,account_report_id:0
 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree
 msgid "Account Reports"
-msgstr ""
+msgstr "Informes de cuentas"
 
 #. module: account
 #: field:account.payment.term,line_ids:0
@@ -3078,7 +3108,7 @@
 #. module: account
 #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal
 msgid "Sale/Purchase Journals"
-msgstr ""
+msgstr "Diarios de Venta/Compra"
 
 #. module: account
 #: help:account.account,currency_mode:0
@@ -3121,7 +3151,7 @@
 #: view:account.invoice.report:0
 #: view:analytic.entries.report:0
 msgid "Month-1"
-msgstr ""
+msgstr "Mes-1"
 
 #. module: account
 #: view:account.analytic.line:0
@@ -3168,7 +3198,7 @@
 #. module: account
 #: view:account.invoice:0
 msgid "Proforma Invoices"
-msgstr ""
+msgstr "Facturas proforma"
 
 #. module: account
 #: model:process.node,name:account.process_node_electronicfile0
@@ -3183,7 +3213,7 @@
 #. module: account
 #: view:account.payment.term.line:0
 msgid "  Day of the Month: 0"
-msgstr ""
+msgstr "  Día del mes: 0"
 
 #. module: account
 #: view:account.subscription:0
@@ -3230,7 +3260,7 @@
 #. module: account
 #: view:report.account.sales:0
 msgid "This months' Sales by type"
-msgstr ""
+msgstr "Ventas de este mes por tipo"
 
 #. module: account
 #: model:ir.model,name:account.model_account_unreconcile_reconcile
@@ -3240,7 +3270,7 @@
 #. module: account
 #: sql_constraint:account.tax:0
 msgid "The description must be unique per company!"
-msgstr ""
+msgstr "La descripción debe ser única por compañia!"
 
 #. module: account
 #: help:account.account.type,close_method:0
@@ -3342,7 +3372,7 @@
 #. module: account
 #: view:account.payment.term.line:0
 msgid "  Value amount: 0.02"
-msgstr ""
+msgstr "  Importe: 0.02"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.open_board_account
@@ -3372,7 +3402,7 @@
 #. module: account
 #: field:account.financial.report,display_detail:0
 msgid "Display details"
-msgstr ""
+msgstr "Muestra detalles"
 
 #. module: account
 #: report:account.overdue:0
@@ -3382,7 +3412,7 @@
 #. module: account
 #: constraint:account.invoice:0
 msgid "Invalid BBA Structured Communication !"
-msgstr ""
+msgstr "¡Estructura de comunicación BBA no válida!"
 
 #. module: account
 #: help:account.analytic.line,amount_currency:0
@@ -3416,7 +3446,7 @@
 #: code:addons/account/account_cash_statement.py:314
 #, python-format
 msgid "The closing balance should be the same than the computed balance!"
-msgstr ""
+msgstr "¡El balance cerrado debería ser el mismo que el balance calculado!"
 
 #. module: account
 #: view:account.journal:0
@@ -3494,17 +3524,17 @@
 #. module: account
 #: view:account.invoice.line:0
 msgid "Quantity :"
-msgstr ""
+msgstr "Cantidad:"
 
 #. module: account
 #: field:account.aged.trial.balance,period_length:0
 msgid "Period Length (days)"
-msgstr ""
+msgstr "Longitud del período (días)"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal
 msgid "Print Sale/Purchase Journal"
-msgstr ""
+msgstr "Imprimir diario Venta/compra"
 
 #. module: account
 #: field:account.invoice.report,state:0
@@ -3531,12 +3561,12 @@
 #. module: account
 #: view:account.move.line:0
 msgid "Unreconciled Journal Items"
-msgstr ""
+msgstr "Apuntes contables no conciliados"
 
 #. module: account
 #: sql_constraint:res.currency:0
 msgid "The currency code must be unique per company!"
-msgstr ""
+msgstr "¡El código de moneda debe ser único por compañía!"
 
 #. module: account
 #: selection:account.account.type,close_method:0
@@ -3551,7 +3581,7 @@
 "The related payment term is probably misconfigured as it gives a computed "
 "amount greater than the total invoiced amount. The latest line of your "
 "payment term must be of type 'balance' to avoid rounding issues."
-msgstr ""
+msgstr "¡No puede crear la factura!"
 
 #. module: account
 #: report:account.invoice:0
@@ -3586,6 +3616,7 @@
 #, python-format
 msgid "You can not create journal items on a \"view\" account %s %s"
 msgstr ""
+"Usted no puede crear asientos contra una cuenta %s %s de tipo \"vista\""
 
 #. module: account
 #: model:ir.model,name:account.model_account_partner_reconcile_process
@@ -3645,7 +3676,7 @@
 #. module: account
 #: view:account.move:0
 msgid "Post"
-msgstr ""
+msgstr "Contabilizar"
 
 #. module: account
 #: view:account.unreconcile:0
@@ -3718,7 +3749,7 @@
 #. module: account
 #: view:account.invoice.report:0
 msgid "Pro-forma Invoices"
-msgstr ""
+msgstr "Facturas pro-forma"
 
 #. module: account
 #: view:res.partner:0
@@ -3809,7 +3840,7 @@
 #. module: account
 #: selection:account.invoice.refund,filter_refund:0
 msgid "Create a draft Refund"
-msgstr ""
+msgstr "Crear una devolución en borrador"
 
 #. module: account
 #: view:account.state.open:0
@@ -3834,6 +3865,9 @@
 "centralised counterpart box in the related journal from the configuration "
 "menu."
 msgstr ""
+"No puede crear una factura en un diario centralizado. Desclicke la casilla "
+"\"Homólogo centralizado\" en el diario relacionado, desde el menú de "
+"configuración"
 
 #. module: account
 #: field:account.account,name:0
@@ -3857,7 +3891,7 @@
 #: code:addons/account/account_move_line.py:591
 #, python-format
 msgid "You can not create journal items on a closed account %s %s"
-msgstr ""
+msgstr "No puede crear asientos en una cuenta %s %s cerrada"
 
 #. module: account
 #: field:account.move.line,date:0
@@ -3868,7 +3902,7 @@
 #: model:ir.actions.act_window,name:account.action_bank_tree
 #: model:ir.ui.menu,name:account.menu_action_bank_tree
 msgid "Setup your Bank Accounts"
-msgstr ""
+msgstr "Configurar sus cuentas bancarias"
 
 #. module: account
 #: code:addons/account/wizard/account_move_bank_reconcile.py:53
@@ -3900,6 +3934,8 @@
 "The fiscalyear, periods or chart of account chosen have to belong to the "
 "same company."
 msgstr ""
+"El año fiscal, periodos y árbol de cuentas escogido deben pertenecer a la "
+"misma compañía."
 
 #. module: account
 #: model:ir.actions.todo.category,name:account.category_accounting_configuration
@@ -3935,6 +3971,8 @@
 "Value of Loss or Gain due to changes in exchange rate when doing multi-"
 "currency transactions."
 msgstr ""
+"Valor de pérdida o ganancia debido a cambios de divisa al realizar "
+"transacciones multi-moneda"
 
 #. module: account
 #: view:account.analytic.line:0
@@ -4015,7 +4053,7 @@
 #: field:account.common.account.report,display_account:0
 #: field:account.report.general.ledger,display_account:0
 msgid "Display Accounts"
-msgstr ""
+msgstr "Mostrar cuentas"
 
 #. module: account
 #: view:account.state.open:0
@@ -4057,7 +4095,7 @@
 #. module: account
 #: view:account.move.line:0
 msgid "Posted Journal Items"
-msgstr ""
+msgstr "Asientos validados/asentados"
 
 #. module: account
 #: view:account.tax.template:0
@@ -4072,12 +4110,12 @@
 #. module: account
 #: view:account.payment.term.line:0
 msgid "  Day of the Month= -1"
-msgstr ""
+msgstr "  Dia del mes = -1"
 
 #. module: account
 #: view:account.payment.term.line:0
 msgid "  Number of Days: 30"
-msgstr ""
+msgstr "  Número de días: 30"
 
 #. module: account
 #: field:account.account,shortcut:0
@@ -4089,6 +4127,8 @@
 #: constraint:account.fiscalyear:0
 msgid "Error! The start date of the fiscal year must be before his end date."
 msgstr ""
+"Error! La fecha de inicio del año fiscal debe ser anterior a la fecha final "
+"de este."
 
 #. module: account
 #: view:account.account:0
@@ -4109,7 +4149,7 @@
 #. module: account
 #: view:res.partner:0
 msgid "Bank Account Owner"
-msgstr ""
+msgstr "Propietario cuenta bancaria"
 
 #. module: account
 #: report:account.account.balance:0
@@ -4147,6 +4187,8 @@
 "You haven't supplied enough argument to compute the initial balance, please "
 "select a period and journal in the context."
 msgstr ""
+"No ha ofrecido suficientes datos para calcular el balance inicial, por favor "
+"selecciones un periodo y diario en el contexto"
 
 #. module: account
 #: model:process.transition,note:account.process_transition_supplieranalyticcost0
@@ -4192,11 +4234,13 @@
 "some non legal fields or you must unconfirm the journal entry first! \n"
 "%s"
 msgstr ""
+"¡No puede realizaar esto en un asiento confirmado! ¡Solo puede cambiar "
+"algunos campos no legales o debe primero pasar a borrador el asiento! %s"
 
 #. module: account
 #: field:res.company,paypal_account:0
 msgid "Paypal Account"
-msgstr ""
+msgstr "Cuenta Paypal"
 
 #. module: account
 #: field:account.invoice.report,uom_name:0
@@ -4212,7 +4256,7 @@
 #. module: account
 #: selection:account.financial.report,sign:0
 msgid "Reverse balance sign"
-msgstr ""
+msgstr "Invertir signo del balance"
 
 #. module: account
 #: view:account.analytic.account:0
@@ -4224,7 +4268,7 @@
 #: code:addons/account/account.py:184
 #, python-format
 msgid "Balance Sheet (Liability account)"
-msgstr ""
+msgstr "Balance (Cuenta de pasivo)"
 
 #. module: account
 #: help:account.invoice,date_invoice:0
@@ -4256,7 +4300,7 @@
 #. module: account
 #: help:res.company,paypal_account:0
 msgid "Paypal username (usually email) for receiving online payments."
-msgstr ""
+msgstr "Usuario Paypal (habitualmente un email) para recibir pagos online"
 
 #. module: account
 #: selection:account.aged.trial.balance,target_move:0
@@ -4321,7 +4365,7 @@
 #. module: account
 #: constraint:account.analytic.line:0
 msgid "You can not create analytic line on view account."
-msgstr ""
+msgstr "No puede crear una línea analítica en una cuenta vista"
 
 #. module: account
 #: help:account.move.line,state:0
@@ -4350,7 +4394,7 @@
 #. module: account
 #: selection:account.financial.report,style_overwrite:0
 msgid "Main Title 1 (bold, underlined)"
-msgstr ""
+msgstr "Titulo 1 Principal (negrita, subrayado)"
 
 #. module: account
 #: report:account.analytic.account.balance:0
@@ -4371,7 +4415,7 @@
 #. module: account
 #: field:account.account,exchange_rate:0
 msgid "Exchange Rate"
-msgstr ""
+msgstr "Tasa de Cambio"
 
 #. module: account
 #: model:process.transition,note:account.process_transition_paymentorderreconcilation0
@@ -4404,7 +4448,7 @@
 #. module: account
 #: field:account.chart.template,visible:0
 msgid "Can be Visible?"
-msgstr ""
+msgstr "¿Puede ser visible?"
 
 #. module: account
 #: model:ir.model,name:account.model_account_journal_select
@@ -4419,7 +4463,7 @@
 #. module: account
 #: sql_constraint:account.period:0
 msgid "The name of the period must be unique per company!"
-msgstr ""
+msgstr "El nombre del periodo debe ser único por compañia!"
 
 #. module: account
 #: view:wizard.multi.charts.accounts:0
@@ -4439,6 +4483,10 @@
 "you want to generate accounts of this template only when loading its child "
 "template."
 msgstr ""
+"Establezca esto a falso si no desea que esta plantilla sea utilizada de "
+"forma activa en el asistente que genera el árbol de cuentas desde "
+"plantillas. Esto es útil cuando desea generar cuentas de esta plantilla solo "
+"al cargar su plantilla hija."
 
 #. module: account
 #: view:account.use.model:0
@@ -4457,6 +4505,8 @@
 msgid ""
 "You can not modify company of this period as some journal items exists."
 msgstr ""
+"No puede modificar la compañía de este periodo porque existen asientos "
+"asociados"
 
 #. module: account
 #: view:account.analytic.account:0
@@ -4489,7 +4539,7 @@
 #: code:addons/account/account_move_line.py:1251
 #, python-format
 msgid "Encoding error"
-msgstr ""
+msgstr "Error de codificación"
 
 #. module: account
 #: selection:account.automatic.reconcile,power:0
@@ -4539,7 +4589,7 @@
 #. module: account
 #: view:account.payment.term.line:0
 msgid "Example"
-msgstr ""
+msgstr "Ejemplo"
 
 #. module: account
 #: code:addons/account/account_invoice.py:828
@@ -4561,7 +4611,7 @@
 #: code:addons/account/account.py:3299
 #, python-format
 msgid "Purchase Tax %.2f%%"
-msgstr ""
+msgstr "Impuesto de compra %2f%%"
 
 #. module: account
 #: view:account.subscription.generate:0
@@ -4616,7 +4666,7 @@
 #. module: account
 #: selection:account.bank.statement,state:0
 msgid "New"
-msgstr ""
+msgstr "Nuevo"
 
 #. module: account
 #: field:account.invoice.refund,date:0
@@ -4662,12 +4712,12 @@
 #: code:addons/account/account.py:3120
 #, python-format
 msgid "MISC"
-msgstr ""
+msgstr "Varios"
 
 #. module: account
 #: model:email.template,subject:account.email_template_edi_invoice
 msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a' })"
-msgstr ""
+msgstr "${object.company_id.name} Factura (Ref ${object.number or 'n/d' })"
 
 #. module: account
 #: help:res.partner,last_reconciliation_date:0
@@ -4696,7 +4746,7 @@
 #. module: account
 #: view:account.invoice:0
 msgid "My invoices"
-msgstr ""
+msgstr "Mis facturas"
 
 #. module: account
 #: selection:account.bank.accounts.wizard,account_type:0
@@ -4719,7 +4769,7 @@
 #. module: account
 #: view:account.move:0
 msgid "Posted Journal Entries"
-msgstr ""
+msgstr "Asientos validados"
 
 #. module: account
 #: view:account.use.model:0
@@ -4733,6 +4783,9 @@
 "account if this is a Customer Invoice or Supplier Refund, otherwise a "
 "Partner bank account number."
 msgstr ""
+"Numero de cuenta bancaria contra el que será pagada la factura. Una cuenta "
+"bancaria de la compañía si esta es una factura de cliente o devolución de "
+"proveedor, en otro caso una cuenta bancaria del cliente/proveedor."
 
 #. module: account
 #: view:account.state.open:0
@@ -4777,17 +4830,20 @@
 "You can not define children to an account with internal type different of "
 "\"View\"! "
 msgstr ""
+"Error de configuración!\n"
+"¡No puede definir hijos para una cuenta con el tipo interno distinto de "
+"\"vista\"! "
 
 #. module: account
 #: code:addons/account/account.py:923
 #, python-format
 msgid "Opening Period"
-msgstr ""
+msgstr "Periodo de apertura"
 
 #. module: account
 #: view:account.move:0
 msgid "Journal Entries to Review"
-msgstr ""
+msgstr "Asientos a revisar"
 
 #. module: account
 #: view:account.bank.statement:0
@@ -4885,7 +4941,7 @@
 #. module: account
 #: sql_constraint:account.invoice:0
 msgid "Invoice Number must be unique per Company!"
-msgstr ""
+msgstr "¡El número de factura debe ser único por compañía!"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_receivable_graph
@@ -4900,7 +4956,7 @@
 #. module: account
 #: model:res.groups,name:account.group_account_user
 msgid "Accountant"
-msgstr ""
+msgstr "Contador"
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_account_treasury_report_all
@@ -4908,6 +4964,8 @@
 "From this view, have an analysis of your treasury. It sums the balance of "
 "every accounting entries made on liquidity accounts per period."
 msgstr ""
+"From this view, have an analysis of your treasury. It sums the balance of "
+"every accounting entries made on liquidity accounts per period."
 
 #. module: account
 #: field:account.journal,group_invoice_lines:0
@@ -4928,7 +4986,7 @@
 #. module: account
 #: view:report.hr.timesheet.invoice.journal:0
 msgid "Sale journal in this month"
-msgstr ""
+msgstr "Diario ventas en este mes"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_vat_declaration
@@ -4949,7 +5007,7 @@
 #. module: account
 #: field:account.treasury.report,date:0
 msgid "Beginning of Period Date"
-msgstr ""
+msgstr "Inicio de fecha de período"
 
 #. module: account
 #: code:addons/account/account.py:1351
@@ -5033,7 +5091,7 @@
 #: model:account.payment.term,name:account.account_payment_term_net
 #: model:account.payment.term,note:account.account_payment_term_net
 msgid "30 Net Days"
-msgstr ""
+msgstr "30 días netos"
 
 #. module: account
 #: field:account.subscription,period_type:0
@@ -5076,13 +5134,17 @@
 "encode the sale and purchase rates or choose from list of taxes. This last "
 "choice assumes that the set of tax defined on this template is complete"
 msgstr ""
+"Este campo le ayuda a escoger si desea proponer al usuario codificar los "
+"ratios de venta y compra o escoges de la lista de impuestos. Esta última "
+"selección asume que el conjunto de impuestos definido en esta plantilla está "
+"completo."
 
 #. module: account
 #: view:account.financial.report:0
 #: field:account.financial.report,children_ids:0
 #: model:ir.model,name:account.model_account_financial_report
 msgid "Account Report"
-msgstr ""
+msgstr "Informe financiero"
 
 #. module: account
 #: field:account.journal.column,name:0
@@ -5164,7 +5226,7 @@
 #. module: account
 #: field:account.journal,allow_date:0
 msgid "Check Date in Period"
-msgstr ""
+msgstr "Validar fecha en período"
 
 #. module: account
 #: model:ir.ui.menu,name:account.final_accounting_reports
@@ -5215,7 +5277,7 @@
 #. module: account
 #: view:account.financial.report:0
 msgid "Report"
-msgstr ""
+msgstr "Informe"
 
 #. module: account
 #: view:account.analytic.line:0
@@ -5266,7 +5328,7 @@
 #. module: account
 #: view:account.analytic.account:0
 msgid "Analytic Accounts with a past deadline."
-msgstr ""
+msgstr "Cuentas analíticas con deadline vencido"
 
 #. module: account
 #: report:account.partner.balance:0
@@ -5303,7 +5365,7 @@
 #. module: account
 #: field:wizard.multi.charts.accounts,bank_accounts_id:0
 msgid "Cash and Banks"
-msgstr ""
+msgstr "Caja y Bancos"
 
 #. module: account
 #: model:ir.model,name:account.model_account_installer
@@ -5369,7 +5431,7 @@
 #: field:account.partner.ledger,initial_balance:0
 #: field:account.report.general.ledger,initial_balance:0
 msgid "Include Initial Balances"
-msgstr ""
+msgstr "Incluir balance Inicial"
 
 #. module: account
 #: selection:account.invoice,type:0
@@ -5383,6 +5445,7 @@
 msgid ""
 "You can not create more than one move per period on centralized journal"
 msgstr ""
+"No puede crear más de un movimiento por periodo en un diario centralizado"
 
 #. module: account
 #: field:account.tax,ref_tax_sign:0
@@ -5400,7 +5463,7 @@
 #. module: account
 #: view:account.payment.term.line:0
 msgid "  Number of Days: 14"
-msgstr ""
+msgstr "  Numero de días: 14"
 
 #. module: account
 #: field:account.fiscalyear,end_journal_period_id:0
@@ -5423,7 +5486,7 @@
 #. module: account
 #: field:account.payment.term.line,value_amount:0
 msgid "Amount To Pay"
-msgstr ""
+msgstr "Monto a Pagar"
 
 #. module: account
 #: help:account.partner.reconcile.process,to_reconcile:0
@@ -5465,7 +5528,7 @@
 #. module: account
 #: view:account.invoice:0
 msgid "This action will erase taxes"
-msgstr ""
+msgstr "Esta acción borrará impuestos"
 
 #. module: account
 #: model:process.node,note:account.process_node_accountingentries0
@@ -5488,7 +5551,7 @@
 #. module: account
 #: view:account.invoice.report:0
 msgid "Customer Invoices And Refunds"
-msgstr ""
+msgstr "Facturas y Notas de Crédito"
 
 #. module: account
 #: field:account.analytic.line,amount_currency:0
@@ -5536,12 +5599,12 @@
 #. module: account
 #: view:analytic.entries.report:0
 msgid "Analytic Entries during last 7 days"
-msgstr ""
+msgstr "Asientos analíticos en los últimos 7 días."
 
 #. module: account
 #: selection:account.financial.report,style_overwrite:0
 msgid "Normal Text"
-msgstr ""
+msgstr "Texto normal"
 
 #. module: account
 #: view:account.invoice.refund:0
@@ -5611,7 +5674,7 @@
 #. module: account
 #: selection:account.financial.report,style_overwrite:0
 msgid "Automatic formatting"
-msgstr ""
+msgstr "Formateo automático"
 
 #. module: account
 #: code:addons/account/account.py:963
@@ -5619,7 +5682,7 @@
 msgid ""
 "No fiscal year defined for this date !\n"
 "Please create one from the configuration of the accounting menu."
-msgstr ""
+msgstr "¡No hay año fiscal definido para esta fecha!"
 
 #. module: account
 #: view:account.move.line.reconcile:0
@@ -5678,7 +5741,7 @@
 #. module: account
 #: view:account.payment.term.line:0
 msgid "Due Date Computation"
-msgstr ""
+msgstr "Cálculo de fecha de vencimiento"
 
 #. module: account
 #: field:report.invoice.created,create_date:0
@@ -5701,7 +5764,7 @@
 #: code:addons/account/account_move_line.py:1214
 #, python-format
 msgid "Move name (id): %s (%s)"
-msgstr ""
+msgstr "Movimiento (id): %s (%s)"
 
 #. module: account
 #: view:account.move.line.reconcile:0
@@ -5881,12 +5944,12 @@
 #: code:addons/account/account.py:2256
 #, python-format
 msgid "You have a wrong expression \"%(...)s\" in your model !"
-msgstr ""
+msgstr "¡Tiene una expressión errónea \"%(...)s\" en su modelo!"
 
 #. module: account
 #: field:account.bank.statement.line,date:0
 msgid "Entry Date"
-msgstr ""
+msgstr "Fecha de Entrada"
 
 #. module: account
 #: code:addons/account/account_move_line.py:1155
@@ -5905,13 +5968,14 @@
 #: help:account.bank.statement,balance_end:0
 msgid "Balance as calculated based on Starting Balance and transaction lines"
 msgstr ""
+"Balance calculado basado en el balance inicial y líneas de transacción"
 
 #. module: account
 #: code:addons/account/wizard/account_change_currency.py:64
 #: code:addons/account/wizard/account_change_currency.py:70
 #, python-format
 msgid "Current currency is not configured properly !"
-msgstr ""
+msgstr "¡La moneda actual no está configurada correctamente !"
 
 #. module: account
 #: field:account.tax,account_collected_id:0
@@ -5947,7 +6011,7 @@
 #. module: account
 #: model:ir.actions.act_window,name:account.action_review_financial_journals_installer
 msgid "Review your Financial Journals"
-msgstr ""
+msgstr "Revisión de sus diarios financieros"
 
 #. module: account
 #: help:account.tax,name:0
@@ -5981,7 +6045,7 @@
 #. module: account
 #: field:account.account,foreign_balance:0
 msgid "Foreign Balance"
-msgstr ""
+msgstr "Balance exterior"
 
 #. module: account
 #: field:account.journal.period,name:0
@@ -6017,7 +6081,7 @@
 #. module: account
 #: view:account.subscription:0
 msgid "Running Subscription"
-msgstr ""
+msgstr "Ejecutando suscripciones"
 
 #. module: account
 #: report:account.invoice:0
@@ -6042,7 +6106,7 @@
 "Configuration Error! \n"
 "You can not define children to an account with internal type different of "
 "\"View\"! "
-msgstr ""
+msgstr "¡Error de configuración! "
 
 #. module: account
 #: help:res.partner.bank,journal_id:0
@@ -6050,6 +6114,8 @@
 "This journal will be created automatically for this bank account when you "
 "save the record"
 msgstr ""
+"Este diario será creado automáticamente para esta cuenta bancaria cuando "
+"grabe el registro"
 
 #. module: account
 #: view:account.analytic.line:0
@@ -6128,7 +6194,7 @@
 #. module: account
 #: field:wizard.multi.charts.accounts,sale_tax_rate:0
 msgid "Sales Tax(%)"
-msgstr ""
+msgstr "Impuesto de venta(%)"
 
 #. module: account
 #: view:account.addtmpl.wizard:0
@@ -6161,6 +6227,10 @@
 "choice assumes that the set of tax defined for the chosen template is "
 "complete"
 msgstr ""
+"Este campo booleano le ayuda a decidir si desa proponer al usuario a "
+"codificar los ratios de ventas y compras o usar los campos m2o habituales. "
+"Esta última opción asume que el conjunto de impuestos definidos para la "
+"plantilla seleccionada está completo."
 
 #. module: account
 #: report:account.vat.declaration:0
@@ -6175,12 +6245,12 @@
 #. module: account
 #: view:account.invoice.report:0
 msgid "Open and Paid Invoices"
-msgstr ""
+msgstr "Facturas abiertas y pagadas"
 
 #. module: account
 #: selection:account.financial.report,display_detail:0
 msgid "Display children flat"
-msgstr ""
+msgstr "Mostrar descendientes  en plano"
 
 #. module: account
 #: code:addons/account/account.py:629
@@ -6189,6 +6259,8 @@
 "You can not remove/desactivate an account which is set on a customer or "
 "supplier."
 msgstr ""
+"No puede borrar/desactivar una cuenta que está asociada a un cliente o un "
+"proveedor"
 
 #. module: account
 #: help:account.fiscalyear.close.state,fy_id:0
@@ -6274,7 +6346,7 @@
 #. module: account
 #: constraint:account.move.line:0
 msgid "Company must be the same for its related account and period."
-msgstr ""
+msgstr "La compañía debe ser la misma para su cuenta y periodos relacionados"
 
 #. module: account
 #: view:account.invoice:0
@@ -6325,7 +6397,7 @@
 #: code:addons/account/account.py:3368
 #, python-format
 msgid "Cannot generate an unused journal code."
-msgstr ""
+msgstr "No puede generar un código de diario que no ha sido usado"
 
 #. module: account
 #: view:project.account.analytic.line:0
@@ -6438,6 +6510,8 @@
 "You cannot change the owner company of an account that already contains "
 "journal items."
 msgstr ""
+"No puede cambiar al propietario de la compañía en una cuenta que ya contiene "
+"asientos"
 
 #. module: account
 #: code:addons/account/wizard/account_report_aged_partner_balance.py:58
@@ -6499,7 +6573,7 @@
 #. module: account
 #: view:account.payment.term.line:0
 msgid "  Valuation: Balance"
-msgstr ""
+msgstr "  Evaluación: Balance"
 
 #. module: account
 #: field:account.invoice.line,uos_id:0
@@ -6518,7 +6592,7 @@
 #. module: account
 #: field:account.installer,has_default_company:0
 msgid "Has Default Company"
-msgstr ""
+msgstr "Tiene compañía por defecto"
 
 #. module: account
 #: model:ir.model,name:account.model_account_sequence_fiscalyear
@@ -6540,7 +6614,7 @@
 #: code:addons/account/account.py:622
 #, python-format
 msgid "You can not desactivate an account that contains some journal items."
-msgstr ""
+msgstr "No puede desactivar una cuenta que contiene asientos"
 
 #. module: account
 #: view:account.entries.report:0
@@ -6596,7 +6670,7 @@
 #: code:addons/account/account.py:624
 #, python-format
 msgid "You can not remove an account containing journal items."
-msgstr ""
+msgstr "No puede borrar una cuenta que contiene asientos"
 
 #. module: account
 #: code:addons/account/account_analytic_line.py:145
@@ -6613,7 +6687,7 @@
 #. module: account
 #: help:res.partner.bank,currency_id:0
 msgid "Currency of the related account journal."
-msgstr ""
+msgstr "Moneda del diario relacionado"
 
 #. module: account
 #: code:addons/account/account.py:1563
@@ -6645,7 +6719,7 @@
 #: code:addons/account/account.py:183
 #, python-format
 msgid "Balance Sheet (Asset account)"
-msgstr ""
+msgstr "Balance General (Cuenta activos)"
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_account_bank_reconcile_tree
@@ -6713,7 +6787,7 @@
 #. module: account
 #: view:account.entries.report:0
 msgid "Journal Entries with period in current period"
-msgstr ""
+msgstr "Asientos con periodo en el periodo actual"
 
 #. module: account
 #: help:account.journal,update_posted:0
@@ -6739,7 +6813,7 @@
 #: code:addons/account/account.py:182
 #, python-format
 msgid "Profit & Loss (Expense account)"
-msgstr ""
+msgstr "Pérdidas y ganancias (cuenta de gastos)"
 
 #. module: account
 #: code:addons/account/account.py:622
@@ -6775,12 +6849,12 @@
 #. module: account
 #: field:account.financial.report,style_overwrite:0
 msgid "Financial Report Style"
-msgstr ""
+msgstr "Estilo de informe financiero"
 
 #. module: account
 #: selection:account.financial.report,sign:0
 msgid "Preserve balance sign"
-msgstr ""
+msgstr "Preservar signo del balance"
 
 #. module: account
 #: view:account.vat.declaration:0
@@ -6799,7 +6873,7 @@
 #: code:addons/account/account_move_line.py:591
 #, python-format
 msgid "Error :"
-msgstr ""
+msgstr "Error:"
 
 #. module: account
 #: view:account.analytic.line:0
@@ -6840,6 +6914,9 @@
 "row to display the amount of debit/credit/balance that precedes the filter "
 "you've set."
 msgstr ""
+"Si selecciona el filtro por fecha o periodo, este campo le permite añadir "
+"una fila para mostrar el importe debe/haber/saldo que precede al filtro que "
+"ha incluido"
 
 #. module: account
 #: view:account.bank.statement:0
@@ -6863,6 +6940,8 @@
 "some non legal fields or you must unreconcile first!\n"
 "%s"
 msgstr ""
+"¡No puede realizar esta modificación en un asiento conciliado! ¡Solo puede "
+"cambiar algunos campos no legales o debe romper la conciliación primero! %s"
 
 #. module: account
 #: report:account.general.ledger:0
@@ -6984,7 +7063,7 @@
 #: field:account.chart.template,complete_tax_set:0
 #: field:wizard.multi.charts.accounts,complete_tax_set:0
 msgid "Complete Set of Taxes"
-msgstr ""
+msgstr "Conjunto de impuestos"
 
 #. module: account
 #: view:account.chart.template:0
@@ -7003,6 +7082,9 @@
 "Please define BIC/Swift code on bank for bank type IBAN Account to make "
 "valid payments"
 msgstr ""
+"\n"
+"Por favor defina el código BIC/Swift en el banco de cuentas IBAN para "
+"realizar pagos válidos"
 
 #. module: account
 #: report:account.analytic.account.cost_ledger:0
@@ -7057,7 +7139,7 @@
 #. module: account
 #: view:account.tax.template:0
 msgid "Taxes used in Sales"
-msgstr ""
+msgstr "Impuestos usados en ventas"
 
 #. module: account
 #: code:addons/account/account_invoice.py:495
@@ -7104,6 +7186,10 @@
 "accounting application of OpenERP, journals and accounts will be created "
 "automatically based on these data."
 msgstr ""
+"Configure el número de cuenta de su compañía y seleccione aquel que debe "
+"aparecer en el pie del informe. Puede reorganizar los bancos en la vista de "
+"lista. Si utiliza la aplicación de contabilidad de OpeneRP, los diarios y "
+"periodos serán creados automáticamente basados en estos datos."
 
 #. module: account
 #: model:process.transition,note:account.process_transition_invoicemanually0
@@ -7137,7 +7223,7 @@
 #: code:addons/account/account.py:1432
 #, python-format
 msgid "You can not delete a posted journal entry \"%s\"!"
-msgstr ""
+msgstr "¡No puede borrar un asiento asentado \"%s\"¡"
 
 #. module: account
 #: selection:account.partner.ledger,filter:0
@@ -7155,7 +7241,7 @@
 #. module: account
 #: model:ir.model,name:account.model_accounting_report
 msgid "Accounting Report"
-msgstr ""
+msgstr "Informe Financiero"
 
 #. module: account
 #: report:account.invoice:0
@@ -7184,7 +7270,7 @@
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_report_tree_hierarchy
 msgid "Financial Reports Hierarchy"
-msgstr ""
+msgstr "Jerarquía de informes financieros"
 
 #. module: account
 #: field:account.entries.report,product_uom_id:0
@@ -7256,11 +7342,13 @@
 "Can not find a chart of account, you should create one from the "
 "configuration of the accounting menu."
 msgstr ""
+"No puede encontrar un árbol de cuentas, debería crear uno desde la "
+"configuración del menú de contabilidad"
 
 #. module: account
 #: field:account.chart.template,property_account_expense_opening:0
 msgid "Opening Entries Expense Account"
-msgstr ""
+msgstr "Apuntes de cuenta de gastos"
 
 #. module: account
 #: code:addons/account/account_move_line.py:999
@@ -7276,7 +7364,7 @@
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
 msgid "Install your Chart of Accounts"
-msgstr ""
+msgstr "Instalar su Plan de Cuentas"
 
 #. module: account
 #: view:account.bank.statement:0
@@ -7304,12 +7392,12 @@
 #. module: account
 #: view:account.entries.report:0
 msgid "Posted entries"
-msgstr ""
+msgstr "Asientos contabilizados"
 
 #. module: account
 #: help:account.payment.term.line,value_amount:0
 msgid "For percent enter a ratio between 0-1."
-msgstr ""
+msgstr "Para porcentaje introduzca un ratio entre 0-1"
 
 #. module: account
 #: report:account.invoice:0
@@ -7322,7 +7410,7 @@
 #. module: account
 #: view:account.invoice.report:0
 msgid "Group by year of Invoice Date"
-msgstr ""
+msgstr "Agrupar por año de fecha de factura"
 
 #. module: account
 #: help:res.partner,credit:0
@@ -7384,7 +7472,7 @@
 #. module: account
 #: field:account.chart.template,property_account_income_opening:0
 msgid "Opening Entries Income Account"
-msgstr ""
+msgstr "Entradas de cuentas de Ingresos"
 
 #. module: account
 #: view:account.bank.statement:0
@@ -7411,7 +7499,7 @@
 #. module: account
 #: model:ir.actions.act_window,name:account.action_review_payment_terms_installer
 msgid "Review your Payment Terms"
-msgstr ""
+msgstr "Revisar sus plazos de pago"
 
 #. module: account
 #: field:account.fiscalyear.close,report_name:0
@@ -7426,7 +7514,7 @@
 #. module: account
 #: view:res.partner:0
 msgid "Information About the Bank"
-msgstr ""
+msgstr "Información del Banco"
 
 #. module: account
 #: model:ir.ui.menu,name:account.menu_finance_reporting
@@ -7448,7 +7536,7 @@
 #. module: account
 #: model:ir.actions.act_window,name:account.action_analytic_open
 msgid "Contracts/Analytic Accounts"
-msgstr ""
+msgstr "Contratos/cuentas analíticas"
 
 #. module: account
 #: field:account.bank.statement,ending_details_ids:0
@@ -7498,7 +7586,7 @@
 #: code:addons/account/account.py:429
 #, python-format
 msgid "Unable to adapt the initial balance (negative value)!"
-msgstr ""
+msgstr "!Imposible adaptar el balance inicial (valor negativo)¡"
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_account_moves_purchase
@@ -7523,7 +7611,7 @@
 #. module: account
 #: view:account.invoice.report:0
 msgid "Customer And Supplier Refunds"
-msgstr ""
+msgstr "Devoluciones de clientes y proveedores"
 
 #. module: account
 #: field:account.financial.report,sign:0
@@ -7534,18 +7622,18 @@
 #: code:addons/account/wizard/account_fiscalyear_close.py:73
 #, python-format
 msgid "The periods to generate opening entries were not found"
-msgstr ""
+msgstr "El período para generar entradas abiertas no ha sido encontrado"
 
 #. module: account
 #: model:account.account.type,name:account.data_account_type_view
 msgid "Root/View"
-msgstr ""
+msgstr "Raíz/Vista"
 
 #. module: account
 #: code:addons/account/account.py:3121
 #, python-format
 msgid "OPEJ"
-msgstr ""
+msgstr "OPEJ"
 
 #. module: account
 #: report:account.invoice:0
@@ -7569,7 +7657,7 @@
 #: model:ir.actions.act_window,name:account.action_email_templates
 #: model:ir.ui.menu,name:account.menu_email_templates
 msgid "Email Templates"
-msgstr ""
+msgstr "Plantillas de email"
 
 #. module: account
 #: view:account.move.line:0
@@ -7604,12 +7692,12 @@
 #. module: account
 #: model:ir.ui.menu,name:account.menu_multi_currency
 msgid "Multi-Currencies"
-msgstr ""
+msgstr "Multi-moneda"
 
 #. module: account
 #: field:account.model.line,date_maturity:0
 msgid "Maturity Date"
-msgstr ""
+msgstr "Fecha vencimiento"
 
 #. module: account
 #: code:addons/account/account_move_line.py:1302
@@ -7644,7 +7732,7 @@
 #: view:account.financial.report:0
 #: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy
 msgid "Account Reports Hierarchy"
-msgstr ""
+msgstr "Jerarquía de informes contables"
 
 #. module: account
 #: help:account.account.template,chart_template_id:0
@@ -7655,11 +7743,16 @@
 "few new accounts (You don't need to define the whole structure that is "
 "common to both several times)."
 msgstr ""
+"Este campo opcional le permite asociar una plantilla de cuentas a una "
+"plantilla específica de arbol de cuentas que puede diferir de la que "
+"pertenece su padre. Esto le permite definir plantillas de cuentas que "
+"extienden otras y las completan con algunas cuentas nuevas (No necesita "
+"definir la estructura completa que es comun a 2 varias veces)"
 
 #. module: account
 #: view:account.move:0
 msgid "Unposted Journal Entries"
-msgstr ""
+msgstr "No Contabilizados"
 
 #. module: account
 #: view:product.product:0
@@ -7688,7 +7781,7 @@
 #: code:addons/account/account.py:1518
 #, python-format
 msgid "Currency Adjustment"
-msgstr ""
+msgstr "Ajustes de moneda"
 
 #. module: account
 #: field:account.fiscalyear.close,fy_id:0
@@ -7707,6 +7800,8 @@
 msgid ""
 "This field is used to generate legal reports: profit and loss, balance sheet."
 msgstr ""
+"Este campo se usa para generar informes legales:  pérdidas y ganancias, "
+"balance."
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_review_payment_terms_installer
@@ -7716,6 +7811,10 @@
 "terms for each letter. Each customer or supplier can be assigned to one of "
 "these payment terms."
 msgstr ""
+"Los tipos de pago definen las condiciones para pagar una factura de cliente "
+"o proveedor en uno o varios pagos. Las alarmas periódicas de cliente "
+"utilizarán las formas de pago para cada carta. Cada cliente o proveedor "
+"puede ser asignado a uno de estos tipos de pago."
 
 #. module: account
 #: selection:account.entries.report,month:0
@@ -7743,6 +7842,7 @@
 #, python-format
 msgid "Global taxes defined, but they are not in invoice lines !"
 msgstr ""
+"¡Impuestos globales definidos, pero no están en las líneas de factura!"
 
 #. module: account
 #: model:ir.model,name:account.model_account_chart_template
@@ -7755,6 +7855,8 @@
 "The sequence field is used to order the resources from lower sequences to "
 "higher ones."
 msgstr ""
+"El campo secuencia se usa para ordenar los recursos desde la secuencia más "
+"baja a la más alta"
 
 #. module: account
 #: field:account.tax.code,code:0
@@ -7775,7 +7877,7 @@
 #. module: account
 #: field:account.financial.report,name:0
 msgid "Report Name"
-msgstr ""
+msgstr "Nombre del informe"
 
 #. module: account
 #: model:account.account.type,name:account.data_account_type_cash
@@ -7834,17 +7936,17 @@
 #. module: account
 #: constraint:product.category:0
 msgid "Error ! You cannot create recursive categories."
-msgstr ""
+msgstr "¡Error! No puede crear categorías recursivas"
 
 #. module: account
 #: help:account.model.line,quantity:0
 msgid "The optional quantity on entries."
-msgstr ""
+msgstr "Cantidad opcional en las entradas"
 
 #. module: account
 #: view:account.financial.report:0
 msgid "Parent Report"
-msgstr ""
+msgstr "Informe padre"
 
 #. module: account
 #: view:account.state.open:0
@@ -7894,7 +7996,7 @@
 #. module: account
 #: field:account.bank.statement,balance_end:0
 msgid "Computed Balance"
-msgstr ""
+msgstr "Balance calculado"
 
 #. module: account
 #: field:account.account,parent_id:0
@@ -8023,6 +8125,8 @@
 msgid ""
 "The bank account defined on the selected chart of accounts hasn't a code."
 msgstr ""
+"La cuenta bancaria definida en el árbol de cuentas seleccionado no tiene "
+"código"
 
 #. module: account
 #: code:addons/account/wizard/account_invoice_refund.py:108
@@ -8039,7 +8143,7 @@
 #. module: account
 #: view:account.financial.report:0
 msgid "Report Type"
-msgstr ""
+msgstr "Tipo de Informe"
 
 #. module: account
 #: view:account.analytic.account:0
@@ -8083,6 +8187,8 @@
 "The statement balance is incorrect !\n"
 "The expected balance (%.2f) is different than the computed one. (%.2f)"
 msgstr ""
+"El balance del asiento es incorrecto\n"
+"El balance esperado (%.2f) es diferente al calculado. (%.2f)"
 
 #. module: account
 #: code:addons/account/account_bank_statement.py:353
@@ -8100,6 +8206,13 @@
 "Most of the OpenERP operations (invoices, timesheets, expenses, etc) "
 "generate analytic entries on the related account."
 msgstr ""
+"La estructura normal de cuentas tiene una estructura definida por los "
+"requerimientos legales del país. La estructura de árbol de cuentas "
+"analíticas reflejan sus propias necesidades de negocio en términos de "
+"informes coste/beneficio. Son usualmente estructurados en función de "
+"contratos, proyectos, productos o departamentos. La mayoría de las "
+"operaciones de OpenERP (facturas, imputaciones de horas, gastos, etc) "
+"generan entradas analíticas en la cuenta relacionada."
 
 #. module: account
 #: field:account.account.type,close_method:0
@@ -8136,6 +8249,7 @@
 msgid ""
 "Check this box if this account allows reconciliation of journal items."
 msgstr ""
+"Haz click en esta casilla si la cuenta permite conciliación de asientos"
 
 #. module: account
 #: help:account.period,state:0
@@ -8165,7 +8279,7 @@
 #. module: account
 #: view:report.account_type.sales:0
 msgid "This Months Sales by type"
-msgstr ""
+msgstr "Ventas del mes por tipo"
 
 #. module: account
 #: view:account.analytic.account:0
@@ -8197,6 +8311,16 @@
 "related journal entries may or may not be reconciled.             \n"
 "* The 'Cancelled' state is used when user cancel invoice."
 msgstr ""
+" * El estado borrador se usa cuando un usuario está codificando una factura "
+"nueva y no confirmada             \n"
+"* El estado 'pro-forma' cuando la factura está en el estado pro-forma, aún "
+"no tiene número de factura\n"
+"* El estado 'abierto\" se usa cuando el usuario crea una factura y se genera "
+"un número de factura. Se queda en estado abierto hasta que el usuario pague "
+"la factura.\n"
+"* El estado 'pagada' se asigna automáticamente cuando se paga la factura. Su "
+"asiento relacionado puede ser o no ser conciliado.\n"
+"* El estado 'cancelado' se usa cuando el usuario cancela la factura."
 
 #. module: account
 #: view:account.invoice.report:0
@@ -8227,6 +8351,7 @@
 msgid ""
 "Can not find a chart of accounts for this company, you should create one."
 msgstr ""
+"No pued encontrar un plan de cuentas para esta compañía, debería crear una."
 
 #. module: account
 #: view:account.invoice:0
@@ -8257,12 +8382,12 @@
 #. module: account
 #: view:account.analytic.account:0
 msgid "Current Accounts"
-msgstr ""
+msgstr "Cuentas actuales"
 
 #. module: account
 #: view:account.invoice.report:0
 msgid "Group by Invoice Date"
-msgstr ""
+msgstr "Agrupar por fecha de factura"
 
 #. module: account
 #: view:account.invoice.refund:0
@@ -8304,6 +8429,8 @@
 "Total amount (in Company currency) for transactions held in secondary "
 "currency for this account."
 msgstr ""
+"Importe total (en la moneda de la compañía) para transacciones realizadas en "
+"una moneda secundaria para esta cuenta"
 
 #. module: account
 #: report:account.invoice:0
@@ -8341,6 +8468,8 @@
 "You can not cancel an invoice which is partially paid! You need to "
 "unreconcile related payment entries first!"
 msgstr ""
+"¡No puede cancelar una factura que está parcialmente pagada! !Primero "
+"necesita romper la conciliación de los asientos relacionados¡"
 
 #. module: account
 #: field:account.chart.template,property_account_income_categ:0
@@ -8350,7 +8479,7 @@
 #. module: account
 #: field:account.account,adjusted_balance:0
 msgid "Adjusted Balance"
-msgstr ""
+msgstr "Balance ajustado"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form
@@ -8371,7 +8500,7 @@
 #. module: account
 #: view:account.payment.term.line:0
 msgid "  Valuation: Percent"
-msgstr ""
+msgstr "  Valoración: Porcentaje"
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_invoice_tree3
@@ -8472,7 +8601,7 @@
 #: view:account.invoice.report:0
 #: view:analytic.entries.report:0
 msgid "current month"
-msgstr ""
+msgstr "Mes actual"
 
 #. module: account
 #: code:addons/account/account.py:1052
@@ -8481,6 +8610,8 @@
 "No period defined for this date: %s !\n"
 "Please create one."
 msgstr ""
+"¡No hay periodo definido para esta fecha: %s!\n"
+"Por favor crear uno."
 
 #. module: account
 #: model:process.transition,name:account.process_transition_filestatement0
@@ -8508,7 +8639,7 @@
 #. module: account
 #: view:account.payment.term.line:0
 msgid "  Value amount: n.a"
-msgstr ""
+msgstr "  Valor del importe: n.d."
 
 #. module: account
 #: view:account.automatic.reconcile:0
@@ -8540,6 +8671,13 @@
 "You should press this button to re-open it and let it continue its normal "
 "process after having resolved the eventual exceptions it may have created."
 msgstr ""
+"Este botón solo aparece cuando el estado de la factura es 'pagado' "
+"(mostrando que ha sido totalmente conciliado) y el campo booleano "
+"autocalculado 'pagado/conciliado' es falso (representa que ya no es el "
+"caso). En otras palabra, la conciliación de la factura ha sido rota y ya no "
+"está en estado 'pagado'. Debería presionar este botón para volver a abrir la "
+"factura y le permitirá continuar su proceso normal después de haber resuelto "
+"la excepción eventual que lo puede haber producido."
 
 #. module: account
 #: model:ir.model,name:account.model_account_fiscalyear_close_state
@@ -8580,6 +8718,7 @@
 msgid ""
 "In order to close a period, you must first post related journal entries."
 msgstr ""
+"Si desea cerrar un período, primero debe confirmar todos los asientos."
 
 #. module: account
 #: view:account.entries.report:0
@@ -8597,12 +8736,12 @@
 #: code:addons/account/account.py:3296
 #, python-format
 msgid "Tax %.2f%%"
-msgstr ""
+msgstr "Impuestox %.2f%%"
 
 #. module: account
 #: view:account.analytic.account:0
 msgid "Contacts"
-msgstr ""
+msgstr "Contactos"
 
 #. module: account
 #: field:account.tax.code,parent_id:0
@@ -8707,7 +8846,7 @@
 #: code:addons/account/account_invoice.py:495
 #, python-format
 msgid "The payment term of supplier does not have a payment term line!"
-msgstr ""
+msgstr "¡La forma de pago de proveedor no tiene detalle de forma de pago!"
 
 #. module: account
 #: field:account.move.line.reconcile,debit:0
@@ -8772,17 +8911,17 @@
 #. module: account
 #: view:account.move.line:0
 msgid "Next Partner Entries to reconcile"
-msgstr ""
+msgstr "Próximos asientos de cliente para conciliar"
 
 #. module: account
 #: selection:account.financial.report,style_overwrite:0
 msgid "Smallest Text"
-msgstr ""
+msgstr "El texto más pequeño"
 
 #. module: account
 #: model:res.groups,name:account.group_account_invoice
 msgid "Invoicing & Payments"
-msgstr ""
+msgstr "Facturación y Pagos"
 
 #. module: account
 #: help:account.invoice,internal_number:0
@@ -8834,7 +8973,7 @@
 "You can not validate a non-balanced entry !\n"
 "Make sure you have configured payment terms properly !\n"
 "The latest payment term line should be of the type \"Balance\" !"
-msgstr ""
+msgstr "¡No puede validar un asiento sin cuadrar !"
 
 #. module: account
 #: view:account.account:0
@@ -8912,7 +9051,7 @@
 #: code:addons/account/account.py:2256
 #, python-format
 msgid "Wrong model !"
-msgstr ""
+msgstr "¡Modelo erróneo!"
 
 #. module: account
 #: field:account.invoice.refund,period:0
@@ -8933,6 +9072,11 @@
 "accounts that are typically more credited than debited and that you would "
 "like to print as positive amounts in your reports; e.g.: Income account."
 msgstr ""
+"Para cuentas que tipicamente tienen más débito que crédito y que desea "
+"imprimir con importes negativos en sus informes, debería revertir el signo "
+"en el balance;p.e: cuenta de gasto. La misma aplica para cuentas que "
+"tipicamente tienen más crédito que débito y que desea imprimir con importes "
+"positivos en sus informes. p.e: cuenta de ingresos."
 
 #. module: account
 #: field:res.partner,contract_ids:0
@@ -8974,7 +9118,7 @@
 #: code:addons/account/account_invoice.py:808
 #, python-format
 msgid "Please define sequence on the journal related to this invoice."
-msgstr ""
+msgstr "Por favor defina la secuencia de diario relacionado ."
 
 #. module: account
 #: view:account.move:0
@@ -8982,12 +9126,12 @@
 #: view:account.move.line:0
 #: field:account.move.line,narration:0
 msgid "Internal Note"
-msgstr ""
+msgstr "Nota interna"
 
 #. module: account
 #: view:report.account.sales:0
 msgid "This year's Sales by type"
-msgstr ""
+msgstr "Ventas de este año por tipo"
 
 #. module: account
 #: view:account.analytic.cost.ledger.journal.report:0
@@ -9041,7 +9185,7 @@
 #. module: account
 #: model:ir.actions.act_window,name:account.action_view_financial_accounts_installer
 msgid "Review your Financial Accounts"
-msgstr ""
+msgstr "Revisión de sus cuentas financieras"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_open_journal_button
@@ -9122,7 +9266,7 @@
 #. module: account
 #: field:account.vat.declaration,display_detail:0
 msgid "Display Detail"
-msgstr ""
+msgstr "Mostrar detalles"
 
 #. module: account
 #: code:addons/account/account.py:3118
@@ -9167,7 +9311,7 @@
 #: model:ir.actions.act_window,name:account.action_account_report_pl
 #: model:ir.ui.menu,name:account.menu_account_reports
 msgid "Financial Reports"
-msgstr ""
+msgstr "Informes financieros"
 
 #. module: account
 #: report:account.account.balance:0
@@ -9350,7 +9494,7 @@
 #. module: account
 #: view:account.analytic.account:0
 msgid "Contract Data"
-msgstr ""
+msgstr "Datos de Contrato"
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_account_moves_sale
@@ -9426,7 +9570,7 @@
 #. module: account
 #: view:analytic.entries.report:0
 msgid "Analytic Entries of last 365 days"
-msgstr ""
+msgstr "Apuntes analíticos de los últimos 365 días"
 
 #. module: account
 #: report:account.central.journal:0
@@ -9489,7 +9633,7 @@
 #. module: account
 #: view:account.invoice.report:0
 msgid "Customer And Supplier Invoices"
-msgstr ""
+msgstr "Facturas de cliente y proveedor"
 
 #. module: account
 #: model:process.node,note:account.process_node_paymententries0
@@ -9529,6 +9673,8 @@
 "No opening/closing period defined, please create one to set the initial "
 "balance!"
 msgstr ""
+"¡No existe periodo de apertura/cierre, por favor, cree uno para establecer "
+"el balance inicial!"
 
 #. module: account
 #: report:account.account.balance:0
@@ -9577,6 +9723,12 @@
 "journals. Select 'Opening/Closing Situation' for entries generated for new "
 "fiscal years."
 msgstr ""
+"Seleccione 'Ventas' para diarios de facturas de cliente. Seleccione "
+"'Compras' para diarios de facturas de proveedor. Seleccione 'Caja' o 'Banco' "
+"para diarios que se usan para pagos de clientes y proveedores. Seleccione "
+"'General' para diarios que contienen operaciones varias. Seleccione 'Balance "
+"apertura/cierre' para diarios que contendrán asientos creados en el nuevo "
+"año fiscal."
 
 #. module: account
 #: model:ir.model,name:account.model_account_subscription
@@ -9629,6 +9781,8 @@
 "It indicates that the invoice has been paid and the journal entry of the "
 "invoice has been reconciled with one or several journal entries of payment."
 msgstr ""
+"Indica que la factura ha sido pagada y que el asiento de la factura ha sido "
+"conciliado con uno o varios asientos de pago."
 
 #. module: account
 #: view:account.invoice:0
@@ -9708,7 +9862,7 @@
 #. module: account
 #: view:accounting.report:0
 msgid "Comparison"
-msgstr ""
+msgstr "Comparación"
 
 #. module: account
 #: code:addons/account/account_invoice.py:372
@@ -9782,7 +9936,7 @@
 #: code:addons/account/account.py:181
 #, python-format
 msgid "Profit & Loss (Income account)"
-msgstr ""
+msgstr "Pérdidas y ganancias (Cuenta de ingresos)"
 
 #. module: account
 #: constraint:account.account:0
@@ -9790,7 +9944,7 @@
 "Configuration Error! \n"
 "You can not select an account type with a deferral method different of "
 "\"Unreconciled\" for accounts with internal type \"Payable/Receivable\"! "
-msgstr ""
+msgstr "¡Error de configuración! "
 
 #. module: account
 #: view:account.model:0
@@ -9827,7 +9981,7 @@
 #. module: account
 #: view:analytic.entries.report:0
 msgid "Analytic Entries of last 30 days"
-msgstr ""
+msgstr "Apuntes analíticos de los últimos 30 días"
 
 #. module: account
 #: selection:account.aged.trial.balance,filter:0
@@ -9884,7 +10038,7 @@
 #. module: account
 #: model:account.financial.report,name:account.account_financial_report_profitloss_toreport0
 msgid "Profit (Loss) to report"
-msgstr ""
+msgstr "Ganacias (Pérdida) para informe"
 
 #. module: account
 #: view:account.move.line.reconcile.select:0
@@ -9908,7 +10062,7 @@
 #. module: account
 #: selection:account.financial.report,style_overwrite:0
 msgid "Title 2 (bold)"
-msgstr ""
+msgstr "Título 2 (negrita)"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_invoice_tree2
@@ -9949,6 +10103,9 @@
 "When new statement is created the state will be 'Draft'.\n"
 "And after getting confirmation from the bank it will be in 'Confirmed' state."
 msgstr ""
+"Cuando se crea un nuevo recibo su estado será 'Borrador'\n"
+"Y después de obtener la confirmación del banco quedará en estado "
+"'Confirmado'."
 
 #. module: account
 #: model:ir.model,name:account.model_account_period
@@ -10069,7 +10226,7 @@
 #. module: account
 #: selection:account.financial.report,display_detail:0
 msgid "No detail"
-msgstr ""
+msgstr "Sin detalles"
 
 #. module: account
 #: code:addons/account/account_analytic_line.py:102
@@ -10081,14 +10238,14 @@
 #. module: account
 #: constraint:account.move.line:0
 msgid "You can not create journal items on closed account."
-msgstr ""
+msgstr "No puede crear asientos en cuentas cerradas"
 
 #. module: account
 #: field:account.account,unrealized_gain_loss:0
 #: model:ir.actions.act_window,name:account.action_account_gain_loss
 #: model:ir.ui.menu,name:account.menu_unrealized_gains_losses
 msgid "Unrealized Gain or Loss"
-msgstr ""
+msgstr "Pérdidas y ganancias no realizadas"
 
 #. module: account
 #: view:account.fiscalyear:0
@@ -10101,12 +10258,12 @@
 #. module: account
 #: model:ir.actions.server,name:account.ir_actions_server_edi_invoice
 msgid "Auto-email confirmed invoices"
-msgstr ""
+msgstr "Auto-email facturas confirmadas"
 
 #. module: account
 #: field:account.invoice,check_total:0
 msgid "Verification Total"
-msgstr ""
+msgstr "Validación total"
 
 #. module: account
 #: report:account.analytic.account.balance:0
@@ -10234,6 +10391,7 @@
 #: constraint:account.bank.statement:0
 msgid "The journal and period chosen have to belong to the same company."
 msgstr ""
+"El diario y periodo seleccionados tienen que pertenecer a la misma compañía"
 
 #. module: account
 #: view:account.invoice:0
@@ -10263,7 +10421,7 @@
 #. module: account
 #: view:wizard.multi.charts.accounts:0
 msgid "Generate Your Chart of Accounts from a Chart Template"
-msgstr ""
+msgstr "Generar su plan de cuentas desde una plantilla de cuentas"
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_account_invoice_report_all
@@ -10335,7 +10493,7 @@
 #. module: account
 #: selection:account.financial.report,style_overwrite:0
 msgid "Title 3 (bold, smaller)"
-msgstr ""
+msgstr "Título 3 (negrita, más pequeña)"
 
 #. module: account
 #: field:account.invoice,invoice_line:0
@@ -10350,7 +10508,7 @@
 #. module: account
 #: selection:account.print.journal,sort_selection:0
 msgid "Journal Entry Number"
-msgstr ""
+msgstr "Número de asiento"
 
 #. module: account
 #: view:account.subscription:0
@@ -10364,6 +10522,8 @@
 "You cannot change the type of account from 'Closed' to any other type which "
 "contains journal items!"
 msgstr ""
+"¡No puede cambiar el tipo de cuenta desde 'cerrado' a cualquier otro tipo "
+"que contenga asientos!"
 
 #. module: account
 #: code:addons/account/account_move_line.py:832
@@ -10389,7 +10549,7 @@
 #. module: account
 #: view:account.analytic.line:0
 msgid "Analytic Journal Items related to a purchase journal."
-msgstr ""
+msgstr "Apuntes analíticos relacionados con un diario de compra"
 
 #. module: account
 #: help:account.account,type:0
@@ -10400,6 +10560,11 @@
 "payable/receivable are for partners accounts (for debit/credit "
 "computations), closed for depreciated accounts."
 msgstr ""
+"El 'tipo interno' se usa para funcionalidad disponible en distintos tipos de "
+"cuentas: las vistas no pueden contener asientos, consolicaciones son cuentas "
+"que pueden tener cuentas hijas para consolidaciones multi-compañía, a "
+"cobrar/a pagar son para cuentas de clientes (para cálculos de "
+"débito/crédito), cerradas para cuentas depreciadas."
 
 #. module: account
 #: selection:account.balance.report,display_account:0
@@ -10441,7 +10606,7 @@
 #. module: account
 #: view:account.invoice.report:0
 msgid "Group by month of Invoice Date"
-msgstr ""
+msgstr "Agrupar por mes"
 
 #. module: account
 #: view:account.analytic.line:0
@@ -10508,7 +10673,7 @@
 #. module: account
 #: view:account.payment.term:0
 msgid "Description On Invoices"
-msgstr ""
+msgstr "Descripción en facturas"
 
 #. module: account
 #: model:ir.model,name:account.model_account_analytic_chart
@@ -10535,7 +10700,7 @@
 #. module: account
 #: field:account.print.journal,sort_selection:0
 msgid "Entries Sorted by"
-msgstr ""
+msgstr "Entradas ordenadas por"
 
 #. module: account
 #: help:account.move,state:0
@@ -10546,6 +10711,11 @@
 "created by the system on document validation (invoices, bank statements...) "
 "and will be created in 'Posted' state."
 msgstr ""
+"Todos los asientos creados manualmente usualmente están en estado 'no "
+"asentado', pero puede marcar la opción para saltar este estado en el diario "
+"relacionado. En este caso, serán tratados como asientos creados "
+"automáticamente por el sistema en la validación de documentos ( facturas, "
+"recibos bancarios...) y serán creados en estado 'Asentado'"
 
 #. module: account
 #: view:account.fiscal.position.template:0
@@ -10571,6 +10741,7 @@
 #: selection:account.invoice.refund,filter_refund:0
 msgid "Modify: refund invoice, reconcile and create a new draft invoice"
 msgstr ""
+"Modificar: Factura devolución, reconcilia y crea una nueva factura borrador."
 
 #. module: account
 #: help:account.invoice.line,account_id:0
@@ -10675,6 +10846,75 @@
 "% endif\n"
 "            "
 msgstr ""
+"\n"
+"Hello${object.address_invoice_id.name and ' ' or "
+"''}${object.address_invoice_id.name or ''},\n"
+"\n"
+"A new invoice is available for ${object.partner_id.name}:\n"
+"       | Invoice number: *${object.number}*\n"
+"       | Invoice total: *${object.amount_total} ${object.currency_id.name}*\n"
+"       | Invoice date: ${object.date_invoice}\n"
+"       % if object.origin:\n"
+"       | Order reference: ${object.origin}\n"
+"       % endif\n"
+"       | Your contact: ${object.user_id.name} ${object.user_id.user_email "
+"and '<%s>'%(object.user_id.user_email) or ''}\n"
+"\n"
+"You can view the invoice document, download it and pay online using the "
+"following link:\n"
+"    ${ctx.get('edi_web_url_view') or 'n/a'}\n"
+"\n"
+"% if object.company_id.paypal_account and object.type in ('out_invoice', "
+"'in_refund'):\n"
+"<% \n"
+"comp_name = quote(object.company_id.name)\n"
+"inv_number = quote(object.number)\n"
+"paypal_account = quote(object.company_id.paypal_account)\n"
+"inv_amount = quote(str(object.amount_total))\n"
+"cur_name = quote(object.currency_id.name)\n"
+"paypal_url = \"https://www.paypal.com/cgi-";
+"bin/webscr?cmd=_xclick&business=%s&item_name=%s%%20Invoice%%20%s\"\\\n"
+"             "
+"\"&invoice=%s&amount=%s&currency_code=%s&button_subtype=services&no_note=1&bn"
+"=OpenERP_Invoice_PayNow_%s\" % \\\n"
+"             "
+"(paypal_account,comp_name,inv_number,inv_number,inv_amount,cur_name,cur_name)"
+"\n"
+"%>\n"
+"It is also possible to directly pay with Paypal:\n"
+"    ${paypal_url}\n"
+"% endif\n"
+"\n"
+"If you have any question, do not hesitate to contact us.\n"
+"\n"
+"\n"
+"Thank you for choosing ${object.company_id.name}!\n"
+"\n"
+"\n"
+"--\n"
+"${object.user_id.name} ${object.user_id.user_email and "
+"'<%s>'%(object.user_id.user_email) or ''}\n"
+"${object.company_id.name}\n"
+"% if object.company_id.street:\n"
+"${object.company_id.street or ''}\n"
+"% endif\n"
+"% if object.company_id.street2:\n"
+"${object.company_id.street2}\n"
+"% endif\n"
+"% if object.company_id.city or object.company_id.zip:\n"
+"${object.company_id.zip or ''} ${object.company_id.city or ''}\n"
+"% endif\n"
+"% if object.company_id.country_id:\n"
+"${object.company_id.state_id and ('%s, ' % object.company_id.state_id.name) "
+"or ''} ${object.company_id.country_id.name or ''}\n"
+"% endif\n"
+"% if object.company_id.phone:\n"
+"Phone: ${object.company_id.phone}\n"
+"% endif\n"
+"% if object.company_id.website:\n"
+"${object.company_id.website or ''}\n"
+"% endif\n"
+"            "
 
 #. module: account
 #: model:ir.model,name:account.model_res_partner_bank
@@ -10859,6 +11099,8 @@
 "This label will be displayed on report to show the balance computed for the "
 "given comparison filter."
 msgstr ""
+"Esta etiqueta será mostrada en el informe para mostrar el balance calculado "
+"para el filtro de comparación introducido."
 
 #. module: account
 #: code:addons/account/wizard/account_report_aged_partner_balance.py:56

=== modified file 'account/i18n/es_PY.po'
--- account/i18n/es_PY.po	2012-02-18 07:13:28 +0000
+++ account/i18n/es_PY.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:11+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:25+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/es_VE.po'
--- account/i18n/es_VE.po	2012-02-18 07:13:28 +0000
+++ account/i18n/es_VE.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:10+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:24+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/et.po'
--- account/i18n/et.po	2012-02-18 07:13:28 +0000
+++ account/i18n/et.po	2012-06-06 12:41:23 +0000
@@ -7,14 +7,14 @@
 "Project-Id-Version: OpenERP Server 6.0dev\n"
 "Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
 "POT-Creation-Date: 2012-02-08 00:35+0000\n"
-"PO-Revision-Date: 2012-02-17 09:10+0000\n"
-"Last-Translator: Raiko Pajur <Unknown>\n"
+"PO-Revision-Date: 2012-03-28 13:12+0000\n"
+"Last-Translator: Ott Lepik <ott.lepik@xxxxxxxxx>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:03+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:18+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0
@@ -2740,7 +2740,7 @@
 #: model:ir.ui.menu,name:account.menu_account_customer
 #: model:ir.ui.menu,name:account.menu_finance_receivables
 msgid "Customers"
-msgstr ""
+msgstr "Kliendid"
 
 #. module: account
 #: report:account.analytic.account.cost_ledger:0
@@ -2888,7 +2888,7 @@
 #: model:process.process,name:account.process_process_invoiceprocess0
 #: selection:report.invoice.created,type:0
 msgid "Customer Invoice"
-msgstr "Kliendi arve"
+msgstr "Müügiarve"
 
 #. module: account
 #: help:account.tax.template,include_base_amount:0

=== modified file 'account/i18n/eu.po'
--- account/i18n/eu.po	2012-02-18 07:13:28 +0000
+++ account/i18n/eu.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:02+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:17+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/fa.po'
--- account/i18n/fa.po	2012-02-18 07:13:28 +0000
+++ account/i18n/fa.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:06+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:21+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/fa_AF.po'
--- account/i18n/fa_AF.po	2012-02-18 07:13:28 +0000
+++ account/i18n/fa_AF.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:11+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:25+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/fi.po'
--- account/i18n/fi.po	2012-02-18 07:13:28 +0000
+++ account/i18n/fi.po	2012-06-06 12:41:23 +0000
@@ -8,20 +8,20 @@
 "Project-Id-Version: openobject-addons\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2012-02-08 00:35+0000\n"
-"PO-Revision-Date: 2012-02-17 09:10+0000\n"
-"Last-Translator: OpenERP Administrators <Unknown>\n"
+"PO-Revision-Date: 2012-05-06 15:44+0000\n"
+"Last-Translator: Sanna Sillanmäki <sanna.sillanmaki@xxxxxx>\n"
 "Language-Team: Finnish <fi@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:03+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:18+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0
 #: view:analytic.entries.report:0
 msgid "last month"
-msgstr ""
+msgstr "viime kuussa"
 
 #. module: account
 #: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@@ -82,7 +82,7 @@
 #: code:addons/account/account_bank_statement.py:302
 #, python-format
 msgid "Journal item \"%s\" is not valid."
-msgstr ""
+msgstr "Päiväkirjamerkintä \"%s\" ei ole validi"
 
 #. module: account
 #: model:ir.model,name:account.model_report_aged_receivable
@@ -191,7 +191,7 @@
 #. module: account
 #: field:accounting.report,label_filter:0
 msgid "Column Label"
-msgstr ""
+msgstr "Sarakeotsikko"
 
 #. module: account
 #: code:addons/account/wizard/account_move_journal.py:95
@@ -531,7 +531,7 @@
 #. module: account
 #: sql_constraint:res.company:0
 msgid "The company name must be unique !"
-msgstr ""
+msgstr "Yrityksen nimen pitää olla uniikki!"
 
 #. module: account
 #: model:ir.model,name:account.model_account_invoice_refund
@@ -763,7 +763,7 @@
 #. module: account
 #: model:ir.ui.menu,name:account.menu_account_report
 msgid "Financial Report"
-msgstr ""
+msgstr "Talousraportti"
 
 #. module: account
 #: view:account.analytic.journal:0
@@ -1075,7 +1075,7 @@
 #. module: account
 #: field:account.report.general.ledger,sortby:0
 msgid "Sort by"
-msgstr ""
+msgstr "Järjestä"
 
 #. module: account
 #: help:account.fiscalyear.close,fy_id:0
@@ -1346,7 +1346,7 @@
 #. module: account
 #: model:account.financial.report,name:account.account_financial_report_profitandloss0
 msgid "Profit and Loss"
-msgstr ""
+msgstr "Tuotto ja menetys"
 
 #. module: account
 #: model:ir.model,name:account.model_account_account_template
@@ -1788,7 +1788,7 @@
 #: code:addons/account/account.py:429
 #, python-format
 msgid "Error!"
-msgstr ""
+msgstr "Virhe!"
 
 #. module: account
 #: sql_constraint:account.move.line:0
@@ -1820,7 +1820,7 @@
 #. module: account
 #: field:account.vat.declaration,based_on:0
 msgid "Based on"
-msgstr ""
+msgstr "Perustuen"
 
 #. module: account
 #: field:account.invoice,move_id:0
@@ -2002,7 +2002,7 @@
 #. module: account
 #: report:account.journal.period.print.sale.purchase:0
 msgid "VAT Declaration"
-msgstr ""
+msgstr "ALV ilmoitus"
 
 #. module: account
 #: field:account.move.reconcile,line_partial_ids:0
@@ -2127,7 +2127,7 @@
 #. module: account
 #: report:account.invoice:0
 msgid "Customer Code"
-msgstr ""
+msgstr "Asiakaskoodi"
 
 #. module: account
 #: view:account.installer:0
@@ -2184,7 +2184,7 @@
 #. module: account
 #: constraint:res.partner.bank:0
 msgid "The RIB and/or IBAN is not valid"
-msgstr ""
+msgstr "RIB tai IBAn koodi ei ole oikein"
 
 #. module: account
 #: view:product.category:0
@@ -2272,7 +2272,7 @@
 #. module: account
 #: field:account.invoice.report,account_line_id:0
 msgid "Account Line"
-msgstr ""
+msgstr "Tilin rivi"
 
 #. module: account
 #: code:addons/account/account.py:1468
@@ -2298,7 +2298,7 @@
 #. module: account
 #: constraint:res.partner:0
 msgid "Error ! You cannot create recursive associated members."
-msgstr ""
+msgstr "Virhe! Rekursiivisen kumppanin luonti ei ole sallittu."
 
 #. module: account
 #: field:account.sequence.fiscalyear,sequence_main_id:0
@@ -2371,7 +2371,7 @@
 #. module: account
 #: view:account.partner.reconcile.process:0
 msgid "Partner Reconciliation"
-msgstr ""
+msgstr "Kumppanien täsmäytys"
 
 #. module: account
 #: field:account.tax,tax_code_id:0
@@ -2474,7 +2474,7 @@
 #. module: account
 #: view:account.entries.report:0
 msgid "entries"
-msgstr ""
+msgstr "tapahtumat"
 
 #. module: account
 #: help:account.invoice,date_due:0
@@ -2689,7 +2689,7 @@
 #. module: account
 #: field:account.invoice,reference_type:0
 msgid "Communication Type"
-msgstr ""
+msgstr "Yhteystapa"
 
 #. module: account
 #: field:account.invoice.line,discount:0
@@ -3012,7 +3012,7 @@
 #: view:account.invoice.report:0
 #: view:analytic.entries.report:0
 msgid "Month-1"
-msgstr ""
+msgstr "Edellinen kuukausi"
 
 #. module: account
 #: view:account.analytic.line:0
@@ -3254,7 +3254,7 @@
 #. module: account
 #: field:account.financial.report,display_detail:0
 msgid "Display details"
-msgstr ""
+msgstr "Näytä yksityiskohdat"
 
 #. module: account
 #: report:account.overdue:0
@@ -3264,7 +3264,7 @@
 #. module: account
 #: constraint:account.invoice:0
 msgid "Invalid BBA Structured Communication !"
-msgstr ""
+msgstr "Virheellinen BBA rakenteen kommunikointi !"
 
 #. module: account
 #: help:account.analytic.line,amount_currency:0
@@ -3370,17 +3370,17 @@
 #. module: account
 #: view:account.invoice.line:0
 msgid "Quantity :"
-msgstr ""
+msgstr "Määrä :"
 
 #. module: account
 #: field:account.aged.trial.balance,period_length:0
 msgid "Period Length (days)"
-msgstr ""
+msgstr "Jakson pituus (päivää)"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal
 msgid "Print Sale/Purchase Journal"
-msgstr ""
+msgstr "Tulosta myynti/osto päiväkirja"
 
 #. module: account
 #: field:account.invoice.report,state:0
@@ -3412,7 +3412,7 @@
 #. module: account
 #: sql_constraint:res.currency:0
 msgid "The currency code must be unique per company!"
-msgstr ""
+msgstr "Valuuttakoodin pitää olla uniikki yrityskohtaisesti!"
 
 #. module: account
 #: selection:account.account.type,close_method:0
@@ -3739,7 +3739,7 @@
 #: model:ir.actions.act_window,name:account.action_bank_tree
 #: model:ir.ui.menu,name:account.menu_action_bank_tree
 msgid "Setup your Bank Accounts"
-msgstr ""
+msgstr "Määrittele pankkitilit"
 
 #. module: account
 #: code:addons/account/wizard/account_move_bank_reconcile.py:53
@@ -3786,7 +3786,7 @@
 #. module: account
 #: view:account.entries.report:0
 msgid "Journal Entries with period in current year"
-msgstr ""
+msgstr "Päiväkirjaviennit joiden jakso kuluvana vuonna"
 
 #. module: account
 #: help:account.central.journal,amount_currency:0
@@ -3880,7 +3880,7 @@
 #: field:account.common.account.report,display_account:0
 #: field:account.report.general.ledger,display_account:0
 msgid "Display Accounts"
-msgstr ""
+msgstr "Näytä tilit"
 
 #. module: account
 #: view:account.state.open:0
@@ -3973,7 +3973,7 @@
 #. module: account
 #: view:res.partner:0
 msgid "Bank Account Owner"
-msgstr ""
+msgstr "Pankkitilin omistaja"
 
 #. module: account
 #: report:account.account.balance:0
@@ -4056,7 +4056,7 @@
 #. module: account
 #: field:res.company,paypal_account:0
 msgid "Paypal Account"
-msgstr ""
+msgstr "PayPal tili"
 
 #. module: account
 #: field:account.invoice.report,uom_name:0
@@ -4180,7 +4180,7 @@
 #. module: account
 #: constraint:account.analytic.line:0
 msgid "You can not create analytic line on view account."
-msgstr ""
+msgstr "Et voi luoda analyyttistä riviä näkymätilille"
 
 #. module: account
 #: help:account.move.line,state:0
@@ -4197,7 +4197,7 @@
 #. module: account
 #: model:process.node,note:account.process_node_importinvoice0
 msgid "Statement from invoice or payment"
-msgstr ""
+msgstr "Tiliote laskulta tai maksulta"
 
 #. module: account
 #: model:ir.model,name:account.model_account_chart
@@ -4228,7 +4228,7 @@
 #. module: account
 #: field:account.account,exchange_rate:0
 msgid "Exchange Rate"
-msgstr ""
+msgstr "Valuuttakurssi"
 
 #. module: account
 #: model:process.transition,note:account.process_transition_paymentorderreconcilation0
@@ -4261,7 +4261,7 @@
 #. module: account
 #: field:account.chart.template,visible:0
 msgid "Can be Visible?"
-msgstr ""
+msgstr "Voi olla näkyvä?"
 
 #. module: account
 #: model:ir.model,name:account.model_account_journal_select
@@ -4281,7 +4281,7 @@
 #. module: account
 #: view:wizard.multi.charts.accounts:0
 msgid "res_config_contents"
-msgstr ""
+msgstr "res_config_contents"
 
 #. module: account
 #: view:account.unreconcile:0
@@ -4396,7 +4396,7 @@
 #. module: account
 #: view:account.payment.term.line:0
 msgid "Example"
-msgstr ""
+msgstr "Esim."
 
 #. module: account
 #: code:addons/account/account_invoice.py:828
@@ -4470,7 +4470,7 @@
 #. module: account
 #: selection:account.bank.statement,state:0
 msgid "New"
-msgstr ""
+msgstr "Uusi"
 
 #. module: account
 #: field:account.invoice.refund,date:0
@@ -4732,7 +4732,7 @@
 #. module: account
 #: sql_constraint:account.invoice:0
 msgid "Invoice Number must be unique per Company!"
-msgstr ""
+msgstr "laskun numeron tulee olla uniikki yrityskohtaisesti!"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_receivable_graph
@@ -4747,7 +4747,7 @@
 #. module: account
 #: model:res.groups,name:account.group_account_user
 msgid "Accountant"
-msgstr ""
+msgstr "Kirjanpitäjä"
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_account_treasury_report_all
@@ -4928,7 +4928,7 @@
 #: field:account.financial.report,children_ids:0
 #: model:ir.model,name:account.model_account_financial_report
 msgid "Account Report"
-msgstr ""
+msgstr "Tiliraportti"
 
 #. module: account
 #: field:account.journal.column,name:0
@@ -5004,7 +5004,7 @@
 #: view:account.general.journal:0
 #: model:ir.ui.menu,name:account.menu_account_general_journal
 msgid "General Journals"
-msgstr ""
+msgstr "Yleinen päiväkirja"
 
 #. module: account
 #: field:account.journal,allow_date:0
@@ -5060,7 +5060,7 @@
 #. module: account
 #: view:account.financial.report:0
 msgid "Report"
-msgstr ""
+msgstr "Ilmoita"
 
 #. module: account
 #: view:account.analytic.line:0
@@ -5269,7 +5269,7 @@
 #. module: account
 #: field:account.payment.term.line,value_amount:0
 msgid "Amount To Pay"
-msgstr ""
+msgstr "Maksettava määrä"
 
 #. module: account
 #: help:account.partner.reconcile.process,to_reconcile:0

=== modified file 'account/i18n/fr.po'
--- account/i18n/fr.po	2012-03-02 05:24:41 +0000
+++ account/i18n/fr.po	2012-06-06 12:41:23 +0000
@@ -7,14 +7,14 @@
 "Project-Id-Version: OpenERP Server 6.0dev\n"
 "Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
 "POT-Creation-Date: 2012-02-08 00:35+0000\n"
-"PO-Revision-Date: 2012-03-01 19:29+0000\n"
-"Last-Translator: t.o <Unknown>\n"
+"PO-Revision-Date: 2012-05-21 08:23+0000\n"
+"Last-Translator: Numérigraphe <Unknown>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-03-02 05:23+0000\n"
-"X-Generator: Launchpad (build 14886)\n"
+"X-Launchpad-Export-Date: 2012-05-24 21:34+0000\n"
+"X-Generator: Launchpad (build 15288)\n"
 
 #. module: account
 #: view:account.invoice.report:0
@@ -352,7 +352,7 @@
 #: view:product.product:0
 #: view:product.template:0
 msgid "Purchase Properties"
-msgstr "Propriétés de l'Achat"
+msgstr "Propriétés d'achat"
 
 #. module: account
 #: help:account.financial.report,style_overwrite:0
@@ -386,10 +386,10 @@
 "OpenERP. Journal items are created by OpenERP if you use Bank Statements, "
 "Cash Registers, or Customer/Supplier payments."
 msgstr ""
-"Cet écran est utilisé par les comptables pour saisir des écritures en masse. "
-"Des écritures sont créées par OpenERP, si vous utilisez les fonctionnalités "
-"de relevés bancaires, gestion d'espèces et de règlements des clients ou des "
-"fournisseurs."
+"Les comptables peuvent utiliser cette vue pour saisir des écritures en "
+"volume. Pour saisir des écritures en volume dans OpenERP, utilisez les "
+"fonctions Relevés bancaires, Caisses, Paiements client ou Paiement "
+"fournisseur."
 
 #. module: account
 #: constraint:account.move.line:0
@@ -647,7 +647,7 @@
 #: field:account.financial.report,account_report_id:0
 #: selection:account.financial.report,type:0
 msgid "Report Value"
-msgstr ""
+msgstr "Reporter la valeur"
 
 #. module: account
 #: view:account.fiscal.position.template:0
@@ -742,7 +742,7 @@
 #. module: account
 #: view:account.invoice:0
 msgid "Re-Open"
-msgstr "Ré-Ouvrir"
+msgstr "Rouvrir"
 
 #. module: account
 #: view:account.use.model:0
@@ -773,7 +773,7 @@
 #: selection:account.payment.term.line,value:0
 #: selection:account.tax.template,type:0
 msgid "Percent"
-msgstr "Pourcent"
+msgstr "Pourcentage"
 
 #. module: account
 #: model:ir.ui.menu,name:account.menu_finance_charts
@@ -831,12 +831,12 @@
 #. module: account
 #: model:ir.model,name:account.model_account_subscription_line
 msgid "Account Subscription Line"
-msgstr "Détail d'une écriture périodique"
+msgstr "Détail d'une écritures d'abonnement"
 
 #. module: account
 #: help:account.invoice,reference:0
 msgid "The partner reference of this invoice."
-msgstr "La référence partenaire sur la facture."
+msgstr "La référence utilisée par le partenaire pour cette facture."
 
 #. module: account
 #: view:account.invoice.report:0
@@ -1245,10 +1245,12 @@
 "supplier according to what you purchased or received."
 msgstr ""
 "Avec les factures fournisseurs, vous pouvez saisir et gérer les factures "
-"envoyées par vos fournisseurs. OpenERP peut aussi générer des brouillons de "
-"facture automatiquement à partir d'un bon de commande ou d'un reçu. De cette "
-"façon, vous pouvez contrôler la facture de votre fournisseur en fonction de "
-"ce que vous avez acheté ou reçu."
+"envoyées par vos fournisseurs.\r\n"
+"\r\n"
+"OpenERP peut aussi générer automatiquement des brouillons de facture à "
+"partir d'un bon de commande ou d'un reçu. De cette façon, vous pouvez "
+"contrôler la facture de votre fournisseur en fonction de ce que vous avez "
+"acheté ou reçu."
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_tax_code_template_form
@@ -1339,7 +1341,7 @@
 #. module: account
 #: view:account.subscription:0
 msgid "Draft Subscription"
-msgstr "Souscription brouillon"
+msgstr "Abonnement brouillon"
 
 #. module: account
 #: view:account.account:0
@@ -1430,7 +1432,7 @@
 #: model:ir.actions.act_window,name:account.action_account_reconcile_select
 #: model:ir.actions.act_window,name:account.action_view_account_move_line_reconcile
 msgid "Reconcile Entries"
-msgstr "Rapprocher les écritures"
+msgstr "Lettrer les écritures"
 
 #. module: account
 #: model:ir.actions.report.xml,name:account.account_overdue
@@ -1568,7 +1570,7 @@
 "By unchecking the active field, you may hide a fiscal position without "
 "deleting it."
 msgstr ""
-"En décochant le champ 'actif', vous masquez la position fiscale sans "
+"En décochant le champ 'actif', vous masquez le régime des taxes sans "
 "l'effacer."
 
 #. module: account
@@ -2410,7 +2412,7 @@
 #: constraint:res.partner:0
 msgid "Error ! You cannot create recursive associated members."
 msgstr ""
-"Erreur ! Vous ne pouvez créer des membres associés de manière récursive."
+"Erreur ! Vous ne pouvez pas créer des membres associés de manière récursive."
 
 #. module: account
 #: field:account.sequence.fiscalyear,sequence_main_id:0
@@ -2611,11 +2613,12 @@
 "date empty, it means direct payment. The payment term may compute several "
 "due dates, for example 50% now, 50% in one month."
 msgstr ""
-"Si vous utilisez les délais de paiement, la date d'échéance sera calculée "
-"automatiquement lors de la création des écritures comptables. Si vous "
-"laisser les délais de paiement et la date d'échéance vides, cela implique un "
-"paiement direct. Le délai de paiement peut calculer plusieurs dates "
-"d'échéance, par example, 50% maintenant, 50% dans un mois."
+"Si vous utilisez les conditions de règlement, la date d'échéance sera "
+"calculée automatiquement lors de la création des écritures comptables. Si "
+"vous laisser les champs conditions de règlement et la date d'échéance vides, "
+"cela implique un règlement comptant. Les conditions de règlement peuvent "
+"générer plusieurs dates d'échéances, par exemple  50% maintenant et 50% dans "
+"un mois."
 
 #. module: account
 #: view:account.analytic.cost.ledger.journal.report:0
@@ -2903,7 +2906,7 @@
 #. module: account
 #: view:account.account:0
 msgid "Unrealized Gains and losses"
-msgstr ""
+msgstr "Gains et pertes latents"
 
 #. module: account
 #: model:ir.ui.menu,name:account.menu_account_customer
@@ -3446,7 +3449,7 @@
 #: model:ir.actions.act_window,name:account.action_account_unreconcile_reconcile
 #: model:ir.actions.act_window,name:account.action_account_unreconcile_select
 msgid "Unreconcile Entries"
-msgstr "Annuler le rapprochement des écritures"
+msgstr "Annuler le lettrage"
 
 #. module: account
 #: field:account.tax.code,notprintable:0
@@ -3703,7 +3706,7 @@
 #. module: account
 #: view:account.move:0
 msgid "Post"
-msgstr "Message"
+msgstr "Comptabiliser"
 
 #. module: account
 #: view:account.unreconcile:0
@@ -4676,7 +4679,7 @@
 #. module: account
 #: view:account.bank.statement:0
 msgid "Confirmed"
-msgstr "Confirmé(e)"
+msgstr "Confirmé"
 
 #. module: account
 #: report:account.invoice:0
@@ -5347,7 +5350,7 @@
 #. module: account
 #: model:ir.model,name:account.model_account_fiscal_position_tax_template
 msgid "Template Tax Fiscal Position"
-msgstr "Modèle de position fiscal de taxe"
+msgstr "Modèle de position fiscale"
 
 #. module: account
 #: field:account.journal,update_posted:0
@@ -5934,8 +5937,8 @@
 "Partners Reconciled Today \\ (Remaining Partners + Partners Reconciled Today)"
 msgstr ""
 "Vous montre les progrès réalisés aujourd'hui sur le processus de lettrage. \n"
-"Ratio = Partenaires lettrés aujourd'hui  \\ ( partenaires lettrés "
-"aujourd'hui + autres partenaires)"
+"Ratio = partenaires lettrés aujourd'hui  / ( partenaires lettrés aujourd'hui "
+"+ partenaires restants)"
 
 #. module: account
 #: help:account.payment.term.line,value:0
@@ -5944,9 +5947,10 @@
 "that you should have your last line with the type 'Balance' to ensure that "
 "the whole amount will be threated."
 msgstr ""
-"Sélectionnez ici le type d'évaluation relatif à cette ligne de conditions de "
-"règlement. Notez que vous devez avoir une dernière ligne de type \"Balance\" "
-"pour assurer que le montant total sera traité."
+"Sélectionnez ici le type de valorisation relatif à cette ligne de conditions "
+"de règlement. Notez que vous devez avoir une dernière ligne de type "
+"\"Solde\" pour vous assurer que l'ensemble du montant sera traité (évite les "
+"erreurs d'arrondi)."
 
 #. module: account
 #: field:account.invoice,period_id:0
@@ -6051,7 +6055,7 @@
 #. module: account
 #: model:ir.actions.act_window,name:account.action_review_financial_journals_installer
 msgid "Review your Financial Journals"
-msgstr "Réexaminer vos journaux financiers"
+msgstr "Paramétrer vos journaux comptables"
 
 #. module: account
 #: help:account.tax,name:0
@@ -6126,7 +6130,7 @@
 #. module: account
 #: report:account.invoice:0
 msgid "Fiscal Position Remark :"
-msgstr "Remarque position fiscale :"
+msgstr "Observation sur le régime fiscal :"
 
 #. module: account
 #: view:analytic.entries.report:0
@@ -6205,8 +6209,8 @@
 "As soon as the reconciliation is done, the invoice's state turns to “done” "
 "(i.e. paid) in the system."
 msgstr ""
-"Dès que le lettrage est fait, la facture passe à l'état \"Terminé\" (c'est à "
-"dire payée) dans le système."
+"Dès que le lettrage est réalisé, la facture passe à l'état \"Terminé\" "
+"(c'est à dire \"payé\") dans le système."
 
 #. module: account
 #: view:account.chart.template:0
@@ -6480,7 +6484,7 @@
 #. module: account
 #: field:account.invoice.line,invoice_id:0
 msgid "Invoice Reference"
-msgstr "Référence facture"
+msgstr "Référence de la facture"
 
 #. module: account
 #: help:account.tax.template,sequence:0
@@ -6606,7 +6610,7 @@
 #: view:account.tax.code.template:0
 #: view:analytic.entries.report:0
 msgid "Group By..."
-msgstr "Grouper par..."
+msgstr "Regrouper par..."
 
 #. module: account
 #: field:account.journal.column,readonly:0
@@ -6771,8 +6775,8 @@
 "corresponds with the entries (or records) of that account in your accounting "
 "system."
 msgstr ""
-"Le rapprochement bancaire consiste à vérifier que votre relevé bancaire "
-"correspond avec les écritures (ou enregistrements) comptables dans votre "
+"Le rapprochement bancaire consiste à pointer votre relevé bancaire avec les "
+"écritures (ou pièces) comptables saisies pour ce compte bancaire dans votre "
 "système."
 
 #. module: account
@@ -7065,7 +7069,7 @@
 #. module: account
 #: model:ir.model,name:account.model_account_fiscal_position_tax
 msgid "Taxes Fiscal Position"
-msgstr "Position fiscale des taxes"
+msgstr "Position fiscale"
 
 #. module: account
 #: report:account.general.ledger:0
@@ -7395,7 +7399,7 @@
 #. module: account
 #: field:account.chart.template,property_account_expense_opening:0
 msgid "Opening Entries Expense Account"
-msgstr ""
+msgstr "Compte de charge pour les écritures d'ouverture"
 
 #. module: account
 #: code:addons/account/account_move_line.py:999
@@ -7519,7 +7523,7 @@
 #. module: account
 #: field:account.chart.template,property_account_income_opening:0
 msgid "Opening Entries Income Account"
-msgstr ""
+msgstr "Compte de produit pour les écritures d'ouverture"
 
 #. module: account
 #: view:account.bank.statement:0
@@ -7546,7 +7550,7 @@
 #. module: account
 #: model:ir.actions.act_window,name:account.action_review_payment_terms_installer
 msgid "Review your Payment Terms"
-msgstr "Réexaminer vos conditions de règlement"
+msgstr "Paramétrer vos conditions de règlement"
 
 #. module: account
 #: field:account.fiscalyear.close,report_name:0
@@ -8061,9 +8065,10 @@
 "positive, it gives the day of the next month. Set 0 for net days (otherwise "
 "it's based on the beginning of the month)."
 msgstr ""
-"Jour du mois, saisir -1 pour le jour précédent du mois courant. Saisir 0 "
-"pour le jour courant ou saisir un chiffre positif pour le jour équivalent du "
-"mois prochain."
+"Jour du mois.\r\n"
+"Saisir -1 pour le dernier jour du mois courant.\r\n"
+"Saisir  0 pour le jour courant.\r\n"
+"Saisir un chiffre positif pour le numéro du jour du mois prochain."
 
 #. module: account
 #: model:ir.ui.menu,name:account.menu_finance_legal_statement
@@ -8132,7 +8137,7 @@
 #. module: account
 #: model:ir.model,name:account.model_account_move_line_reconcile
 msgid "Account move line reconcile"
-msgstr "Lettrage de lignes d'écriture"
+msgstr "Lettrage de lignes d'écritures"
 
 #. module: account
 #: view:account.subscription.generate:0
@@ -8528,7 +8533,7 @@
 #. module: account
 #: field:account.account,adjusted_balance:0
 msgid "Adjusted Balance"
-msgstr ""
+msgstr "Balance ajustée"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form
@@ -8757,9 +8762,10 @@
 "to your customers."
 msgstr ""
 "Avec les factures clients, vous pouvez créer et gérer les factures pour vos "
-"clients. OpenERP peut aussi générer des brouillons de facture "
-"automatiquement à partir des bons de commande ou des expéditions. Vous "
-"devriez les confirmer uniquement avant de les envoyer à vos clients."
+"clients.\r\n"
+"OpenERP peut aussi générer automatiquement des brouillons de facture à "
+"partir des bons de commande ou des expéditions. Dans ce cas, vous n'avez "
+"plus qu'à les confirmer avant de les envoyer à vos clients."
 
 #. module: account
 #: code:addons/account/wizard/account_period_close.py:51
@@ -9244,7 +9250,7 @@
 #. module: account
 #: model:ir.actions.act_window,name:account.action_view_financial_accounts_installer
 msgid "Review your Financial Accounts"
-msgstr "Réexaminer vos comptes financiers"
+msgstr "Paramétrer vos comptes financiers"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_open_journal_button
@@ -9408,7 +9414,7 @@
 #. module: account
 #: field:res.partner,ref_companies:0
 msgid "Companies that refers to partner"
-msgstr "Entreprises qui font réference au partenaire"
+msgstr "Sociétés qui font réference au partenaire"
 
 #. module: account
 #: view:account.journal:0
@@ -9797,7 +9803,7 @@
 #. module: account
 #: model:ir.model,name:account.model_account_subscription
 msgid "Account Subscription"
-msgstr "Écritures périodiques"
+msgstr "Écritures d'abonnement"
 
 #. module: account
 #: report:account.overdue:0
@@ -10312,7 +10318,7 @@
 #: model:ir.actions.act_window,name:account.action_account_gain_loss
 #: model:ir.ui.menu,name:account.menu_unrealized_gains_losses
 msgid "Unrealized Gain or Loss"
-msgstr ""
+msgstr "Gain ou perte latent"
 
 #. module: account
 #: view:account.fiscalyear:0
@@ -10520,7 +10526,7 @@
 #. module: account
 #: model:ir.model,name:account.model_account_fiscal_position_account
 msgid "Accounts Fiscal Position"
-msgstr "Compte de position fiscale"
+msgstr "Comptes de régime de taxes"
 
 #. module: account
 #: report:account.invoice:0
@@ -10673,7 +10679,7 @@
 #. module: account
 #: view:account.invoice.report:0
 msgid "Group by month of Invoice Date"
-msgstr ""
+msgstr "Grouper les factures par mois"
 
 #. module: account
 #: view:account.analytic.line:0
@@ -10741,7 +10747,7 @@
 #. module: account
 #: view:account.payment.term:0
 msgid "Description On Invoices"
-msgstr "Description sur les factures"
+msgstr "Intitulé sur les factures"
 
 #. module: account
 #: model:ir.model,name:account.model_account_analytic_chart
@@ -10841,7 +10847,7 @@
 #: view:account.invoice.report:0
 #: model:ir.actions.act_window,name:account.action_account_invoice_refund
 msgid "Refund"
-msgstr "Créer un avoir"
+msgstr "Avoir"
 
 #. module: account
 #: model:email.template,body_text:account.email_template_edi_invoice

=== modified file 'account/i18n/fr_BE.po'
--- account/i18n/fr_BE.po	2012-02-18 07:13:28 +0000
+++ account/i18n/fr_BE.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:09+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:23+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/gl.po'
--- account/i18n/gl.po	2012-02-18 07:13:28 +0000
+++ account/i18n/gl.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:04+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:19+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/gu.po'
--- account/i18n/gu.po	2012-02-18 07:13:28 +0000
+++ account/i18n/gu.po	2012-06-06 12:41:23 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: openobject-addons\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2012-02-08 00:35+0000\n"
-"PO-Revision-Date: 2012-02-17 09:10+0000\n"
-"Last-Translator: Mantavya Gajjar (Open ERP) <Unknown>\n"
+"PO-Revision-Date: 2012-06-01 13:27+0000\n"
+"Last-Translator: Amit Rasmiya (OpenERP) <Unknown>\n"
 "Language-Team: Gujarati <gu@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:04+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-06-02 06:16+0000\n"
+"X-Generator: Launchpad (build 15342)\n"
 
 #. module: account
 #: view:account.invoice.report:0
@@ -61,7 +61,7 @@
 #. module: account
 #: field:report.invoice.created,residual:0
 msgid "Residual"
-msgstr "બાકી નીકળતી રકમ"
+msgstr ""
 
 #. module: account
 #: constraint:account.period:0
@@ -76,7 +76,7 @@
 #. module: account
 #: view:account.tax:0
 msgid "Children Definition"
-msgstr ""
+msgstr "આંતરીક વ્યાખ્યા"
 
 #. module: account
 #: code:addons/account/account_bank_statement.py:302
@@ -131,7 +131,7 @@
 #: view:account.move.line.reconcile:0
 #: view:account.move.line.reconcile.writeoff:0
 msgid "Reconcile"
-msgstr ""
+msgstr "reconcile"
 
 #. module: account
 #: field:account.bank.statement.line,ref:0
@@ -171,17 +171,17 @@
 #: field:account.fiscal.position.account,account_src_id:0
 #: field:account.fiscal.position.account.template,account_src_id:0
 msgid "Account Source"
-msgstr ""
+msgstr "ખ૤ત૤કીય  સ્ત્રોત"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal
 msgid "All Analytic Entries"
-msgstr ""
+msgstr "તમામ વિશ્લેષક મુલ્યો"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard
 msgid "Invoices Created Within Past 15 Days"
-msgstr ""
+msgstr "છેલ્લા ૧૫ દિવસમા બનાવવામા આવેલ ભરતિયા"
 
 #. module: account
 #: field:accounting.report,label_filter:0
@@ -211,7 +211,7 @@
 #. module: account
 #: model:ir.model,name:account.model_account_tax
 msgid "account.tax"
-msgstr ""
+msgstr "ખાતુ.વેરો"
 
 #. module: account
 #: model:ir.model,name:account.model_account_move_line_reconcile_select
@@ -9496,7 +9496,7 @@
 #: field:report.account.sales,product_id:0
 #: field:report.account_type.sales,product_id:0
 msgid "Product"
-msgstr "ઉત્પાદન"
+msgstr "પ્રોડક્ટ"
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_validate_account_move

=== modified file 'account/i18n/he.po'
--- account/i18n/he.po	2012-02-18 07:13:28 +0000
+++ account/i18n/he.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:04+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:19+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/hi.po'
--- account/i18n/hi.po	2012-02-18 07:13:28 +0000
+++ account/i18n/hi.po	2012-06-06 12:41:23 +0000
@@ -14,14 +14,14 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:04+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:19+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0
 #: view:analytic.entries.report:0
 msgid "last month"
-msgstr ""
+msgstr "पहले का महिना"
 
 #. module: account
 #: model:process.transition,name:account.process_transition_supplierreconcilepaid0
@@ -165,18 +165,18 @@
 #: code:addons/account/account.py:3112
 #, python-format
 msgid "Miscellaneous Journal"
-msgstr ""
+msgstr "विविध जर्नल"
 
 #. module: account
 #: field:account.fiscal.position.account,account_src_id:0
 #: field:account.fiscal.position.account.template,account_src_id:0
 msgid "Account Source"
-msgstr ""
+msgstr "खाता श्रोत"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal
 msgid "All Analytic Entries"
-msgstr ""
+msgstr "सभी विश्लेषणात्मक प्रविष्टियाँ"
 
 #. module: account
 #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard
@@ -186,7 +186,7 @@
 #. module: account
 #: field:accounting.report,label_filter:0
 msgid "Column Label"
-msgstr ""
+msgstr "स्तंभ लेबल"
 
 #. module: account
 #: code:addons/account/wizard/account_move_journal.py:95
@@ -206,7 +206,7 @@
 #: model:ir.actions.act_window,name:account.action_account_tax_template_form
 #: model:ir.ui.menu,name:account.menu_action_account_tax_template_form
 msgid "Tax Templates"
-msgstr ""
+msgstr "टैक्स टेम्पलेट्स"
 
 #. module: account
 #: model:ir.model,name:account.model_account_tax

=== modified file 'account/i18n/hr.po'
--- account/i18n/hr.po	2012-02-18 07:13:28 +0000
+++ account/i18n/hr.po	2012-06-06 12:41:23 +0000
@@ -13,8 +13,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:07+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:22+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/hu.po'
--- account/i18n/hu.po	2012-02-18 07:13:28 +0000
+++ account/i18n/hu.po	2012-06-06 12:41:23 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-18 06:04+0000\n"
-"X-Generator: Launchpad (build 14814)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:19+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0

=== modified file 'account/i18n/id.po'
--- account/i18n/id.po	2012-03-07 06:04:13 +0000
+++ account/i18n/id.po	2012-06-06 12:41:23 +0000
@@ -8,14 +8,14 @@
 "Project-Id-Version: openobject-addons\n"
 "Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
 "POT-Creation-Date: 2012-02-08 00:35+0000\n"
-"PO-Revision-Date: 2012-03-06 15:23+0000\n"
+"PO-Revision-Date: 2012-05-07 13:19+0000\n"
 "Last-Translator: Budi Iskandar <Unknown>\n"
 "Language-Team: Indonesian <id@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-03-07 06:03+0000\n"
-"X-Generator: Launchpad (build 14907)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:19+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0
@@ -56,7 +56,7 @@
 #. module: account
 #: view:account.invoice:0
 msgid "Proforma/Open/Paid Invoices"
-msgstr ""
+msgstr "Proforma/Terbuka/Terbayar Faktur"
 
 #. module: account
 #: field:report.invoice.created,residual:0
@@ -82,7 +82,7 @@
 #: code:addons/account/account_bank_statement.py:302
 #, python-format
 msgid "Journal item \"%s\" is not valid."
-msgstr ""
+msgstr "Jurnal item \"%s\" tidak valid"
 
 #. module: account
 #: model:ir.model,name:account.model_report_aged_receivable
@@ -120,6 +120,8 @@
 "Configuration error! The currency chosen should be shared by the default "
 "accounts too."
 msgstr ""
+"Konfigurasi salah ! Mata uang yang dipilih harus sama dengan mata uang pada "
+"akun"
 
 #. module: account
 #: report:account.invoice:0
@@ -170,7 +172,7 @@
 #: code:addons/account/account.py:3112
 #, python-format
 msgid "Miscellaneous Journal"
-msgstr ""
+msgstr "Jurnal Lain-lain"
 
 #. module: account
 #: field:account.fiscal.position.account,account_src_id:0
@@ -191,7 +193,7 @@
 #. module: account
 #: field:accounting.report,label_filter:0
 msgid "Column Label"
-msgstr ""
+msgstr "Nama Kolom"
 
 #. module: account
 #: code:addons/account/wizard/account_move_journal.py:95
@@ -420,7 +422,7 @@
 #. module: account
 #: help:account.journal,currency:0
 msgid "The currency used to enter statement"
-msgstr ""
+msgstr "Mata uang yang digunakan pada Pernyataan Bank"
 
 #. module: account
 #: field:account.open.closed.fiscalyear,fyear_id:0
@@ -728,6 +730,8 @@
 "The date of your Journal Entry is not in the defined period! You should "
 "change the date or remove this constraint from the journal."
 msgstr ""
+"Tanggal pada jurnal entri tidak sesuai dengan Period ! Anda harus merubah "
+"atau menghilangkan tanggal ini pada jurnal."
 
 #. module: account
 #: model:ir.model,name:account.model_account_report_general_ledger
@@ -747,7 +751,7 @@
 #. module: account
 #: view:account.invoice:0
 msgid "Print Invoice"
-msgstr ""
+msgstr "Print Faktur"
 
 #. module: account
 #: field:account.partner.reconcile.process,today_reconciled:0
@@ -780,7 +784,7 @@
 #: model:ir.model,name:account.model_project_account_analytic_line
 #, python-format
 msgid "Analytic Entries by line"
-msgstr ""
+msgstr "analitik entri berdasarkan baris"
 
 #. module: account
 #: field:account.invoice.refund,filter_refund:0
@@ -836,7 +840,7 @@
 #. module: account
 #: view:account.invoice.report:0
 msgid "Supplier Invoices And Refunds"
-msgstr ""
+msgstr "Faktur Pemasok dan Faktur Pengembalian Uang"
 
 #. module: account
 #: view:account.move.line.unreconcile.select:0
@@ -850,6 +854,7 @@
 #: view:account.payment.term.line:0
 msgid "At 14 net days 2 percent, remaining amount at 30 days end of month."
 msgstr ""
+"Pada hari ke 14 sebesar 2 %, sisanya pada dibayar 30 hari pada akhir bulan."
 
 #. module: account
 #: model:ir.model,name:account.model_account_analytic_journal_report
@@ -864,7 +869,7 @@
 #. module: account
 #: report:account.analytic.account.quantity_cost_ledger:0
 msgid "J.C./Move name"
-msgstr ""
+msgstr "Nama J.C/Move"
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_account_gain_loss
@@ -874,6 +879,10 @@
 "or Loss you'd realized if those transactions were ended today. Only for "
 "accounts having a secondary currency set."
 msgstr ""
+"Ketika melakukan transaksi multi-mata uang, Anda mungkin mendapatkan "
+"keuntungan/kerugian dari selisih kurs. Menu ini memberikan perkiraan "
+"keuntungan/kerugian yang Anda sadari jika transaksi selesai pada hari ini. "
+"Berlaku jika akun memiliki mata uang sekunder"
 
 #. module: account
 #: selection:account.entries.report,month:0
@@ -1182,7 +1191,7 @@
 #. module: account
 #: view:account.move.line:0
 msgid "Unbalanced Journal Items"
-msgstr ""
+msgstr "jurnal item tidak balance"
 
 #. module: account
 #: model:account.account.type,name:account.data_account_type_bank
@@ -1208,6 +1217,8 @@
 "Total amount (in Secondary currency) for transactions held in secondary "
 "currency for this account."
 msgstr ""
+"Jumlah Total (pada mata uang sekunder) untuk transaksi pada mata uang "
+"sekunder untuk akun ini."
 
 #. module: account
 #: field:account.fiscal.position.tax,tax_dest_id:0
@@ -1223,7 +1234,7 @@
 #. module: account
 #: view:report.account_type.sales:0
 msgid "All Months Sales by type"
-msgstr ""
+msgstr "Total Penjualan dalam bulan ini oleh tipe"
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_invoice_tree2
@@ -1243,7 +1254,7 @@
 #: model:ir.actions.act_window,name:account.action_account_tax_code_template_form
 #: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form
 msgid "Tax Code Templates"
-msgstr ""
+msgstr "salinan kode pajak"
 
 #. module: account
 #: view:account.invoice.cancel:0
@@ -1253,12 +1264,12 @@
 #. module: account
 #: help:account.journal,code:0
 msgid "The code will be displayed on reports."
-msgstr ""
+msgstr "Kode ini akan ditampilkan pada laporan"
 
 #. module: account
 #: view:account.tax.template:0
 msgid "Taxes used in Purchases"
-msgstr ""
+msgstr "Pajak yang digunakan dalam Pembelian"
 
 #. module: account
 #: field:account.invoice.tax,tax_code_id:0

=== modified file 'account/i18n/it.po'
--- account/i18n/it.po	2012-02-21 06:35:58 +0000
+++ account/i18n/it.po	2012-06-06 12:41:23 +0000
@@ -7,14 +7,15 @@
 "Project-Id-Version: OpenERP Server 6.0dev\n"
 "Report-Msgid-Bugs-To: support@xxxxxxxxxxx\n"
 "POT-Creation-Date: 2012-02-08 00:35+0000\n"
-"PO-Revision-Date: 2012-02-20 14:59+0000\n"
-"Last-Translator: Davide Corio - agilebg.com <davide.corio@xxxxxxxxxxx>\n"
+"PO-Revision-Date: 2012-03-22 15:04+0000\n"
+"Last-Translator: Leonardo Pistone - Agile BG - Domsense "
+"<leonardo.pistone@xxxxxxxxxxxx>\n"
 "Language-Team: \n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-02-21 06:35+0000\n"
-"X-Generator: Launchpad (build 14838)\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:20+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
 
 #. module: account
 #: view:account.invoice.report:0
@@ -7222,7 +7223,7 @@
 #. module: account
 #: model:ir.actions.act_window,name:account.action_account_configuration_installer
 msgid "Install your Chart of Accounts"
-msgstr ""
+msgstr "Installa un Piano dei Conti"
 
 #. module: account
 #: view:account.bank.statement:0
@@ -10155,7 +10156,7 @@
 #. module: account
 #: view:wizard.multi.charts.accounts:0
 msgid "Generate Your Chart of Accounts from a Chart Template"
-msgstr ""
+msgstr "Genera un Piano dei Conti da un Template di Piano dei Conti"
 
 #. module: account
 #: model:ir.actions.act_window,help:account.action_account_invoice_report_all

=== added file 'account/i18n/ja.po'
--- account/i18n/ja.po	1970-01-01 00:00:00 +0000
+++ account/i18n/ja.po	2012-06-06 12:41:23 +0000
@@ -0,0 +1,10715 @@
+# Japanese translation for openobject-addons
+# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
+# This file is distributed under the same license as the openobject-addons package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: openobject-addons\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2012-02-08 00:35+0000\n"
+"PO-Revision-Date: 2012-05-09 06:13+0000\n"
+"Last-Translator: Akira Hiyama <Unknown>\n"
+"Language-Team: Japanese <ja@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2012-05-17 05:20+0000\n"
+"X-Generator: Launchpad (build 15259)\n"
+
+#. module: account
+#: view:account.invoice.report:0
+#: view:analytic.entries.report:0
+msgid "last month"
+msgstr "先月"
+
+#. module: account
+#: model:process.transition,name:account.process_transition_supplierreconcilepaid0
+msgid "System payment"
+msgstr "システム支払"
+
+#. module: account
+#: view:account.journal:0
+msgid "Other Configuration"
+msgstr "その他の設定"
+
+#. module: account
+#: help:account.tax.code,sequence:0
+msgid ""
+"Determine the display order in the report 'Accounting \\ Reporting \\ "
+"Generic Reporting \\ Taxes \\ Taxes Report'"
+msgstr "会計 \\ レポート \\ 一般的なレポート \\ 税金 \\ 税金レポート にあるレポートの表示順を決定して下さい。"
+
+#. module: account
+#: view:account.move.reconcile:0
+msgid "Journal Entry Reconcile"
+msgstr "仕訳帳エントリーの消し込み"
+
+#. module: account
+#: view:account.account:0
+#: view:account.bank.statement:0
+#: view:account.move:0
+#: view:account.move.line:0
+msgid "Account Statistics"
+msgstr "アカウントの統計情報"
+
+#. module: account
+#: view:account.invoice:0
+msgid "Proforma/Open/Paid Invoices"
+msgstr "請求書のプロフォーマ / オープン / 支払い済"
+
+#. module: account
+#: field:report.invoice.created,residual:0
+msgid "Residual"
+msgstr "残余"
+
+#. module: account
+#: constraint:account.period:0
+msgid "Error ! The duration of the Period(s) is/are invalid. "
+msgstr "エラー。期間の長さが無効です。 "
+
+#. module: account
+#: field:account.analytic.line,currency_id:0
+msgid "Account currency"
+msgstr "アカウントの通貨"
+
+#. module: account
+#: view:account.tax:0
+msgid "Children Definition"
+msgstr "子の定義"
+
+#. module: account
+#: code:addons/account/account_bank_statement.py:302
+#, python-format
+msgid "Journal item \"%s\" is not valid."
+msgstr "仕訳項目 %s は有効ではありません。"
+
+#. module: account
+#: model:ir.model,name:account.model_report_aged_receivable
+msgid "Aged Receivable Till Today"
+msgstr "今日までの売掛金年齢表"
+
+#. module: account
+#: model:process.transition,name:account.process_transition_invoiceimport0
+msgid "Import from invoice or payment"
+msgstr "請求書や支払いからインポート"
+
+#. module: account
+#: model:ir.model,name:account.model_wizard_multi_charts_accounts
+msgid "wizard.multi.charts.accounts"
+msgstr ""
+
+#. module: account
+#: view:account.move:0
+msgid "Total Debit"
+msgstr "借方合計"
+
+#. module: account
+#: view:account.unreconcile:0
+msgid ""
+"If you unreconciliate transactions, you must also verify all the actions "
+"that are linked to those transactions because they will not be disabled"
+msgstr "取引を消し込みしない場合、それらが無効にされないためには、それら取引にリンクされた全てのアクションを検証しなければなりません。"
+
+#. module: account
+#: constraint:account.journal:0
+msgid ""
+"Configuration error! The currency chosen should be shared by the default "
+"accounts too."
+msgstr "設定エラー。選択された通貨はデフォルトアカウントによっても共有されなければなりません。"
+
+#. module: account
+#: report:account.invoice:0
+#: field:account.invoice.line,origin:0
+msgid "Origin"
+msgstr "起点"
+
+#. module: account
+#: view:account.account:0
+#: view:account.automatic.reconcile:0
+#: field:account.move.line,reconcile_id:0
+#: view:account.move.line.reconcile:0
+#: view:account.move.line.reconcile.writeoff:0
+msgid "Reconcile"
+msgstr "消し込み"
+
+#. module: account
+#: field:account.bank.statement.line,ref:0
+#: field:account.entries.report,ref:0
+#: view:account.invoice:0
+#: field:account.move,ref:0
+#: field:account.move.line,ref:0
+#: field:account.subscription,ref:0
+msgid "Reference"
+msgstr "参照"
+
+#. module: account
+#: view:account.open.closed.fiscalyear:0
+msgid "Choose Fiscal Year "
+msgstr "会計年度の選択 "
+
+#. module: account
+#: help:account.payment.term,active:0
+msgid ""
+"If the active field is set to False, it will allow you to hide the payment "
+"term without removing it."
+msgstr "アクティブ項目がFalseに設定されている場合、支払条件を削除することなく非表示にできます。"
+
+#. module: account
+#: code:addons/account/account_invoice.py:1428
+#, python-format
+msgid "Warning!"
+msgstr "警告"
+
+#. module: account
+#: code:addons/account/account.py:3112
+#, python-format
+msgid "Miscellaneous Journal"
+msgstr "その他の仕訳帳"
+
+#. module: account
+#: field:account.fiscal.position.account,account_src_id:0
+#: field:account.fiscal.position.account.template,account_src_id:0
+msgid "Account Source"
+msgstr "元アカウント"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.act_acc_analytic_acc_5_report_hr_timesheet_invoice_journal
+msgid "All Analytic Entries"
+msgstr "全ての分析エントリー"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard
+msgid "Invoices Created Within Past 15 Days"
+msgstr "過去15日以内に作成済の請求書"
+
+#. module: account
+#: field:accounting.report,label_filter:0
+msgid "Column Label"
+msgstr "列ラベル"
+
+#. module: account
+#: code:addons/account/wizard/account_move_journal.py:95
+#, python-format
+msgid "Journal: %s"
+msgstr "仕訳帳:%s"
+
+#. module: account
+#: help:account.analytic.journal,type:0
+msgid ""
+"Gives the type of the analytic journal. When it needs for a document (eg: an "
+"invoice) to create analytic entries, OpenERP will look for a matching "
+"journal of the same type."
+msgstr ""
+"分析仕訳帳のタイプを与えて下さい。分析エントリーを作成するためのドキュメント(例えば請求書)のために必要な場合、OpenERPは同じタイプの一致する仕訳帳"
+"を探します。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_tax_template_form
+#: model:ir.ui.menu,name:account.menu_action_account_tax_template_form
+msgid "Tax Templates"
+msgstr "税金テンプレート"
+
+#. module: account
+#: model:ir.model,name:account.model_account_tax
+msgid "account.tax"
+msgstr ""
+
+#. module: account
+#: model:ir.model,name:account.model_account_move_line_reconcile_select
+msgid "Move line reconcile select"
+msgstr "消し込み選択行の移動"
+
+#. module: account
+#: help:account.tax.code,notprintable:0
+#: help:account.tax.code.template,notprintable:0
+msgid ""
+"Check this box if you don't want any VAT related to this Tax Code to appear "
+"on invoices"
+msgstr "この税金コードに関連するどんな消費税項目も請求書上に表示されることを望まない場合は、このボックスをチェックして下さい。"
+
+#. module: account
+#: code:addons/account/account_invoice.py:1241
+#, python-format
+msgid "Invoice '%s' is paid partially: %s%s of %s%s (%s%s remaining)"
+msgstr "請求書 %s は部分的に支払われます:%s%s / %s%s(%s%s 残り)"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_supplierentriesreconcile0
+msgid "Accounting entries are an input of the reconciliation."
+msgstr "会計エントリーは消し込みの入力です。"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports
+msgid "Belgian Reports"
+msgstr "ベルギーのレポート"
+
+#. module: account
+#: code:addons/account/account_move_line.py:1200
+#, python-format
+msgid "You can not add/modify entries in a closed journal."
+msgstr "閉鎖仕訳帳のエントリーを追加 / 削除することはできません。"
+
+#. module: account
+#: help:account.account,user_type:0
+msgid ""
+"Account Type is used for information purpose, to generate country-specific "
+"legal reports, and set the rules to close a fiscal year and generate opening "
+"entries."
+msgstr ""
+"アカウントタイプは、各国固有の法律上のレポートを作成し、そして会計年度を終了させて開始エントリーを生成するためのルールを設定するための情報目的で使用されま"
+"す。"
+
+#. module: account
+#: report:account.overdue:0
+msgid "Sub-Total :"
+msgstr "小計:"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_use_model_create_entry
+#: model:ir.actions.act_window,name:account.action_view_account_use_model
+#: model:ir.ui.menu,name:account.menu_action_manual_recurring
+msgid "Manual Recurring"
+msgstr "手動の自動継続"
+
+#. module: account
+#: view:account.fiscalyear.close.state:0
+msgid "Close Fiscalyear"
+msgstr "年度を閉じる"
+
+#. module: account
+#: field:account.automatic.reconcile,allow_write_off:0
+msgid "Allow write off"
+msgstr "帳消しの許可"
+
+#. module: account
+#: view:account.analytic.chart:0
+msgid "Select the Period for Analysis"
+msgstr "分析期間の選択"
+
+#. module: account
+#: view:account.move.line:0
+msgid "St."
+msgstr ""
+
+#. module: account
+#: code:addons/account/account_invoice.py:551
+#, python-format
+msgid "Invoice line account company does not match with invoice company."
+msgstr "請求書行のアカウントの会社が請求書の会社と一致しません。"
+
+#. module: account
+#: field:account.journal.column,field:0
+msgid "Field Name"
+msgstr "項目名"
+
+#. module: account
+#: help:account.installer,charts:0
+msgid ""
+"Installs localized accounting charts to match as closely as possible the "
+"accounting needs of your company based on your country."
+msgstr "あなたの国に基づき、あなたの会社の会計ニーズに可能な限り近くマッチする、ローカル化会計表をインストールします。"
+
+#. module: account
+#: code:addons/account/wizard/account_move_journal.py:63
+#, python-format
+msgid ""
+"Can't find any account journal of %s type for this company.\n"
+"\n"
+"You can create one in the menu: \n"
+"Configuration/Financial Accounting/Accounts/Journals."
+msgstr ""
+"この会社のために %s タイプのどんな会計仕訳帳も見つけることができません。\n"
+"\n"
+"メニューからそれを作成することができます: \n"
+"設定 / 金融会計 / アカウント / 仕訳帳"
+
+#. module: account
+#: model:ir.model,name:account.model_account_unreconcile
+msgid "Account Unreconcile"
+msgstr "消し込みなしアカウント"
+
+#. module: account
+#: view:product.product:0
+#: view:product.template:0
+msgid "Purchase Properties"
+msgstr "仕入属性"
+
+#. module: account
+#: help:account.financial.report,style_overwrite:0
+msgid ""
+"You can set up here the format you want this record to be displayed. If you "
+"leave the automatic formatting, it will be computed based on the financial "
+"reports hierarchy (auto-computed field 'level')."
+msgstr ""
+"このレコードを表示させるための好みのフォーマットをここで設定できます。自動フォーマッティングを残す場合は、それは財務レポートの階層(自動計算項目\"レベル"
+"\")に基づき計算されます。"
+
+#. module: account
+#: view:account.installer:0
+msgid "Configure"
+msgstr "設定"
+
+#. module: account
+#: selection:account.entries.report,month:0
+#: selection:account.invoice.report,month:0
+#: selection:analytic.entries.report,month:0
+#: selection:report.account.sales,month:0
+#: selection:report.account_type.sales,month:0
+msgid "June"
+msgstr "6月"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_moves_bank
+msgid ""
+"This view is used by accountants in order to record entries massively in "
+"OpenERP. Journal items are created by OpenERP if you use Bank Statements, "
+"Cash Registers, or Customer/Supplier payments."
+msgstr ""
+"このビューはOpenERPの大量のエントリーを記録するために会計士によって利用されます。銀行取引明細書、キャッシュレジスター、または顧客 / "
+"仕入先支払いを利用する場合、仕訳帳項目はOpenERPによって作成されます。"
+
+#. module: account
+#: constraint:account.move.line:0
+msgid "You can not create journal items on an account of type view."
+msgstr "ビュータイプのアカウントでは仕訳項目を作ることはできません。"
+
+#. module: account
+#: model:ir.model,name:account.model_account_tax_template
+msgid "account.tax.template"
+msgstr ""
+
+#. module: account
+#: model:ir.model,name:account.model_account_bank_accounts_wizard
+msgid "account.bank.accounts.wizard"
+msgstr ""
+
+#. module: account
+#: field:account.move.line,date_created:0
+#: field:account.move.reconcile,create_date:0
+msgid "Creation date"
+msgstr "作成日"
+
+#. module: account
+#: selection:account.journal,type:0
+msgid "Purchase Refund"
+msgstr "仕入返金"
+
+#. module: account
+#: selection:account.journal,type:0
+msgid "Opening/Closing Situation"
+msgstr "状態の開設 / 閉鎖"
+
+#. module: account
+#: help:account.journal,currency:0
+msgid "The currency used to enter statement"
+msgstr "明細入力に使用される通貨"
+
+#. module: account
+#: field:account.open.closed.fiscalyear,fyear_id:0
+msgid "Fiscal Year to Open"
+msgstr "会計年度を開く"
+
+#. module: account
+#: help:account.journal,sequence_id:0
+msgid ""
+"This field contains the informatin related to the numbering of the journal "
+"entries of this journal."
+msgstr "この項目にはこの仕訳帳の仕訳エントリーのナンバリングに冠する情報が含まれています。"
+
+#. module: account
+#: field:account.journal,default_debit_account_id:0
+msgid "Default Debit Account"
+msgstr "デフォルト借方アカウント"
+
+#. module: account
+#: view:account.move:0
+msgid "Total Credit"
+msgstr "貸方合計"
+
+#. module: account
+#: view:account.move.line.unreconcile.select:0
+msgid "Open For Unreconciliation"
+msgstr "不一致を開く"
+
+#. module: account
+#: field:account.account.template,chart_template_id:0
+#: field:account.fiscal.position.template,chart_template_id:0
+#: field:account.tax.template,chart_template_id:0
+#: field:wizard.multi.charts.accounts,chart_template_id:0
+msgid "Chart Template"
+msgstr "チャートテンプレート"
+
+#. module: account
+#: help:account.model.line,amount_currency:0
+msgid "The amount expressed in an optional other currency."
+msgstr "オプションの他の通貨で表現された金額"
+
+#. module: account
+#: field:accounting.report,enable_filter:0
+msgid "Enable Comparison"
+msgstr "比較を可能化"
+
+#. module: account
+#: help:account.journal.period,state:0
+msgid ""
+"When journal period is created. The state is 'Draft'. If a report is printed "
+"it comes to 'Printed' state. When all transactions are done, it comes in "
+"'Done' state."
+msgstr ""
+"仕訳帳期間が作成される場合、その状態はドラフトです。レポートが印刷された場合は、印刷済状態になります。全ての取引が完了すると完了状態となります。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_tax_chart
+msgid ""
+"Chart of Taxes is a tree view reflecting the structure of the Tax Cases (or "
+"tax codes) and shows the current tax situation. The tax chart represents the "
+"amount of each area of the tax declaration for your country. It’s presented "
+"in a hierarchical structure, which can be modified to fit your needs."
+msgstr ""
+"税金のチャートは税金の事実(または税金コード)の構造を反映したツリービューで、現在の税金の状況を示します。税金チャートはあなたの国の税金申告の各領域の金額"
+"を表します。それはあなたのニーズに合わせて変更できる階層的な構造で表示されます。"
+
+#. module: account
+#: view:account.analytic.line:0
+#: field:account.automatic.reconcile,journal_id:0
+#: view:account.bank.statement:0
+#: field:account.bank.statement,journal_id:0
+#: report:account.central.journal:0
+#: view:account.entries.report:0
+#: field:account.entries.report,journal_id:0
+#: view:account.invoice:0
+#: field:account.invoice,journal_id:0
+#: view:account.invoice.report:0
+#: field:account.invoice.report,journal_id:0
+#: field:account.journal.period,journal_id:0
+#: report:account.journal.period.print:0
+#: report:account.journal.period.print.sale.purchase:0
+#: view:account.model:0
+#: field:account.model,journal_id:0
+#: view:account.move:0
+#: field:account.move,journal_id:0
+#: field:account.move.bank.reconcile,journal_id:0
+#: view:account.move.line:0
+#: field:account.move.line,journal_id:0
+#: view:analytic.entries.report:0
+#: field:analytic.entries.report,journal_id:0
+#: model:ir.actions.report.xml,name:account.account_journal
+#: model:ir.model,name:account.model_account_journal
+#: field:validate.account.move,journal_id:0
+msgid "Journal"
+msgstr "仕訳帳"
+
+#. module: account
+#: model:ir.model,name:account.model_account_invoice_confirm
+msgid "Confirm the selected invoices"
+msgstr "選択した請求集書を確認"
+
+#. module: account
+#: field:account.addtmpl.wizard,cparent_id:0
+msgid "Parent target"
+msgstr "親ターゲット"
+
+#. module: account
+#: field:account.bank.statement,account_id:0
+msgid "Account used in this journal"
+msgstr "この仕訳帳で使用されるアカウント"
+
+#. module: account
+#: help:account.aged.trial.balance,chart_account_id:0
+#: help:account.balance.report,chart_account_id:0
+#: help:account.central.journal,chart_account_id:0
+#: help:account.common.account.report,chart_account_id:0
+#: help:account.common.journal.report,chart_account_id:0
+#: help:account.common.partner.report,chart_account_id:0
+#: help:account.common.report,chart_account_id:0
+#: help:account.general.journal,chart_account_id:0
+#: help:account.partner.balance,chart_account_id:0
+#: help:account.partner.ledger,chart_account_id:0
+#: help:account.print.journal,chart_account_id:0
+#: help:account.report.general.ledger,chart_account_id:0
+#: help:account.vat.declaration,chart_account_id:0
+#: help:accounting.report,chart_account_id:0
+msgid "Select Charts of Accounts"
+msgstr "勘定科目表の選択"
+
+#. module: account
+#: sql_constraint:res.company:0
+msgid "The company name must be unique !"
+msgstr "会社名は固有でなければいけません。"
+
+#. module: account
+#: model:ir.model,name:account.model_account_invoice_refund
+msgid "Invoice Refund"
+msgstr "請求書返金"
+
+#. module: account
+#: report:account.overdue:0
+msgid "Li."
+msgstr ""
+
+#. module: account
+#: field:account.automatic.reconcile,unreconciled:0
+msgid "Not reconciled transactions"
+msgstr "未消し込み取引"
+
+#. module: account
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+msgid "Counterpart"
+msgstr "相手方"
+
+#. module: account
+#: view:account.fiscal.position:0
+#: field:account.fiscal.position,tax_ids:0
+#: field:account.fiscal.position.template,tax_ids:0
+msgid "Tax Mapping"
+msgstr "税金のマッピング"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state
+#: model:ir.ui.menu,name:account.menu_wizard_fy_close_state
+msgid "Close a Fiscal Year"
+msgstr "会計年度を閉じる"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_confirmstatementfromdraft0
+msgid "The accountant confirms the statement."
+msgstr "会計士は取引明細書を確認します。"
+
+#. module: account
+#: selection:account.balance.report,display_account:0
+#: selection:account.common.account.report,display_account:0
+#: selection:account.report.general.ledger,display_account:0
+#: selection:account.tax,type_tax_use:0
+#: selection:account.tax.template,type_tax_use:0
+msgid "All"
+msgstr "全て"
+
+#. module: account
+#: field:account.invoice.report,address_invoice_id:0
+msgid "Invoice Address Name"
+msgstr "請求書住所の名前"
+
+#. module: account
+#: selection:account.installer,period:0
+msgid "3 Monthly"
+msgstr "3ヶ月毎"
+
+#. module: account
+#: view:account.unreconcile.reconcile:0
+msgid ""
+"If you unreconciliate transactions, you must also verify all the actions "
+"that are linked to those transactions because they will not be disable"
+msgstr "取引を消し込みしない場合、それらが無効にされないためにそれらの取引にリンクされる全てのアクションを検査しなければなりません。"
+
+#. module: account
+#: view:analytic.entries.report:0
+msgid "   30 Days   "
+msgstr "   30日   "
+
+#. module: account
+#: field:ir.sequence,fiscal_ids:0
+msgid "Sequences"
+msgstr "順序"
+
+#. module: account
+#: field:account.financial.report,account_report_id:0
+#: selection:account.financial.report,type:0
+msgid "Report Value"
+msgstr "レポート値"
+
+#. module: account
+#: view:account.fiscal.position.template:0
+msgid "Taxes Mapping"
+msgstr "税金マッピング"
+
+#. module: account
+#: report:account.central.journal:0
+msgid "Centralized Journal"
+msgstr "一元化仕訳帳"
+
+#. module: account
+#: sql_constraint:account.sequence.fiscalyear:0
+msgid "Main Sequence must be different from current !"
+msgstr "主となる順序は現在と異なる必要があります。"
+
+#. module: account
+#: code:addons/account/account_move_line.py:1251
+#, python-format
+msgid "No period found or more than one period found for the given date."
+msgstr "所定の日付のために期間が見つからないか、複数の期間が見つかりました。"
+
+#. module: account
+#: field:account.invoice.tax,tax_amount:0
+msgid "Tax Code Amount"
+msgstr "税金コード金額"
+
+#. module: account
+#: code:addons/account/account.py:3116
+#, python-format
+msgid "SAJ"
+msgstr ""
+
+#. module: account
+#: view:account.period:0
+#: view:account.period.close:0
+msgid "Close Period"
+msgstr "期間を閉じる"
+
+#. module: account
+#: model:ir.model,name:account.model_account_common_partner_report
+msgid "Account Common Partner Report"
+msgstr "アカウント共有パートナレポート"
+
+#. module: account
+#: field:account.fiscalyear.close,period_id:0
+msgid "Opening Entries Period"
+msgstr "開始エントリーの期間"
+
+#. module: account
+#: model:ir.model,name:account.model_account_journal_period
+msgid "Journal Period"
+msgstr "仕訳帳期間"
+
+#. module: account
+#: code:addons/account/account_move_line.py:750
+#: code:addons/account/account_move_line.py:803
+#, python-format
+msgid "To reconcile the entries company should be the same for all entries"
+msgstr "エントリーを消し込みするために、会社は全てのエントリーに対して同じであるべきです。"
+
+#. module: account
+#: view:account.account:0
+#: selection:account.aged.trial.balance,result_selection:0
+#: selection:account.common.partner.report,result_selection:0
+#: selection:account.partner.balance,result_selection:0
+#: selection:account.partner.ledger,result_selection:0
+#: code:addons/account/report/account_partner_balance.py:297
+#: model:ir.actions.act_window,name:account.action_aged_receivable
+#, python-format
+msgid "Receivable Accounts"
+msgstr "売掛金"
+
+#. module: account
+#: constraint:account.move.line:0
+msgid ""
+"The date of your Journal Entry is not in the defined period! You should "
+"change the date or remove this constraint from the journal."
+msgstr "仕訳帳エントリーの日付が定義された期間ではありません。日付を変更するか仕訳帳からこの制約を削除する必要があります。"
+
+#. module: account
+#: model:ir.model,name:account.model_account_report_general_ledger
+msgid "General Ledger Report"
+msgstr "総勘定元帳レポート"
+
+#. module: account
+#: view:account.invoice:0
+msgid "Re-Open"
+msgstr "再度開く"
+
+#. module: account
+#: view:account.use.model:0
+msgid "Are you sure you want to create entries?"
+msgstr "本当にエントリーを作成しますか?"
+
+#. module: account
+#: view:account.invoice:0
+msgid "Print Invoice"
+msgstr "請求書印刷"
+
+#. module: account
+#: field:account.partner.reconcile.process,today_reconciled:0
+msgid "Partners Reconciled Today"
+msgstr "本日パートナ消し込み済"
+
+#. module: account
+#: view:report.hr.timesheet.invoice.journal:0
+msgid "Sale journal in this year"
+msgstr "今年の売上仕訳帳"
+
+#. module: account
+#: selection:account.financial.report,display_detail:0
+msgid "Display children with hierarchy"
+msgstr "階層とともに子を表示"
+
+#. module: account
+#: selection:account.payment.term.line,value:0
+#: selection:account.tax.template,type:0
+msgid "Percent"
+msgstr "パーセント"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_finance_charts
+msgid "Charts"
+msgstr "チャート"
+
+#. module: account
+#: code:addons/account/project/wizard/project_account_analytic_line.py:47
+#: model:ir.model,name:account.model_project_account_analytic_line
+#, python-format
+msgid "Analytic Entries by line"
+msgstr "行ごとの分析エントリー"
+
+#. module: account
+#: field:account.invoice.refund,filter_refund:0
+msgid "Refund Method"
+msgstr "返金方法"
+
+#. module: account
+#: code:addons/account/wizard/account_change_currency.py:38
+#, python-format
+msgid "You can only change currency for Draft Invoice !"
+msgstr "ドラフト請求書に対しては通貨のみ変更できます。"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_account_report
+msgid "Financial Report"
+msgstr "財務レポート"
+
+#. module: account
+#: view:account.analytic.journal:0
+#: field:account.analytic.journal,type:0
+#: field:account.bank.statement.line,type:0
+#: field:account.financial.report,type:0
+#: field:account.invoice,type:0
+#: view:account.invoice.report:0
+#: field:account.invoice.report,type:0
+#: view:account.journal:0
+#: field:account.journal,type:0
+#: field:account.move.reconcile,type:0
+#: field:report.invoice.created,type:0
+msgid "Type"
+msgstr "タイプ"
+
+#. module: account
+#: code:addons/account/account_invoice.py:738
+#, python-format
+msgid ""
+"Taxes are missing!\n"
+"Click on compute button."
+msgstr ""
+"税金が見つかりません。\n"
+"計算ボタンをクリックして下さい。"
+
+#. module: account
+#: model:ir.model,name:account.model_account_subscription_line
+msgid "Account Subscription Line"
+msgstr "アカウントサブスクリプション行"
+
+#. module: account
+#: help:account.invoice,reference:0
+msgid "The partner reference of this invoice."
+msgstr "請求書のパートナ参照"
+
+#. module: account
+#: view:account.invoice.report:0
+msgid "Supplier Invoices And Refunds"
+msgstr "仕入先請求書と返金"
+
+#. module: account
+#: view:account.move.line.unreconcile.select:0
+#: view:account.unreconcile:0
+#: view:account.unreconcile.reconcile:0
+#: model:ir.model,name:account.model_account_move_line_unreconcile_select
+msgid "Unreconciliation"
+msgstr "未消し込み"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "At 14 net days 2 percent, remaining amount at 30 days end of month."
+msgstr "14日間で2パーセント、月末の30日間で残量"
+
+#. module: account
+#: model:ir.model,name:account.model_account_analytic_journal_report
+msgid "Account Analytic Journal"
+msgstr "アカウント分析仕訳帳"
+
+#. module: account
+#: model:ir.model,name:account.model_account_automatic_reconcile
+msgid "Automatic Reconcile"
+msgstr "自動消し込み"
+
+#. module: account
+#: report:account.analytic.account.quantity_cost_ledger:0
+msgid "J.C./Move name"
+msgstr "J.C. / Move 名前"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_gain_loss
+msgid ""
+"When doing multi-currency transactions, you may loose or gain some amount "
+"due to changes of exchange rate. This menu gives you a forecast of the Gain "
+"or Loss you'd realized if those transactions were ended today. Only for "
+"accounts having a secondary currency set."
+msgstr ""
+"多通貨取引を行う場合は、為替レートによっていくらかの損失や利益が生じることがあります。それらの取引が本日終了する場合、このメニューは実際に得るであろうその"
+"利益や損失の予測を提供します。ただし、第2通貨の設定を持つアカウントのみです。"
+
+#. module: account
+#: selection:account.entries.report,month:0
+#: selection:account.invoice.report,month:0
+#: selection:analytic.entries.report,month:0
+#: selection:report.account.sales,month:0
+#: selection:report.account_type.sales,month:0
+msgid "September"
+msgstr "9月"
+
+#. module: account
+#: selection:account.subscription,period_type:0
+msgid "days"
+msgstr "日数"
+
+#. module: account
+#: help:account.account.template,nocreate:0
+msgid ""
+"If checked, the new chart of accounts will not contain this by default."
+msgstr "これをチェックした場合、アカウントの新しいチャートはデフォルトではこれを含みません。"
+
+#. module: account
+#: code:addons/account/wizard/account_invoice_refund.py:110
+#, python-format
+msgid ""
+"Can not %s invoice which is already reconciled, invoice should be "
+"unreconciled first. You can only Refund this invoice"
+msgstr "請求書 %s は既に消し込み済のため変更できません。請求書は最初に消し込みなしであるべきです。この請求書の返金のみができます。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_subscription_form_new
+msgid "New Subscription"
+msgstr "新しいサブスクリプション"
+
+#. module: account
+#: view:account.payment.term:0
+msgid "Computation"
+msgstr "計算"
+
+#. module: account
+#: selection:account.invoice.refund,filter_refund:0
+msgid "Cancel: refund invoice and reconcile"
+msgstr "キャンセル:請求書と消し込みの返金"
+
+#. module: account
+#: field:account.cashbox.line,pieces:0
+msgid "Values"
+msgstr "値"
+
+#. module: account
+#: view:account.invoice.report:0
+#: field:account.invoice.report,delay_to_pay:0
+msgid "Avg. Delay To Pay"
+msgstr "平均支払遅延"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_tax_chart
+#: model:ir.actions.act_window,name:account.action_tax_code_tree
+#: model:ir.ui.menu,name:account.menu_action_tax_code_tree
+msgid "Chart of Taxes"
+msgstr "税金チャート"
+
+#. module: account
+#: view:account.fiscalyear:0
+msgid "Create 3 Months Periods"
+msgstr "3ヶ月期間の作成"
+
+#. module: account
+#: report:account.overdue:0
+msgid "Due"
+msgstr "期日"
+
+#. module: account
+#: code:addons/account/account.py:1345
+#, python-format
+msgid ""
+"You cannot validate this journal entry because account \"%s\" does not "
+"belong to chart of accounts \"%s\"!"
+msgstr "アカウント %s は勘定科目表 %s に属していないため、この仕訳帳エントリーを検証することはできません。"
+
+#. module: account
+#: code:addons/account/account_move_line.py:835
+#, python-format
+msgid ""
+"This account does not allow reconciliation! You should update the account "
+"definition to change this."
+msgstr "このアカウントは消し込みを許されていません。これを変更するにはアカウントの定義を更新する必要があります。"
+
+#. module: account
+#: view:account.invoice:0
+#: view:account.move:0
+#: view:validate.account.move:0
+#: view:validate.account.move.lines:0
+msgid "Approve"
+msgstr "承認"
+
+#. module: account
+#: view:account.invoice:0
+#: view:account.move:0
+#: view:report.invoice.created:0
+msgid "Total Amount"
+msgstr "合計金額"
+
+#. module: account
+#: selection:account.account,type:0
+#: selection:account.account.template,type:0
+#: selection:account.entries.report,type:0
+msgid "Consolidation"
+msgstr "統合"
+
+#. module: account
+#: model:account.account.type,name:account.data_account_type_liability
+#: model:account.financial.report,name:account.account_financial_report_liability0
+#: model:account.financial.report,name:account.account_financial_report_liabilitysum0
+msgid "Liability"
+msgstr "負債"
+
+#. module: account
+#: view:account.entries.report:0
+msgid "Extended Filters..."
+msgstr "拡張フィルタ…"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_account_central_journal
+msgid "Centralizing Journal"
+msgstr "仕訳帳の一元化"
+
+#. module: account
+#: selection:account.journal,type:0
+msgid "Sale Refund"
+msgstr "売上返金"
+
+#. module: account
+#: model:process.node,note:account.process_node_accountingstatemententries0
+msgid "Bank statement"
+msgstr "銀行取引明細書"
+
+#. module: account
+#: field:account.analytic.line,move_id:0
+msgid "Move Line"
+msgstr "移動行"
+
+#. module: account
+#: help:account.move.line,tax_amount:0
+msgid ""
+"If the Tax account is a tax code account, this field will contain the taxed "
+"amount.If the tax account is base tax code, this field will contain the "
+"basic amount(without tax)."
+msgstr ""
+"税金アカウントが税金コードアカウントであるなら、この項目は税込みの金額です。税金アカウントが税金コードを基にしたものであるなら、この項目は税抜きの金額です"
+"。"
+
+#. module: account
+#: code:addons/account/account.py:2596
+#, python-format
+msgid "I can not locate a parent code for the template account!"
+msgstr "テンプレートアカウントのための親コードが見つかりません。"
+
+#. module: account
+#: view:account.analytic.line:0
+msgid "Purchases"
+msgstr "仕入"
+
+#. module: account
+#: field:account.model,lines_id:0
+msgid "Model Entries"
+msgstr "モデルエントリー"
+
+#. module: account
+#: field:account.account,code:0
+#: report:account.account.balance:0
+#: field:account.account.template,code:0
+#: field:account.account.type,code:0
+#: report:account.analytic.account.balance:0
+#: report:account.analytic.account.inverted.balance:0
+#: report:account.analytic.account.journal:0
+#: field:account.analytic.line,code:0
+#: field:account.fiscalyear,code:0
+#: report:account.general.journal:0
+#: field:account.journal,code:0
+#: report:account.partner.balance:0
+#: field:account.period,code:0
+msgid "Code"
+msgstr "コード"
+
+#. module: account
+#: code:addons/account/account.py:2268
+#: code:addons/account/account_bank_statement.py:357
+#: code:addons/account/account_invoice.py:73
+#: code:addons/account/account_invoice.py:688
+#: code:addons/account/account_move_line.py:173
+#, python-format
+msgid "No Analytic Journal !"
+msgstr "分析仕訳帳がありません。"
+
+#. module: account
+#: report:account.partner.balance:0
+#: view:account.partner.balance:0
+#: model:ir.actions.act_window,name:account.action_account_partner_balance
+#: model:ir.actions.report.xml,name:account.account_3rdparty_account_balance
+#: model:ir.ui.menu,name:account.menu_account_partner_balance_report
+msgid "Partner Balance"
+msgstr "パートナ残高"
+
+#. module: account
+#: field:account.bank.accounts.wizard,acc_name:0
+msgid "Account Name."
+msgstr "アカウント名"
+
+#. module: account
+#: field:account.chart.template,property_reserve_and_surplus_account:0
+#: field:res.company,property_reserve_and_surplus_account:0
+msgid "Reserve and Profit/Loss Account"
+msgstr "引当金と利益 / 損失アカウント"
+
+#. module: account
+#: field:report.account.receivable,name:0
+msgid "Week of Year"
+msgstr "年の通算週"
+
+#. module: account
+#: field:account.report.general.ledger,landscape:0
+msgid "Landscape Mode"
+msgstr "横向きモード"
+
+#. module: account
+#: code:addons/account/account.py:645
+#, python-format
+msgid ""
+"You cannot change the type of account from '%s' to '%s' type as it contains "
+"journal items!"
+msgstr "それは仕訳帳項目を含むため、アカウントタイプを %s から %s へ変更することはできません。"
+
+#. module: account
+#: field:account.report.general.ledger,sortby:0
+msgid "Sort by"
+msgstr "並べ替え順"
+
+#. module: account
+#: help:account.fiscalyear.close,fy_id:0
+msgid "Select a Fiscal year to close"
+msgstr "閉じる会計年度を選択して下さい。"
+
+#. module: account
+#: help:account.account.template,user_type:0
+msgid ""
+"These types are defined according to your country. The type contains more "
+"information about the account and its specificities."
+msgstr "これらのタイプはあなたの国に従って定義されています。タイプはアカウントとその特殊性についての多くの情報を含んでいます。"
+
+#. module: account
+#: code:addons/account/account_move_line.py:842
+#, python-format
+msgid ""
+"You have to provide an account for the write off/exchange difference entry !"
+msgstr "償却 / 為替差エントリーのためのアカウントを提供しなければなりません。"
+
+#. module: account
+#: view:account.tax:0
+msgid "Applicability Options"
+msgstr "適用オプション"
+
+#. module: account
+#: report:account.partner.balance:0
+msgid "In dispute"
+msgstr "係争中"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_view_bank_statement_tree
+#: model:ir.ui.menu,name:account.journal_cash_move_lines
+msgid "Cash Registers"
+msgstr "キャッシュレジスタ"
+
+#. module: account
+#: report:account.analytic.account.journal:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+msgid "-"
+msgstr ""
+
+#. module: account
+#: view:account.analytic.account:0
+#: model:res.groups,name:account.group_account_manager
+msgid "Manager"
+msgstr "マネジャ"
+
+#. module: account
+#: view:account.subscription.generate:0
+msgid "Generate Entries before:"
+msgstr "前にエントリーを生成:"
+
+#. module: account
+#: view:account.move.line:0
+msgid "Unbalanced Journal Items"
+msgstr "不均衡状態の仕訳帳項目"
+
+#. module: account
+#: model:account.account.type,name:account.data_account_type_bank
+#: selection:account.bank.accounts.wizard,account_type:0
+#: code:addons/account/account.py:3003
+#, python-format
+msgid "Bank"
+msgstr "銀行"
+
+#. module: account
+#: field:account.period,date_start:0
+msgid "Start of Period"
+msgstr "期首日"
+
+#. module: account
+#: model:process.transition,name:account.process_transition_confirmstatementfromdraft0
+msgid "Confirm statement"
+msgstr "取引明細書の確認"
+
+#. module: account
+#: help:account.account,foreign_balance:0
+msgid ""
+"Total amount (in Secondary currency) for transactions held in secondary "
+"currency for this account."
+msgstr "このアカウントに対する第2の通貨で行われた取引の総額(第2の通貨)。"
+
+#. module: account
+#: field:account.fiscal.position.tax,tax_dest_id:0
+#: field:account.fiscal.position.tax.template,tax_dest_id:0
+msgid "Replacement Tax"
+msgstr "税金の置き換え"
+
+#. module: account
+#: selection:account.move.line,centralisation:0
+msgid "Credit Centralisation"
+msgstr "貸方の一元化"
+
+#. module: account
+#: view:report.account_type.sales:0
+msgid "All Months Sales by type"
+msgstr "タイプ別全月の売上"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_invoice_tree2
+msgid ""
+"With Supplier Invoices you can enter and manage invoices issued by your "
+"suppliers. OpenERP can also generate draft invoices automatically from "
+"purchase orders or receipts. This way, you can control the invoice from your "
+"supplier according to what you purchased or received."
+msgstr ""
+"仕入先の請求書で、仕入先によって発行された請求書の入力と管理ができます。OpenERPは発注オーダーや領収書から自動的にドラフト請求書の作成もできます。こ"
+"の方法は、仕入先に発注したあるいは受け取ったものに応じて請求書の管理ができます。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_tax_code_template_form
+#: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form
+msgid "Tax Code Templates"
+msgstr "税金コードテンプレート"
+
+#. module: account
+#: view:account.invoice.cancel:0
+msgid "Cancel Invoices"
+msgstr "請求書のキャンセル"
+
+#. module: account
+#: help:account.journal,code:0
+msgid "The code will be displayed on reports."
+msgstr "コードはレポート上に表示されます。"
+
+#. module: account
+#: view:account.tax.template:0
+msgid "Taxes used in Purchases"
+msgstr "仕入時にかかる税金"
+
+#. module: account
+#: field:account.invoice.tax,tax_code_id:0
+#: field:account.tax,description:0
+#: field:account.tax.template,tax_code_id:0
+#: model:ir.model,name:account.model_account_tax_code
+msgid "Tax Code"
+msgstr "税金コード"
+
+#. module: account
+#: field:account.account,currency_mode:0
+msgid "Outgoing Currencies Rate"
+msgstr "仕向為替レート"
+
+#. module: account
+#: selection:account.analytic.journal,type:0
+msgid "Situation"
+msgstr "状況"
+
+#. module: account
+#: help:account.move.line,move_id:0
+msgid "The move of this entry line."
+msgstr "このエントリー行を移動します。"
+
+#. module: account
+#: code:addons/account/account_move_line.py:1302
+#, python-format
+msgid ""
+"You can not use this general account in this journal, check the tab 'Entry "
+"Controls' on the related journal !"
+msgstr "この仕訳帳にはこの一般的なアカウントを使うことができません。関連する仕訳帳上の入力コントロールタブをチェックして下さい。"
+
+#. module: account
+#: field:account.move.line.reconcile,trans_nbr:0
+msgid "# of Transaction"
+msgstr "取引数"
+
+#. module: account
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+msgid "Entry Label"
+msgstr "エントリーラベル"
+
+#. module: account
+#: code:addons/account/account.py:1129
+#, python-format
+msgid "You can not modify/delete a journal with entries for this period !"
+msgstr "この期間の仕訳帳エントリーの変更や削除はできません。"
+
+#. module: account
+#: help:account.invoice,origin:0
+#: help:account.invoice.line,origin:0
+msgid "Reference of the document that produced this invoice."
+msgstr "この請求書が生成されたドキュメントへの参照"
+
+#. module: account
+#: view:account.analytic.line:0
+#: view:account.journal:0
+msgid "Others"
+msgstr "その他"
+
+#. module: account
+#: view:account.subscription:0
+msgid "Draft Subscription"
+msgstr "ドラフトサブスクリプション"
+
+#. module: account
+#: view:account.account:0
+#: report:account.account.balance:0
+#: view:account.analytic.line:0
+#: field:account.automatic.reconcile,writeoff_acc_id:0
+#: field:account.bank.statement.line,account_id:0
+#: view:account.entries.report:0
+#: field:account.entries.report,account_id:0
+#: field:account.invoice,account_id:0
+#: field:account.invoice.line,account_id:0
+#: view:account.invoice.report:0
+#: field:account.invoice.report,account_id:0
+#: field:account.journal,account_control_ids:0
+#: report:account.journal.period.print:0
+#: report:account.journal.period.print.sale.purchase:0
+#: field:account.model.line,account_id:0
+#: view:account.move.line:0
+#: field:account.move.line,account_id:0
+#: field:account.move.line.reconcile.select,account_id:0
+#: field:account.move.line.unreconcile.select,account_id:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+#: view:analytic.entries.report:0
+#: field:analytic.entries.report,account_id:0
+#: model:ir.model,name:account.model_account_account
+#: field:report.account.sales,account_id:0
+msgid "Account"
+msgstr "アカウント"
+
+#. module: account
+#: field:account.tax,include_base_amount:0
+msgid "Included in base amount"
+msgstr "基本金額に含む"
+
+#. module: account
+#: view:account.entries.report:0
+#: model:ir.actions.act_window,name:account.action_account_entries_report_all
+#: model:ir.ui.menu,name:account.menu_action_account_entries_report_all
+msgid "Entries Analysis"
+msgstr "エントリー分析"
+
+#. module: account
+#: field:account.account,level:0
+#: field:account.financial.report,level:0
+msgid "Level"
+msgstr "レベル"
+
+#. module: account
+#: report:account.invoice:0
+#: view:account.invoice:0
+#: view:account.invoice.line:0
+#: field:account.invoice.line,invoice_line_tax_id:0
+#: view:account.move:0
+#: view:account.move.line:0
+#: model:ir.actions.act_window,name:account.action_tax_form
+#: model:ir.ui.menu,name:account.account_template_taxes
+#: model:ir.ui.menu,name:account.menu_action_tax_form
+#: model:ir.ui.menu,name:account.menu_tax_report
+#: model:ir.ui.menu,name:account.next_id_27
+msgid "Taxes"
+msgstr "税金"
+
+#. module: account
+#: code:addons/account/wizard/account_financial_report.py:69
+#: code:addons/account/wizard/account_report_common.py:144
+#, python-format
+msgid "Select a starting and an ending period"
+msgstr "開始、終了期間を選択"
+
+#. module: account
+#: model:account.financial.report,name:account.account_financial_report_profitandloss0
+msgid "Profit and Loss"
+msgstr "損益"
+
+#. module: account
+#: model:ir.model,name:account.model_account_account_template
+msgid "Templates for Accounts"
+msgstr "アカウントのテンプレート"
+
+#. module: account
+#: view:account.tax.code.template:0
+msgid "Search tax template"
+msgstr "税金テンプレート検索"
+
+#. module: account
+#: view:account.move.reconcile:0
+#: model:ir.actions.act_window,name:account.action_account_reconcile_select
+#: model:ir.actions.act_window,name:account.action_view_account_move_line_reconcile
+msgid "Reconcile Entries"
+msgstr "エントリーの消し込み"
+
+#. module: account
+#: model:ir.actions.report.xml,name:account.account_overdue
+#: view:res.company:0
+msgid "Overdue Payments"
+msgstr "期限超過の支払い"
+
+#. module: account
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+msgid "Initial Balance"
+msgstr "期首残高"
+
+#. module: account
+#: view:account.invoice:0
+msgid "Reset to Draft"
+msgstr "ドラフトにリセット"
+
+#. module: account
+#: view:wizard.multi.charts.accounts:0
+msgid "Bank Information"
+msgstr "銀行情報"
+
+#. module: account
+#: view:account.aged.trial.balance:0
+#: view:account.common.report:0
+msgid "Report Options"
+msgstr "レポートオプション"
+
+#. module: account
+#: model:ir.model,name:account.model_account_entries_report
+msgid "Journal Items Analysis"
+msgstr "仕訳帳項目分析"
+
+#. module: account
+#: model:ir.ui.menu,name:account.next_id_22
+msgid "Partners"
+msgstr "パートナ"
+
+#. module: account
+#: view:account.bank.statement:0
+#: model:ir.model,name:account.model_account_bank_statement
+#: model:process.node,name:account.process_node_accountingstatemententries0
+#: model:process.node,name:account.process_node_bankstatement0
+#: model:process.node,name:account.process_node_supplierbankstatement0
+msgid "Bank Statement"
+msgstr "銀行取引明細書"
+
+#. module: account
+#: field:res.partner,property_account_receivable:0
+msgid "Account Receivable"
+msgstr "売掛金"
+
+#. module: account
+#: model:ir.actions.report.xml,name:account.account_central_journal
+msgid "Central Journal"
+msgstr "中央仕訳帳"
+
+#. module: account
+#: selection:account.balance.report,display_account:0
+#: selection:account.common.account.report,display_account:0
+#: selection:account.partner.balance,display_partner:0
+#: selection:account.report.general.ledger,display_account:0
+msgid "With balance is not equal to 0"
+msgstr "残高が0ではありません。"
+
+#. module: account
+#: view:account.tax:0
+msgid "Search Taxes"
+msgstr "税金検索"
+
+#. module: account
+#: model:ir.model,name:account.model_account_analytic_cost_ledger
+msgid "Account Analytic Cost Ledger"
+msgstr "アカウント分析原価元帳"
+
+#. module: account
+#: view:account.model:0
+msgid "Create entries"
+msgstr "エントリー作成"
+
+#. module: account
+#: field:account.entries.report,nbr:0
+msgid "# of Items"
+msgstr "項目数"
+
+#. module: account
+#: field:account.automatic.reconcile,max_amount:0
+msgid "Maximum write-off amount"
+msgstr "最大償却額"
+
+#. module: account
+#: view:account.invoice:0
+msgid "Compute Taxes"
+msgstr "税金計算"
+
+#. module: account
+#: field:account.chart.template,code_digits:0
+#: field:wizard.multi.charts.accounts,code_digits:0
+msgid "# of Digits"
+msgstr "桁数"
+
+#. module: account
+#: field:account.journal,entry_posted:0
+msgid "Skip 'Draft' State for Manual Entries"
+msgstr "手動入力のため、ドラフト状態をスキップして下さい。"
+
+#. module: account
+#: view:account.invoice.report:0
+#: field:account.invoice.report,price_total:0
+msgid "Total Without Tax"
+msgstr "税抜き合計"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_move_journal_line
+msgid ""
+"A journal entry consists of several journal items, each of which is either a "
+"debit or a credit transaction. OpenERP automatically creates one journal "
+"entry per accounting document: invoice, refund, supplier payment, bank "
+"statements, etc."
+msgstr ""
+"仕訳帳エントリーは幾つかの仕訳帳項目を含んでいます。それぞれは借方あるいは貸方取引の何れかです。OpenERPは会計ドキュメントごとにひとつの仕訳帳エント"
+"リーを自動的に作成します:請求書、返金、仕入先支払い、銀行明細など"
+
+#. module: account
+#: view:account.entries.report:0
+msgid "# of Entries "
+msgstr "エントリー数 "
+
+#. module: account
+#: help:account.fiscal.position,active:0
+msgid ""
+"By unchecking the active field, you may hide a fiscal position without "
+"deleting it."
+msgstr "アクティブ項目のチェックを外すことで、それを消すことなく会計ポジションを隠すことができます。"
+
+#. module: account
+#: model:ir.model,name:account.model_temp_range
+msgid "A Temporary table used for Dashboard view"
+msgstr "ダッシュボードビューのために使われる一時的なテーブル"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_invoice_tree4
+#: model:ir.ui.menu,name:account.menu_action_invoice_tree4
+msgid "Supplier Refunds"
+msgstr "仕入先返金"
+
+#. module: account
+#: selection:account.account,type:0
+#: selection:account.account.template,type:0
+#: selection:account.bank.statement,state:0
+#: selection:account.entries.report,type:0
+#: view:account.fiscalyear:0
+#: selection:account.fiscalyear,state:0
+#: selection:account.period,state:0
+msgid "Closed"
+msgstr "閉じた"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_finance_recurrent_entries
+msgid "Recurring Entries"
+msgstr "定期エントリー"
+
+#. module: account
+#: model:ir.model,name:account.model_account_fiscal_position_template
+msgid "Template for Fiscal Position"
+msgstr "会計ポジションテンプレート"
+
+#. module: account
+#: field:account.automatic.reconcile,reconciled:0
+msgid "Reconciled transactions"
+msgstr "消し込み済取引"
+
+#. module: account
+#: field:account.journal.view,columns_id:0
+msgid "Columns"
+msgstr "カラム"
+
+#. module: account
+#: report:account.overdue:0
+msgid "."
+msgstr ""
+
+#. module: account
+#: view:account.analytic.cost.ledger.journal.report:0
+msgid "and Journals"
+msgstr "と仕訳帳"
+
+#. module: account
+#: field:account.journal,groups_id:0
+msgid "Groups"
+msgstr "グループ"
+
+#. module: account
+#: field:account.invoice,amount_untaxed:0
+#: field:report.invoice.created,amount_untaxed:0
+msgid "Untaxed"
+msgstr "非課税"
+
+#. module: account
+#: view:account.partner.reconcile.process:0
+msgid "Go to next partner"
+msgstr "次のパートナへ"
+
+#. module: account
+#: view:account.bank.statement:0
+msgid "Search Bank Statements"
+msgstr "銀行明細の検索"
+
+#. module: account
+#: view:account.move.line:0
+msgid "Unposted Journal Items"
+msgstr "未転記仕訳帳項目"
+
+#. module: account
+#: view:account.chart.template:0
+#: field:account.chart.template,property_account_payable:0
+msgid "Payable Account"
+msgstr "買掛金"
+
+#. module: account
+#: field:account.tax,account_paid_id:0
+#: field:account.tax.template,account_paid_id:0
+msgid "Refund Tax Account"
+msgstr "返金税金アカウント"
+
+#. module: account
+#: view:account.bank.statement:0
+#: field:account.bank.statement,line_ids:0
+msgid "Statement lines"
+msgstr "取引明細書行"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_bank_statement_tree
+msgid ""
+"A bank statement is a summary of all financial transactions occurring over a "
+"given period of time on a deposit account, a credit card or any other type "
+"of financial account. The starting balance will be proposed automatically "
+"and the closing balance is to be found on your statement. When you are in "
+"the Payment column of a line, you can press F1 to open the reconciliation "
+"form."
+msgstr ""
+"銀行取引明細書は預金口座、クレジットカードまたは金融口座の任意の口座タイプ上で、所定の期間に発生した全ての金融取引を要約したものです。期首残高は自動的に繰"
+"り越され、期末残高は取引明細書に示されています。行の支払カラムで F1 を押すと消し込みフォームが開きます。"
+
+#. module: account
+#: report:account.analytic.account.cost_ledger:0
+msgid "Date/Code"
+msgstr "日付 / コード"
+
+#. module: account
+#: field:account.analytic.line,general_account_id:0
+#: view:analytic.entries.report:0
+#: field:analytic.entries.report,general_account_id:0
+msgid "General Account"
+msgstr "一般アカウント"
+
+#. module: account
+#: field:res.partner,debit_limit:0
+msgid "Payable Limit"
+msgstr "買掛金上限"
+
+#. module: account
+#: report:account.invoice:0
+#: view:account.invoice:0
+#: view:account.invoice.report:0
+#: field:account.move.line,invoice:0
+#: model:ir.model,name:account.model_account_invoice
+#: model:res.request.link,name:account.req_link_invoice
+msgid "Invoice"
+msgstr "請求書"
+
+#. module: account
+#: model:process.node,note:account.process_node_analytic0
+#: model:process.node,note:account.process_node_analyticcost0
+msgid "Analytic costs to invoice"
+msgstr "請求書のための分析コスト"
+
+#. module: account
+#: view:ir.sequence:0
+msgid "Fiscal Year Sequence"
+msgstr "会計年度の順序"
+
+#. module: account
+#: field:wizard.multi.charts.accounts,seq_journal:0
+msgid "Separated Journal Sequences"
+msgstr "切り離された仕訳帳順序"
+
+#. module: account
+#: view:account.invoice:0
+msgid "Responsible"
+msgstr "責任担当"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_report_account_type_sales_tree_all
+msgid "Sales by Account Type"
+msgstr "アカウントタイプ別売上"
+
+#. module: account
+#: view:account.invoice.refund:0
+msgid ""
+"Cancel Invoice: Creates the refund invoice, validate and reconcile it to "
+"cancel the current invoice."
+msgstr "請求書のキャンセル:現在の請求書をキャンセルするために返金請求書を作成、検証、消し込みして下さい。"
+
+#. module: account
+#: model:ir.ui.menu,name:account.periodical_processing_invoicing
+msgid "Invoicing"
+msgstr "請求"
+
+#. module: account
+#: code:addons/account/report/account_partner_balance.py:115
+#, python-format
+msgid "Unknown Partner"
+msgstr "未知のパートナ"
+
+#. module: account
+#: field:account.tax.code,sum:0
+msgid "Year Sum"
+msgstr "年間合計"
+
+#. module: account
+#: code:addons/account/account_invoice.py:1429
+#, python-format
+msgid ""
+"You selected an Unit of Measure which is not compatible with the product."
+msgstr "あなたが選択した単位は製品との互換性がありません。"
+
+#. module: account
+#: view:account.change.currency:0
+msgid "This wizard will change the currency of the invoice"
+msgstr "このウィザードは請求書の通貨を変更します。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_chart
+msgid ""
+"Display your company chart of accounts per fiscal year and filter by period. "
+"Have a complete tree view of all journal items per account code by clicking "
+"on an account."
+msgstr ""
+"会計年度ごとの会社の勘定科目表を表示し、期間によりフィルタを行います。アカウントをクリックすることによって、アカウントコードごとの全ての仕訳帳項目の完全な"
+"ツリービューを持ちます。"
+
+#. module: account
+#: view:account.analytic.account:0
+msgid "Pending Accounts"
+msgstr "保留中のアカウント"
+
+#. module: account
+#: view:account.tax.template:0
+msgid "Tax Declaration"
+msgstr "税金申告"
+
+#. module: account
+#: help:account.journal.period,active:0
+msgid ""
+"If the active field is set to False, it will allow you to hide the journal "
+"period without removing it."
+msgstr "アクティブ項目をFalseにセットした場合、それを削除することなく仕訳帳期間を非表示にすることができます。"
+
+#. module: account
+#: view:res.partner:0
+msgid "Supplier Debit"
+msgstr "仕入先債務"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.act_account_partner_account_move_all
+msgid "Receivables & Payables"
+msgstr "売掛金と買掛金"
+
+#. module: account
+#: model:ir.model,name:account.model_account_common_journal_report
+msgid "Account Common Journal Report"
+msgstr "アカウント共通の仕訳帳レポート"
+
+#. module: account
+#: selection:account.partner.balance,display_partner:0
+msgid "All Partners"
+msgstr "全パートナ"
+
+#. module: account
+#: view:account.analytic.chart:0
+msgid "Analytic Account Charts"
+msgstr "分析会計表"
+
+#. module: account
+#: view:account.analytic.line:0
+#: view:analytic.entries.report:0
+msgid "My Entries"
+msgstr "私のエントリー"
+
+#. module: account
+#: report:account.overdue:0
+msgid "Customer Ref:"
+msgstr "顧客の参照:"
+
+#. module: account
+#: code:addons/account/account_cash_statement.py:292
+#, python-format
+msgid "User %s does not have rights to access %s journal !"
+msgstr "ユーザ %s は仕訳帳 %s にアクセスする権限を持っていません。"
+
+#. module: account
+#: help:account.period,special:0
+msgid "These periods can overlap."
+msgstr "これらの期間は重なることができます。"
+
+#. module: account
+#: model:process.node,name:account.process_node_draftstatement0
+msgid "Draft statement"
+msgstr "ドラフト取引明細書"
+
+#. module: account
+#: view:account.tax:0
+msgid "Tax Declaration: Credit Notes"
+msgstr "税金申告:クレジットノート"
+
+#. module: account
+#: field:account.move.line.reconcile,credit:0
+msgid "Credit amount"
+msgstr "貸方金額"
+
+#. module: account
+#: code:addons/account/account.py:407
+#: code:addons/account/account.py:412
+#: code:addons/account/account.py:429
+#, python-format
+msgid "Error!"
+msgstr "エラー"
+
+#. module: account
+#: sql_constraint:account.move.line:0
+msgid "Wrong credit or debit value in accounting entry !"
+msgstr "会計エントリーにおいて貸方または借方の値が誤っています。"
+
+#. module: account
+#: view:account.invoice.report:0
+#: model:ir.actions.act_window,name:account.action_account_invoice_report_all
+#: model:ir.ui.menu,name:account.menu_action_account_invoice_report_all
+msgid "Invoices Analysis"
+msgstr "請求書分析"
+
+#. module: account
+#: model:ir.model,name:account.model_account_period_close
+msgid "period close"
+msgstr "期間終了"
+
+#. module: account
+#: view:account.installer:0
+msgid "Configure Fiscal Year"
+msgstr "会計年度の設定"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_project_account_analytic_line_form
+msgid "Entries By Line"
+msgstr "行によるエントリー"
+
+#. module: account
+#: field:account.vat.declaration,based_on:0
+msgid "Based on"
+msgstr "基準"
+
+#. module: account
+#: field:account.invoice,move_id:0
+#: field:account.invoice,move_name:0
+msgid "Journal Entry"
+msgstr "仕訳帳入力"
+
+#. module: account
+#: view:account.tax:0
+msgid "Tax Declaration: Invoices"
+msgstr "税金申請:請求書"
+
+#. module: account
+#: field:account.cashbox.line,subtotal:0
+msgid "Sub Total"
+msgstr "小計"
+
+#. module: account
+#: view:account.account:0
+#: view:account.treasury.report:0
+#: model:ir.actions.act_window,name:account.action_account_treasury_report_all
+#: model:ir.model,name:account.model_account_treasury_report
+#: model:ir.ui.menu,name:account.menu_action_account_treasury_report_all
+msgid "Treasury Analysis"
+msgstr "財務分析"
+
+#. module: account
+#: constraint:res.company:0
+msgid "Error! You can not create recursive companies."
+msgstr "エラー。再帰的な関係となる会社を作ることはできません。"
+
+#. module: account
+#: model:ir.actions.report.xml,name:account.account_journal_sale_purchase
+msgid "Sale/Purchase Journal"
+msgstr "売上 / 仕入仕訳帳"
+
+#. module: account
+#: view:account.analytic.account:0
+msgid "Analytic account"
+msgstr "分析アカウント"
+
+#. module: account
+#: code:addons/account/account_bank_statement.py:339
+#, python-format
+msgid "Please verify that an account is defined in the journal."
+msgstr "アカウントが仕訳帳に定義されていることを確認して下さい。"
+
+#. module: account
+#: selection:account.entries.report,move_line_state:0
+#: selection:account.move.line,state:0
+msgid "Valid"
+msgstr "有効"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_print_journal
+#: model:ir.model,name:account.model_account_print_journal
+msgid "Account Print Journal"
+msgstr "アカウント印刷ジャーナル"
+
+#. module: account
+#: model:ir.model,name:account.model_product_category
+msgid "Product Category"
+msgstr "製品分類"
+
+#. module: account
+#: selection:account.account.type,report_type:0
+msgid "/"
+msgstr ""
+
+#. module: account
+#: help:res.company,property_reserve_and_surplus_account:0
+msgid ""
+"This account is used for transferring Profit/Loss (If It is Profit: Amount "
+"will be added, Loss : Amount will be deducted.), as calculated in Profit & "
+"Loss Report"
+msgstr "このアカウントは損益計算書で計算されたように、損益(利益の場合金額は加えされ、損失の場合金額は減じられます)を移すために使われます。"
+
+#. module: account
+#: model:process.node,note:account.process_node_reconciliation0
+#: model:process.node,note:account.process_node_supplierreconciliation0
+msgid "Comparison between accounting and payment entries"
+msgstr "会計と支払いエントリー間の比較"
+
+#. module: account
+#: view:account.tax:0
+#: view:account.tax.template:0
+msgid "Tax Definition"
+msgstr "税金の定義"
+
+#. module: account
+#: help:wizard.multi.charts.accounts,seq_journal:0
+msgid ""
+"Check this box if you want to use a different sequence for each created "
+"journal. Otherwise, all will use the same sequence."
+msgstr ""
+"それぞれに作成された仕訳帳のために異なった順序を使いたい場合はこのボックスをチェックして下さい。それ以外の場合は全て同じ順序を使用します。"
+
+#. module: account
+#: help:account.partner.ledger,amount_currency:0
+#: help:account.report.general.ledger,amount_currency:0
+msgid ""
+"It adds the currency column if the currency is different then the company "
+"currency"
+msgstr "会社の通貨と異なる通貨の場合は、通貨カラムを追加します。"
+
+#. module: account
+#: help:account.journal,allow_date:0
+msgid ""
+"If set to True then do not accept the entry if the entry date is not into "
+"the period dates"
+msgstr "Trueにセットした場合、エントリー日付が期間内にない場合には、エントリーは受付られません。"
+
+#. module: account
+#: code:addons/account/account_invoice.py:73
+#, python-format
+msgid "You must define an analytic journal of type '%s'!"
+msgstr "分析仕訳帳のタイプ %s を定義しなければなりません。"
+
+#. module: account
+#: field:account.installer,config_logo:0
+#: field:wizard.multi.charts.accounts,config_logo:0
+msgid "Image"
+msgstr "画像"
+
+#. module: account
+#: constraint:account.move.line:0
+msgid ""
+"The selected account of your Journal Entry forces to provide a secondary "
+"currency. You should remove the secondary currency on the account or select "
+"a multi-currency view on the journal."
+msgstr "選択した仕訳のアカウントは第2の通貨の入力を要求しています。アカウントの第2通貨を削除するか、仕訳で多通貨ビューを選択して下さい。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_financial_report_tree
+msgid "Makes a generic system to draw financial reports easily."
+msgstr "財務レポートを簡単に作成するために一般的なシステムを作ります。"
+
+#. module: account
+#: view:account.invoice:0
+#: view:report.invoice.created:0
+msgid "Untaxed Amount"
+msgstr "非課税金額"
+
+#. module: account
+#: help:account.tax,active:0
+msgid ""
+"If the active field is set to False, it will allow you to hide the tax "
+"without removing it."
+msgstr "アクティブ項目にFalseが設定されている場合、それを削除することなく税金を非表示にすることができます。"
+
+#. module: account
+#: view:account.analytic.line:0
+msgid "Analytic Journal Items related to a sale journal."
+msgstr "売上仕訳帳に関連した分析仕訳帳項目"
+
+#. module: account
+#: selection:account.financial.report,style_overwrite:0
+msgid "Italic Text (smaller)"
+msgstr "斜体テキスト(小)"
+
+#. module: account
+#: view:account.bank.statement:0
+#: view:account.invoice:0
+#: selection:account.invoice,state:0
+#: view:account.invoice.report:0
+#: selection:account.invoice.report,state:0
+#: selection:account.journal.period,state:0
+#: view:account.subscription:0
+#: selection:account.subscription,state:0
+#: selection:report.invoice.created,state:0
+msgid "Draft"
+msgstr "ドラフト"
+
+#. module: account
+#: report:account.journal.period.print.sale.purchase:0
+msgid "VAT Declaration"
+msgstr "消費税申告"
+
+#. module: account
+#: field:account.move.reconcile,line_partial_ids:0
+msgid "Partial Entry lines"
+msgstr "部分エントリー行"
+
+#. module: account
+#: view:account.fiscalyear:0
+#: field:account.treasury.report,fiscalyear_id:0
+msgid "Fiscalyear"
+msgstr "会計年度"
+
+#. module: account
+#: view:account.journal.select:0
+#: view:project.account.analytic.line:0
+msgid "Open Entries"
+msgstr "エントリーを開く"
+
+#. module: account
+#: field:account.automatic.reconcile,account_ids:0
+msgid "Accounts to Reconcile"
+msgstr "消し込み用のアカウント"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_filestatement0
+msgid "Import of the statement in the system from an electronic file"
+msgstr "電子ファイルからシステムの中に取引明細書のインポート"
+
+#. module: account
+#: model:process.node,name:account.process_node_importinvoice0
+msgid "Import from invoice"
+msgstr "請求書からインポート"
+
+#. module: account
+#: selection:account.entries.report,month:0
+#: selection:account.invoice.report,month:0
+#: selection:analytic.entries.report,month:0
+#: selection:report.account.sales,month:0
+#: selection:report.account_type.sales,month:0
+msgid "January"
+msgstr "1月"
+
+#. module: account
+#: view:account.journal:0
+msgid "Validations"
+msgstr "検証"
+
+#. module: account
+#: view:account.entries.report:0
+msgid "This F.Year"
+msgstr "今会計年度"
+
+#. module: account
+#: view:account.tax.chart:0
+msgid "Account tax charts"
+msgstr "アカウント税金チャート"
+
+#. module: account
+#: constraint:account.period:0
+msgid ""
+"Invalid period ! Some periods overlap or the date period is not in the scope "
+"of the fiscal year. "
+msgstr "期間が無効です。幾つかの期間が重なっているか、会計年度の範囲の中にない期間です。 "
+
+#. module: account
+#: code:addons/account/account_bank_statement.py:357
+#, python-format
+msgid "You have to assign an analytic journal on the '%s' journal!"
+msgstr "%s 仕訳帳に分析仕訳帳を割り当てる必要があります。"
+
+#. module: account
+#: selection:account.invoice,state:0
+#: view:account.invoice.report:0
+#: selection:account.invoice.report,state:0
+#: selection:report.invoice.created,state:0
+msgid "Pro-forma"
+msgstr "プロフォーマ"
+
+#. module: account
+#: code:addons/account/account.py:1461
+#, python-format
+msgid ""
+"There is no default default debit account defined \n"
+"on journal \"%s\""
+msgstr "仕訳帳 %s にはデフォルト売掛金が定義されていません。"
+
+#. module: account
+#: help:account.account.template,type:0
+#: help:account.entries.report,type:0
+msgid ""
+"This type is used to differentiate types with special effects in OpenERP: "
+"view can not have entries, consolidation are accounts that can have children "
+"accounts for multi-company consolidations, payable/receivable are for "
+"partners accounts (for debit/credit computations), closed for depreciated "
+"accounts."
+msgstr ""
+"このタイプはOpenERPの特殊効果とタイプを区別するために使われます:ビューはエントリーを持つことはできません。合併は複数会社の合併のために子アカウント"
+"を持つことができるアカウントです。売掛金 / 買掛金はパートナのためのアカウント(借方 / "
+"貸方計算のため)です。閉鎖は減価償却アカウントのためのものです。"
+
+#. module: account
+#: view:account.chart.template:0
+msgid "Search Chart of Account Templates"
+msgstr "勘定科目表テンプレートの検索"
+
+#. module: account
+#: code:addons/account/account_move_line.py:1277
+#, python-format
+msgid ""
+"Can not create an automatic sequence for this piece!\n"
+"Put a sequence in the journal definition for automatic numbering or create a "
+"sequence manually for this piece."
+msgstr ""
+"この部分には自動的な順序を作成することはできません。\n"
+"自動ナンバリングで仕訳帳を定義して順序を得るか、あるいは手動で順序を作成して下さい。"
+
+#. module: account
+#: code:addons/account/account.py:787
+#, python-format
+msgid ""
+"You can not modify the company of this journal as its related record exist "
+"in journal items"
+msgstr "仕訳帳項目に存在する関連したレコードであるため、その仕訳帳項目の会社を変更できません。"
+
+#. module: account
+#: report:account.invoice:0
+msgid "Customer Code"
+msgstr "顧客コード"
+
+#. module: account
+#: view:account.installer:0
+msgid ""
+"The default Chart of Accounts is matching your country selection. If no "
+"certified Chart of Accounts exists for your specified country, a generic one "
+"can be installed and will be selected by default."
+msgstr ""
+"このデフォルト勘定科目表はあなたの国の選択と一致しています。あなたが指定した国に公認の勘定科目表が存在しない場合、一般的なものをインストールすることができ"
+"、デフォルトでそれが選択されます。"
+
+#. module: account
+#: view:account.account.type:0
+#: field:account.account.type,note:0
+#: view:account.analytic.account:0
+#: report:account.invoice:0
+#: field:account.invoice,name:0
+#: field:account.invoice.line,name:0
+#: field:account.invoice.refund,description:0
+#: report:account.overdue:0
+#: field:account.payment.term,note:0
+#: view:account.tax.code:0
+#: field:account.tax.code,info:0
+#: view:account.tax.code.template:0
+#: field:account.tax.code.template,info:0
+#: field:analytic.entries.report,name:0
+#: field:report.invoice.created,name:0
+msgid "Description"
+msgstr "説明"
+
+#. module: account
+#: code:addons/account/account.py:3119
+#, python-format
+msgid "ECNJ"
+msgstr ""
+
+#. module: account
+#: view:account.subscription:0
+#: selection:account.subscription,state:0
+msgid "Running"
+msgstr "動作中"
+
+#. module: account
+#: view:account.chart.template:0
+#: field:product.category,property_account_income_categ:0
+#: field:product.template,property_account_income:0
+msgid "Income Account"
+msgstr "損益勘定"
+
+#. module: account
+#: code:addons/account/account_invoice.py:370
+#, python-format
+msgid "There is no Accounting Journal of type Sale/Purchase defined!"
+msgstr "会計仕訳帳売上 / 仕入タイプの定義がないことはありません。"
+
+#. module: account
+#: constraint:res.partner.bank:0
+msgid "The RIB and/or IBAN is not valid"
+msgstr "銀行情報のRIBまたはIBANが正しくありません。"
+
+#. module: account
+#: view:product.category:0
+msgid "Accounting Properties"
+msgstr "会計属性"
+
+#. module: account
+#: report:account.general.ledger_landscape:0
+#: report:account.journal.period.print:0
+#: report:account.journal.period.print.sale.purchase:0
+msgid "Entries Sorted By"
+msgstr "エントリーのソート順"
+
+#. module: account
+#: field:account.change.currency,currency_id:0
+msgid "Change to"
+msgstr "変更"
+
+#. module: account
+#: view:account.entries.report:0
+msgid "# of Products Qty "
+msgstr "製品数量 "
+
+#. module: account
+#: model:ir.model,name:account.model_product_template
+msgid "Product Template"
+msgstr "製品テンプレート"
+
+#. module: account
+#: report:account.account.balance:0
+#: field:account.aged.trial.balance,fiscalyear_id:0
+#: field:account.balance.report,fiscalyear_id:0
+#: report:account.central.journal:0
+#: field:account.central.journal,fiscalyear_id:0
+#: field:account.common.account.report,fiscalyear_id:0
+#: field:account.common.journal.report,fiscalyear_id:0
+#: field:account.common.partner.report,fiscalyear_id:0
+#: field:account.common.report,fiscalyear_id:0
+#: view:account.entries.report:0
+#: field:account.entries.report,fiscalyear_id:0
+#: field:account.fiscalyear,name:0
+#: report:account.general.journal:0
+#: field:account.general.journal,fiscalyear_id:0
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: field:account.journal.period,fiscalyear_id:0
+#: report:account.journal.period.print:0
+#: report:account.journal.period.print.sale.purchase:0
+#: report:account.partner.balance:0
+#: field:account.partner.balance,fiscalyear_id:0
+#: field:account.partner.ledger,fiscalyear_id:0
+#: field:account.period,fiscalyear_id:0
+#: field:account.print.journal,fiscalyear_id:0
+#: field:account.report.general.ledger,fiscalyear_id:0
+#: field:account.sequence.fiscalyear,fiscalyear_id:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+#: report:account.vat.declaration:0
+#: field:account.vat.declaration,fiscalyear_id:0
+#: field:accounting.report,fiscalyear_id:0
+#: field:accounting.report,fiscalyear_id_cmp:0
+#: model:ir.model,name:account.model_account_fiscalyear
+msgid "Fiscal Year"
+msgstr "会計年度"
+
+#. module: account
+#: help:account.aged.trial.balance,fiscalyear_id:0
+#: help:account.balance.report,fiscalyear_id:0
+#: help:account.central.journal,fiscalyear_id:0
+#: help:account.common.account.report,fiscalyear_id:0
+#: help:account.common.journal.report,fiscalyear_id:0
+#: help:account.common.partner.report,fiscalyear_id:0
+#: help:account.common.report,fiscalyear_id:0
+#: help:account.general.journal,fiscalyear_id:0
+#: help:account.partner.balance,fiscalyear_id:0
+#: help:account.partner.ledger,fiscalyear_id:0
+#: help:account.print.journal,fiscalyear_id:0
+#: help:account.report.general.ledger,fiscalyear_id:0
+#: help:account.vat.declaration,fiscalyear_id:0
+#: help:accounting.report,fiscalyear_id:0
+#: help:accounting.report,fiscalyear_id_cmp:0
+msgid "Keep empty for all open fiscal year"
+msgstr "全ての開いている会計年度を空に保ちます。"
+
+#. module: account
+#: field:account.invoice.report,account_line_id:0
+msgid "Account Line"
+msgstr "アカウント行"
+
+#. module: account
+#: code:addons/account/account.py:1468
+#, python-format
+msgid ""
+"There is no default default credit account defined \n"
+"on journal \"%s\""
+msgstr "仕訳帳 %s にはデフォルト買掛金が定義されていません。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_review_financial_journals_installer
+msgid ""
+"Setup your accounting journals. For bank accounts, it's better to use the "
+"'Setup Your Bank Accounts' tool that will automatically create the accounts "
+"and journals for you."
+msgstr ""
+"会計仕訳帳を設定します。銀行口座のためには\"銀行口座のセットアップ\"ツールを使うことをお勧めします。これはアカウントと仕訳帳を自動的に作成します。"
+
+#. module: account
+#: model:ir.model,name:account.model_account_move
+msgid "Account Entry"
+msgstr "アカウントエントリー"
+
+#. module: account
+#: constraint:res.partner:0
+msgid "Error ! You cannot create recursive associated members."
+msgstr "エラー:重複した会員を作ることはできません。"
+
+#. module: account
+#: field:account.sequence.fiscalyear,sequence_main_id:0
+msgid "Main Sequence"
+msgstr "主順序"
+
+#. module: account
+#: code:addons/account/account_bank_statement.py:402
+#, python-format
+msgid ""
+"In order to delete a bank statement, you must first cancel it to delete "
+"related journal items."
+msgstr "銀行口座明細書を削除するには、関連する仕訳帳項目を削除するために最初にそれをキャンセルする必要があります。"
+
+#. module: account
+#: field:account.invoice,payment_term:0
+#: field:account.invoice.report,payment_term:0
+#: view:account.payment.term:0
+#: field:account.payment.term,name:0
+#: view:account.payment.term.line:0
+#: field:account.payment.term.line,payment_id:0
+#: model:ir.model,name:account.model_account_payment_term
+#: field:res.partner,property_payment_term:0
+msgid "Payment Term"
+msgstr "支払条件"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_fiscal_position_form
+#: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form
+msgid "Fiscal Positions"
+msgstr "会計ポジション"
+
+#. module: account
+#: constraint:account.account:0
+#: constraint:account.tax.code:0
+msgid "Error ! You can not create recursive accounts."
+msgstr "エラー。再帰的な関係となるアカウントの作成はできません。"
+
+#. module: account
+#: field:account.period.close,sure:0
+msgid "Check this box"
+msgstr "このボックスをチェック"
+
+#. module: account
+#: view:account.common.report:0
+msgid "Filters"
+msgstr "フィルタ"
+
+#. module: account
+#: view:account.bank.statement:0
+#: selection:account.bank.statement,state:0
+#: view:account.fiscalyear:0
+#: selection:account.fiscalyear,state:0
+#: selection:account.invoice,state:0
+#: selection:account.invoice.report,state:0
+#: view:account.open.closed.fiscalyear:0
+#: selection:account.period,state:0
+#: code:addons/account/wizard/account_move_journal.py:106
+#: selection:report.invoice.created,state:0
+#, python-format
+msgid "Open"
+msgstr "開く"
+
+#. module: account
+#: model:process.node,note:account.process_node_draftinvoices0
+#: model:process.node,note:account.process_node_supplierdraftinvoices0
+msgid "Draft state of an invoice"
+msgstr "請求書のドラフト状態"
+
+#. module: account
+#: view:account.partner.reconcile.process:0
+msgid "Partner Reconciliation"
+msgstr "パートナ消し込み"
+
+#. module: account
+#: field:account.tax,tax_code_id:0
+#: view:account.tax.code:0
+msgid "Account Tax Code"
+msgstr "税金コードアカウント"
+
+#. module: account
+#: code:addons/account/account_invoice.py:572
+#, python-format
+msgid ""
+"Can't find any account journal of %s type for this company.\n"
+"\n"
+"You can create one in the menu: \n"
+"Configuration\\Financial Accounting\\Accounts\\Journals."
+msgstr ""
+"会社のための %s タイプの仕訳帳アカウントを見つけることができません。\n"
+"\n"
+"メニューの中にそれを作成することができます: \n"
+"設定 \\ 財務会計 \\ アカウント \\ 仕訳帳"
+
+#. module: account
+#: model:account.payment.term,name:account.account_payment_term_advance
+#: model:account.payment.term,note:account.account_payment_term_advance
+msgid "30% Advance End 30 Days"
+msgstr "30%の前払い30日期限"
+
+#. module: account
+#: view:account.entries.report:0
+msgid "Unreconciled entries"
+msgstr "未消し込みのエントリー"
+
+#. module: account
+#: field:account.invoice.tax,base_code_id:0
+#: field:account.tax.template,base_code_id:0
+msgid "Base Code"
+msgstr "基本コード"
+
+#. module: account
+#: help:account.invoice.tax,sequence:0
+msgid "Gives the sequence order when displaying a list of invoice tax."
+msgstr "請求書の税金のリストを表示する時に、並べ順を指定して下さい。"
+
+#. module: account
+#: field:account.tax,base_sign:0
+#: field:account.tax,ref_base_sign:0
+#: field:account.tax.template,base_sign:0
+#: field:account.tax.template,ref_base_sign:0
+msgid "Base Code Sign"
+msgstr "基本コードの記号"
+
+#. module: account
+#: view:account.vat.declaration:0
+msgid ""
+"This menu prints a VAT declaration based on invoices or payments. Select one "
+"or several periods of the fiscal year. The information required for a tax "
+"declaration is automatically generated by OpenERP from invoices (or "
+"payments, in some countries). This data is updated in real time. That’s very "
+"useful because it enables you to preview at any time the tax that you owe at "
+"the start and end of the month or quarter."
+msgstr ""
+"このメニューは請求書または支払いに基づく消費税申告を印刷します。ひとつあるいは複数の会計年度を選択して下さい。税金申請のために要求される情報は請求書(また"
+"は支払い、幾つかの国の)からOpenERPによって自動的に生成されます。このデータはリアルタイムで更新されます。月あるいは四半期の開始と終了において、支払"
+"うべき税金をいつでもレビューできるため非常に便利です。"
+
+#. module: account
+#: selection:account.move.line,centralisation:0
+msgid "Debit Centralisation"
+msgstr "借方の一元化"
+
+#. module: account
+#: view:account.invoice.confirm:0
+#: model:ir.actions.act_window,name:account.action_account_invoice_confirm
+msgid "Confirm Draft Invoices"
+msgstr "ドラフト請求書確認"
+
+#. module: account
+#: field:account.entries.report,day:0
+#: view:account.invoice.report:0
+#: field:account.invoice.report,day:0
+#: view:analytic.entries.report:0
+#: field:analytic.entries.report,day:0
+msgid "Day"
+msgstr "日"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.act_account_renew_view
+msgid "Accounts to Renew"
+msgstr "アカウント更新"
+
+#. module: account
+#: model:ir.model,name:account.model_account_model_line
+msgid "Account Model Entries"
+msgstr "アカウントモデルエントリー"
+
+#. module: account
+#: code:addons/account/account.py:3117
+#, python-format
+msgid "EXJ"
+msgstr ""
+
+#. module: account
+#: field:product.template,supplier_taxes_id:0
+msgid "Supplier Taxes"
+msgstr "仕入先税金"
+
+#. module: account
+#: view:account.entries.report:0
+msgid "entries"
+msgstr "エントリー"
+
+#. module: account
+#: help:account.invoice,date_due:0
+#: help:account.invoice,payment_term:0
+msgid ""
+"If you use payment terms, the due date will be computed automatically at the "
+"generation of accounting entries. If you keep the payment term and the due "
+"date empty, it means direct payment. The payment term may compute several "
+"due dates, for example 50% now, 50% in one month."
+msgstr ""
+"支払条件を使用する場合、その期日は会計エントリーの世代において自動的に計算されます。支払条件を維持し、かつ期日が空であれば、それは直接支払いを意味します。"
+"支払条件は幾つかの期日が計算されるかもしれません。例えば、50%を現在、50%を1ヶ月以内といったように。"
+
+#. module: account
+#: view:account.analytic.cost.ledger.journal.report:0
+msgid "Select period"
+msgstr "期間選択"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_account_pp_statements
+msgid "Statements"
+msgstr "取引明細書"
+
+#. module: account
+#: report:account.analytic.account.journal:0
+msgid "Move Name"
+msgstr "名前の移動"
+
+#. module: account
+#: help:res.partner,property_account_position:0
+msgid ""
+"The fiscal position will determine taxes and the accounts used for the "
+"partner."
+msgstr "会計ポジションは税金やパートナのために使われるアカウントを決定します。"
+
+#. module: account
+#: view:account.print.journal:0
+msgid ""
+"This report gives you an overview of the situation of a specific journal"
+msgstr "このレポートは特定の仕訳帳の状況の概要を示しています。"
+
+#. module: account
+#: model:ir.model,name:account.model_account_move_line_reconcile_writeoff
+msgid "Account move line reconcile (writeoff)"
+msgstr "アカウント移動行の消し込み(償却)"
+
+#. module: account
+#: model:account.account.type,name:account.account_type_tax
+#: report:account.invoice:0
+#: field:account.invoice,amount_tax:0
+#: field:account.move.line,account_tax_id:0
+msgid "Tax"
+msgstr "税金"
+
+#. module: account
+#: view:account.analytic.account:0
+#: field:account.bank.statement.line,analytic_account_id:0
+#: field:account.entries.report,analytic_account_id:0
+#: field:account.invoice.line,account_analytic_id:0
+#: field:account.model.line,analytic_account_id:0
+#: field:account.move.line,analytic_account_id:0
+#: field:account.move.line.reconcile.writeoff,analytic_id:0
+msgid "Analytic Account"
+msgstr "分析アカウント"
+
+#. module: account
+#: view:account.account:0
+#: field:account.financial.report,account_ids:0
+#: selection:account.financial.report,type:0
+#: view:account.journal:0
+#: model:ir.actions.act_window,name:account.action_account_form
+#: model:ir.ui.menu,name:account.account_account_menu
+#: model:ir.ui.menu,name:account.account_template_accounts
+#: model:ir.ui.menu,name:account.menu_action_account_form
+#: model:ir.ui.menu,name:account.menu_analytic
+msgid "Accounts"
+msgstr "アカウント"
+
+#. module: account
+#: code:addons/account/account_invoice.py:369
+#, python-format
+msgid "Configuration Error!"
+msgstr "設定エラー"
+
+#. module: account
+#: field:account.invoice.report,price_average:0
+msgid "Average Price"
+msgstr "平均価格"
+
+#. module: account
+#: report:account.overdue:0
+msgid "Date:"
+msgstr "日付:"
+
+#. module: account
+#: report:account.journal.period.print:0
+#: report:account.journal.period.print.sale.purchase:0
+msgid "Label"
+msgstr "ラベル"
+
+#. module: account
+#: view:account.tax:0
+#: view:res.partner.bank:0
+msgid "Accounting Information"
+msgstr "会計情報"
+
+#. module: account
+#: view:account.tax:0
+#: view:account.tax.template:0
+msgid "Special Computation"
+msgstr "特殊な計算"
+
+#. module: account
+#: view:account.move.bank.reconcile:0
+#: model:ir.actions.act_window,name:account.action_account_bank_reconcile_tree
+msgid "Bank reconciliation"
+msgstr "銀行消し込み"
+
+#. module: account
+#: report:account.invoice:0
+msgid "Disc.(%)"
+msgstr "ディスク(%)"
+
+#. module: account
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: report:account.overdue:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+msgid "Ref"
+msgstr "参照"
+
+#. module: account
+#: help:account.move.line,tax_code_id:0
+msgid "The Account can either be a base tax code or a tax code account."
+msgstr "アカウントは基本税金コードまたは税金コードアカウントの何れかにすることができます。"
+
+#. module: account
+#: sql_constraint:account.model.line:0
+msgid "Wrong credit or debit value in model, they must be positive!"
+msgstr "モデルの中で誤った借方または貸方の値があります。それらは正値であるべきです。"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_automatic_reconcile
+msgid "Automatic Reconciliation"
+msgstr "自動消し込み"
+
+#. module: account
+#: field:account.invoice,reconciled:0
+msgid "Paid/Reconciled"
+msgstr "支払済 / 消し込み済"
+
+#. module: account
+#: field:account.tax,ref_base_code_id:0
+#: field:account.tax.template,ref_base_code_id:0
+msgid "Refund Base Code"
+msgstr "基本コードの返金"
+
+#. module: account
+#: selection:account.tax.template,applicable_type:0
+msgid "True"
+msgstr ""
+
+#. module: account
+#: view:account.bank.statement:0
+#: view:account.common.report:0
+#: view:account.move:0
+#: view:account.move.line:0
+#: view:accounting.report:0
+msgid "Dates"
+msgstr "日付"
+
+#. module: account
+#: field:account.chart.template,parent_id:0
+msgid "Parent Chart Template"
+msgstr "親チャートテンプレート"
+
+#. module: account
+#: field:account.tax,parent_id:0
+#: field:account.tax.template,parent_id:0
+msgid "Parent Tax Account"
+msgstr "親税金アカウント"
+
+#. module: account
+#: code:addons/account/wizard/account_change_currency.py:59
+#, python-format
+msgid "New currency is not configured properly !"
+msgstr "新しい通貨が適切に設定されていません。"
+
+#. module: account
+#: view:account.subscription.generate:0
+msgid ""
+"Automatically generate entries based on what has been entered in the  system "
+"before a specific date."
+msgstr "所定の日付より前にシステムに入力された内容に基づき、エントリーを自動的に生成します。"
+
+#. module: account
+#: view:account.aged.trial.balance:0
+#: model:ir.actions.act_window,name:account.action_account_aged_balance_view
+#: model:ir.ui.menu,name:account.menu_aged_trial_balance
+msgid "Aged Partner Balance"
+msgstr "パートナ残高年齢表"
+
+#. module: account
+#: model:process.transition,name:account.process_transition_entriesreconcile0
+#: model:process.transition,name:account.process_transition_supplierentriesreconcile0
+msgid "Accounting entries"
+msgstr "会計エントリー"
+
+#. module: account
+#: field:account.invoice,reference_type:0
+msgid "Communication Type"
+msgstr "通信タイプ"
+
+#. module: account
+#: field:account.invoice.line,discount:0
+msgid "Discount (%)"
+msgstr "割引(%)"
+
+#. module: account
+#: help:account.journal,entry_posted:0
+msgid ""
+"Check this box if you don't want new journal entries to pass through the "
+"'draft' state and instead goes directly to the 'posted state' without any "
+"manual validation. \n"
+"Note that journal entries that are automatically created by the system are "
+"always skipping that state."
+msgstr ""
+"新しい仕訳帳エントリーがドラフト状態を通り抜けて、代わりに手動での検証を行わず直接記帳状態に行くことを望まない場合は、このボックスをチェックして下さい。"
+"\n"
+"システムにより自動的に作成された仕訳帳エントリーはいつもこの状態をスキップすることに注意して下さい。"
+
+#. module: account
+#: model:ir.actions.server,name:account.ir_actions_server_action_wizard_multi_chart
+#: model:ir.ui.menu,name:account.menu_act_ir_actions_bleble
+msgid "New Company Financial Setting"
+msgstr "新会社の財務の設定"
+
+#. module: account
+#: view:account.installer:0
+msgid "Configure Your Chart of Accounts"
+msgstr "勘定科目表の設定"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all
+#: view:report.account.sales:0
+#: view:report.account_type.sales:0
+msgid "Sales by Account"
+msgstr "アカウント別売上"
+
+#. module: account
+#: view:account.use.model:0
+msgid "This wizard will create recurring accounting entries"
+msgstr "このウィザードは定期会計エントリーを作成します。"
+
+#. module: account
+#: code:addons/account/account.py:1321
+#, python-format
+msgid "No sequence defined on the journal !"
+msgstr "この仕訳帳には順序が定義されていません。"
+
+#. module: account
+#: code:addons/account/account.py:2268
+#: code:addons/account/account_invoice.py:688
+#: code:addons/account/account_move_line.py:173
+#, python-format
+msgid "You have to define an analytic journal on the '%s' journal!"
+msgstr "%s 仕訳帳に分析仕訳を定義しなければなりません。"
+
+#. module: account
+#: code:addons/account/account.py:407
+#, python-format
+msgid ""
+"You need an Opening journal with centralisation checked to set the initial "
+"balance!"
+msgstr "期首残高を設定するために一元的にチェック済の開始仕訳帳が必要です。"
+
+#. module: account
+#: view:account.invoice.tax:0
+#: model:ir.actions.act_window,name:account.action_tax_code_list
+#: model:ir.ui.menu,name:account.menu_action_tax_code_list
+msgid "Tax codes"
+msgstr "税金コード"
+
+#. module: account
+#: view:account.account:0
+msgid "Unrealized Gains and losses"
+msgstr "評価損益"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_account_customer
+#: model:ir.ui.menu,name:account.menu_finance_receivables
+msgid "Customers"
+msgstr "顧客"
+
+#. module: account
+#: report:account.analytic.account.cost_ledger:0
+#: report:account.analytic.account.journal:0
+#: report:account.analytic.account.quantity_cost_ledger:0
+msgid "Period to"
+msgstr "期間の終了日"
+
+#. module: account
+#: selection:account.entries.report,month:0
+#: selection:account.invoice.report,month:0
+#: selection:analytic.entries.report,month:0
+#: selection:report.account.sales,month:0
+#: selection:report.account_type.sales,month:0
+msgid "August"
+msgstr "8月"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_paymentreconcile0
+msgid "Payment entries are the second input of the reconciliation."
+msgstr "支払いエントリーは消し込みの第2の入力です。"
+
+#. module: account
+#: selection:account.entries.report,month:0
+#: selection:account.invoice.report,month:0
+#: selection:analytic.entries.report,month:0
+#: selection:report.account.sales,month:0
+#: selection:report.account_type.sales,month:0
+msgid "October"
+msgstr "10月"
+
+#. module: account
+#: help:account.move.line,quantity:0
+msgid ""
+"The optional quantity expressed by this line, eg: number of product sold. "
+"The quantity is not a legal requirement but is very useful for some reports."
+msgstr ""
+"オプションの数量はこの行で、例えば、販売された製品の数を表します。数量は法的には要求されませんが、幾つかのレポートのためにはとても役立ちます。"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "Line 2:"
+msgstr "行2:"
+
+#. module: account
+#: field:account.journal.column,required:0
+msgid "Required"
+msgstr "必須"
+
+#. module: account
+#: view:account.chart.template:0
+#: field:product.category,property_account_expense_categ:0
+#: field:product.template,property_account_expense:0
+msgid "Expense Account"
+msgstr "費用勘定"
+
+#. module: account
+#: help:account.invoice,period_id:0
+msgid "Keep empty to use the period of the validation(invoice) date."
+msgstr "検証(請求書)日の期間を使うために空のままにして下さい。"
+
+#. module: account
+#: help:account.bank.statement,account_id:0
+msgid ""
+"used in statement reconciliation domain, but shouldn't be used elswhere."
+msgstr "取引明細書の消し込み領域で使用されます。その他の場所では使うべきではありません。"
+
+#. module: account
+#: field:account.invoice.tax,base_amount:0
+msgid "Base Code Amount"
+msgstr "基本コードの金額"
+
+#. module: account
+#: code:addons/account/account_invoice.py:392
+#, python-format
+msgid ""
+"You can not delete an invoice which is open or paid. We suggest you to "
+"refund it instead."
+msgstr "開いている、または支払済請求書は削除できません。その代わりに返金をすることをお勧めします。"
+
+#. module: account
+#: field:wizard.multi.charts.accounts,sale_tax:0
+msgid "Default Sale Tax"
+msgstr "デフォルト消費税(売上)"
+
+#. module: account
+#: code:addons/account/account_invoice.py:1013
+#, python-format
+msgid "Invoice  '%s' is validated."
+msgstr "請求書 %s は検証されます。"
+
+#. module: account
+#: help:account.model.line,date_maturity:0
+msgid ""
+"The maturity date of the generated entries for this model. You can choose "
+"between the creation date or the creation date of the entries plus the "
+"partner payment terms."
+msgstr "このモデルが生成されたエントリーの満期日。作成日、またはエントリーの作成日にパートナの支払条件を加えた日の何れかを選択できます。"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_finance_accounting
+msgid "Financial Accounting"
+msgstr "財務会計"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_account_report_pl
+msgid "Profit And Loss"
+msgstr "損益"
+
+#. module: account
+#: view:account.fiscal.position:0
+#: field:account.fiscal.position,name:0
+#: field:account.fiscal.position.account,position_id:0
+#: field:account.fiscal.position.tax,position_id:0
+#: field:account.fiscal.position.tax.template,position_id:0
+#: view:account.fiscal.position.template:0
+#: field:account.invoice,fiscal_position:0
+#: field:account.invoice.report,fiscal_position:0
+#: model:ir.model,name:account.model_account_fiscal_position
+#: field:res.partner,property_account_position:0
+msgid "Fiscal Position"
+msgstr "会計ポジション"
+
+#. module: account
+#: code:addons/account/account_invoice.py:735
+#, python-format
+msgid ""
+"Tax base different!\n"
+"Click on compute to update the tax base."
+msgstr ""
+"課税基準が異なります。\n"
+"課税基準を更新するために計算をクリックして下さい。"
+
+#. module: account
+#: field:account.partner.ledger,page_split:0
+msgid "One Partner Per Page"
+msgstr "ページ毎に1パートナ"
+
+#. module: account
+#: field:account.account,child_parent_ids:0
+#: field:account.account.template,child_parent_ids:0
+msgid "Children"
+msgstr "子"
+
+#. module: account
+#: selection:account.invoice,type:0
+#: selection:account.invoice.report,type:0
+#: model:process.process,name:account.process_process_invoiceprocess0
+#: selection:report.invoice.created,type:0
+msgid "Customer Invoice"
+msgstr "顧客請求書"
+
+#. module: account
+#: help:account.tax.template,include_base_amount:0
+msgid ""
+"Set if the amount of tax must be included in the base amount before "
+"computing the next taxes."
+msgstr "次の税金を計算する前に、税金額が基準額に含まれていなければならない時に設定します。"
+
+#. module: account
+#: help:account.journal,user_id:0
+msgid "The user responsible for this journal"
+msgstr "この仕訳帳を担当するユーザ"
+
+#. module: account
+#: view:account.period:0
+msgid "Search Period"
+msgstr "期間検索"
+
+#. module: account
+#: view:account.change.currency:0
+msgid "Invoice Currency"
+msgstr "請求書通貨"
+
+#. module: account
+#: field:accounting.report,account_report_id:0
+#: model:ir.ui.menu,name:account.menu_account_financial_reports_tree
+msgid "Account Reports"
+msgstr "アカウントレポート"
+
+#. module: account
+#: field:account.payment.term,line_ids:0
+msgid "Terms"
+msgstr "条件"
+
+#. module: account
+#: field:account.bank.statement,total_entry_encoding:0
+msgid "Cash Transaction"
+msgstr "現金取引"
+
+#. module: account
+#: view:res.partner:0
+msgid "Bank account"
+msgstr "銀行口座"
+
+#. module: account
+#: field:account.chart.template,tax_template_ids:0
+msgid "Tax Template List"
+msgstr "税金テンプレートリスト"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal
+msgid "Sale/Purchase Journals"
+msgstr "売上 / 仕入仕訳帳"
+
+#. module: account
+#: help:account.account,currency_mode:0
+msgid ""
+"This will select how the current currency rate for outgoing transactions is "
+"computed. In most countries the legal method is \"average\" but only a few "
+"software systems are able to manage this. So if you import from another "
+"software system you may have to use the rate at date. Incoming transactions "
+"always use the rate at date."
+msgstr ""
+"これは仕向取引が現在の通貨レートをどのように計算するかを選択します。殆どの国の正式な方法は平均ですが、少数のソフトウェアシステムはこの管理が可能です。他の"
+"ソフトウェアシステムからインポートした場合は、日付レートを使用しなければならないかも知れません。被仕向取引は常に日付レートを使用します。"
+
+#. module: account
+#: help:account.chart.template,code_digits:0
+#: help:wizard.multi.charts.accounts,code_digits:0
+msgid "No. of Digits to use for account code"
+msgstr "アカウントコードのために使用される数字の桁数"
+
+#. module: account
+#: field:account.payment.term.line,name:0
+msgid "Line Name"
+msgstr "行名称"
+
+#. module: account
+#: view:account.fiscalyear:0
+msgid "Search Fiscalyear"
+msgstr "会計年度検索"
+
+#. module: account
+#: selection:account.tax,applicable_type:0
+msgid "Always"
+msgstr "常に"
+
+#. module: account
+#: view:account.invoice.report:0
+#: view:analytic.entries.report:0
+msgid "Month-1"
+msgstr "月-1"
+
+#. module: account
+#: view:account.analytic.line:0
+msgid "Total Quantity"
+msgstr "合計数量"
+
+#. module: account
+#: field:account.move.line.reconcile.writeoff,writeoff_acc_id:0
+msgid "Write-Off account"
+msgstr "償却アカウント"
+
+#. module: account
+#: field:account.model.line,model_id:0
+#: view:account.subscription:0
+#: field:account.subscription,model_id:0
+msgid "Model"
+msgstr "モデル"
+
+#. module: account
+#: help:account.invoice.tax,base_code_id:0
+msgid "The account basis of the tax declaration."
+msgstr "税金申告の会計基準"
+
+#. module: account
+#: selection:account.account,type:0
+#: selection:account.account.template,type:0
+#: selection:account.entries.report,type:0
+#: selection:account.financial.report,type:0
+msgid "View"
+msgstr "ビュー"
+
+#. module: account
+#: code:addons/account/account.py:3363
+#: code:addons/account/account_bank.py:90
+#, python-format
+msgid "BNK"
+msgstr "銀行"
+
+#. module: account
+#: field:account.move.line,analytic_lines:0
+msgid "Analytic lines"
+msgstr "分析行"
+
+#. module: account
+#: view:account.invoice:0
+msgid "Proforma Invoices"
+msgstr "プロフォーマ請求書"
+
+#. module: account
+#: model:process.node,name:account.process_node_electronicfile0
+msgid "Electronic File"
+msgstr "電子ファイル"
+
+#. module: account
+#: view:res.partner:0
+msgid "Customer Credit"
+msgstr "顧客クレジット"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "  Day of the Month: 0"
+msgstr "  月における通算日:0"
+
+#. module: account
+#: view:account.subscription:0
+msgid "Starts on"
+msgstr "開始"
+
+#. module: account
+#: model:ir.model,name:account.model_account_partner_ledger
+msgid "Account Partner Ledger"
+msgstr "アカウントパートナ元帳"
+
+#. module: account
+#: help:account.journal.column,sequence:0
+msgid "Gives the sequence order to journal column."
+msgstr "仕訳帳カラムに並び順を与えます。"
+
+#. module: account
+#: help:account.account,currency_id:0
+#: help:account.account.template,currency_id:0
+#: help:account.bank.accounts.wizard,currency_id:0
+msgid "Forces all moves for this account to have this secondary currency."
+msgstr "この第2通貨を持つこのアカウントのため全ての移動は制限されます。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_validate_account_move_line
+msgid ""
+"This wizard will validate all journal entries of a particular journal and "
+"period. Once journal entries are validated, you can not update them anymore."
+msgstr "このウィザードは特定の仕訳帳と期間の全ての仕訳帳エントリーを検証します。ひとたび仕訳帳エントリーが検証された以降は、変更はできません。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_chart_template_form
+#: model:ir.ui.menu,name:account.menu_action_account_chart_template_form
+msgid "Chart of Accounts Templates"
+msgstr "勘定科目表テンプレート"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_wizard_multi_chart
+msgid "Generate Chart of Accounts from a Chart Template"
+msgstr "チャートテンプレートから勘定科目表を生成"
+
+#. module: account
+#: view:report.account.sales:0
+msgid "This months' Sales by type"
+msgstr "タイプ別今月の売上"
+
+#. module: account
+#: model:ir.model,name:account.model_account_unreconcile_reconcile
+msgid "Account Unreconcile Reconcile"
+msgstr "未消し込み / 消し込み アカウント"
+
+#. module: account
+#: sql_constraint:account.tax:0
+msgid "The description must be unique per company!"
+msgstr "説明は会社ごとに固有でなければなりません。"
+
+#. module: account
+#: help:account.account.type,close_method:0
+msgid ""
+"Set here the method that will be used to generate the end of year journal "
+"entries for all the accounts of this type.\n"
+"\n"
+" 'None' means that nothing will be done.\n"
+" 'Balance' will generally be used for cash accounts.\n"
+" 'Detail' will copy each existing journal item of the previous year, even "
+"the reconciled ones.\n"
+" 'Unreconciled' will copy only the journal items that were unreconciled on "
+"the first day of the new fiscal year."
+msgstr ""
+"このタイプの全てのアカウントの年間の仕訳帳エントリーの終わりを生成するのに使用する方法を、ここで設定して下さい。\n"
+"\n"
+" \"なし\" は何も行われないことを意味します。\n"
+" \"残高\"は一般的には現金のアカウントのために使用されます。\n"
+" \"詳細\"は消し込みされたものも含む前年のそれぞれの既存仕訳帳項目をコピーします。\n"
+" \"未消し込み\"は未消し込みだった仕訳帳項目のみを新会計年度の初日としてコピーします。"
+
+#. module: account
+#: code:addons/account/wizard/account_open_closed_fiscalyear.py:39
+#, python-format
+msgid "No End of year journal defined for the fiscal year"
+msgstr "その会計年度の終わりの仕訳帳が定義されていません。"
+
+#. module: account
+#: view:account.tax:0
+#: view:account.tax.template:0
+msgid "Keep empty to use the expense account"
+msgstr "費用勘定を使うためには空のままとして下さい。"
+
+#. module: account
+#: field:account.aged.trial.balance,journal_ids:0
+#: field:account.analytic.cost.ledger.journal.report,journal:0
+#: field:account.balance.report,journal_ids:0
+#: field:account.central.journal,journal_ids:0
+#: field:account.common.account.report,journal_ids:0
+#: field:account.common.journal.report,journal_ids:0
+#: field:account.common.partner.report,journal_ids:0
+#: view:account.common.report:0
+#: field:account.common.report,journal_ids:0
+#: report:account.general.journal:0
+#: field:account.general.journal,journal_ids:0
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: view:account.journal.period:0
+#: report:account.partner.balance:0
+#: field:account.partner.balance,journal_ids:0
+#: field:account.partner.ledger,journal_ids:0
+#: view:account.print.journal:0
+#: field:account.print.journal,journal_ids:0
+#: field:account.report.general.ledger,journal_ids:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+#: field:account.vat.declaration,journal_ids:0
+#: field:accounting.report,journal_ids:0
+#: model:ir.actions.act_window,name:account.action_account_journal_form
+#: model:ir.actions.act_window,name:account.action_account_journal_period_tree
+#: model:ir.ui.menu,name:account.menu_account_print_journal
+#: model:ir.ui.menu,name:account.menu_action_account_journal_form
+#: model:ir.ui.menu,name:account.menu_journals
+#: model:ir.ui.menu,name:account.menu_journals_report
+msgid "Journals"
+msgstr "仕訳帳"
+
+#. module: account
+#: field:account.partner.reconcile.process,to_reconcile:0
+msgid "Remaining Partners"
+msgstr "存続パートナ"
+
+#. module: account
+#: view:account.subscription:0
+#: field:account.subscription,lines_id:0
+msgid "Subscription Lines"
+msgstr "サブスクリプション行"
+
+#. module: account
+#: selection:account.analytic.journal,type:0
+#: view:account.journal:0
+#: selection:account.journal,type:0
+#: view:account.model:0
+#: selection:account.tax,type_tax_use:0
+#: view:account.tax.template:0
+#: selection:account.tax.template,type_tax_use:0
+msgid "Purchase"
+msgstr "仕入"
+
+#. module: account
+#: view:account.installer:0
+#: view:wizard.multi.charts.accounts:0
+msgid "Accounting Application Configuration"
+msgstr "会計アプリケーションの設定"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "  Value amount: 0.02"
+msgstr "  値の量:0.02"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.open_board_account
+#: model:ir.ui.menu,name:account.menu_board_account
+msgid "Accounting Dashboard"
+msgstr "会計ダッシュボード"
+
+#. module: account
+#: field:account.bank.statement,balance_start:0
+#: field:account.treasury.report,starting_balance:0
+msgid "Starting Balance"
+msgstr "期首残高"
+
+#. module: account
+#: code:addons/account/account_invoice.py:1332
+#, python-format
+msgid "No Partner Defined !"
+msgstr "パートナが定義されていません。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_period_close
+#: model:ir.actions.act_window,name:account.action_account_period_tree
+#: model:ir.ui.menu,name:account.menu_action_account_period_close_tree
+msgid "Close a Period"
+msgstr "期間を閉じる"
+
+#. module: account
+#: field:account.financial.report,display_detail:0
+msgid "Display details"
+msgstr "詳細を表示"
+
+#. module: account
+#: report:account.overdue:0
+msgid "VAT:"
+msgstr "消費税:"
+
+#. module: account
+#: constraint:account.invoice:0
+msgid "Invalid BBA Structured Communication !"
+msgstr "無効なBBA(ブロードバンドアクセス)構造の通信"
+
+#. module: account
+#: help:account.analytic.line,amount_currency:0
+msgid ""
+"The amount expressed in the related account currency if not equal to the "
+"company one."
+msgstr "会社の通貨と異なっている場合は、金額は関係するアカウント通貨で表されます。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_unreconcile
+#: model:ir.actions.act_window,name:account.action_account_unreconcile_reconcile
+#: model:ir.actions.act_window,name:account.action_account_unreconcile_select
+msgid "Unreconcile Entries"
+msgstr "未消し込みエントリー"
+
+#. module: account
+#: field:account.tax.code,notprintable:0
+#: field:account.tax.code.template,notprintable:0
+msgid "Not Printable in Invoice"
+msgstr "印刷不可の請求書"
+
+#. module: account
+#: report:account.vat.declaration:0
+#: field:account.vat.declaration,chart_tax_id:0
+msgid "Chart of Tax"
+msgstr "税金チャート"
+
+#. module: account
+#: code:addons/account/account_cash_statement.py:314
+#, python-format
+msgid "The closing balance should be the same than the computed balance!"
+msgstr "決算残高は計算された残高と等しくなければなりません。"
+
+#. module: account
+#: view:account.journal:0
+msgid "Search Account Journal"
+msgstr "アカウント仕訳帳検索"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_invoice_tree_pending_invoice
+msgid "Pending Invoice"
+msgstr "保留中請求書"
+
+#. module: account
+#: view:account.invoice.report:0
+#: selection:account.subscription,period_type:0
+#: view:analytic.entries.report:0
+msgid "year"
+msgstr "年"
+
+#. module: account
+#: view:product.product:0
+msgid "Purchase Taxes"
+msgstr "消費税(仕入)"
+
+#. module: account
+#: view:validate.account.move.lines:0
+msgid ""
+"All selected journal entries will be validated and posted. It means you "
+"won't be able to modify their accounting fields anymore."
+msgstr "全ての選択した仕訳帳エントリーは検証され、元帳に記帳されます。このことは、それらの会計範囲はもう変更ができなくなることを意味します。"
+
+#. module: account
+#: model:ir.actions.report.xml,name:account.account_transfers
+msgid "Transfers"
+msgstr "転送"
+
+#. module: account
+#: view:account.chart:0
+msgid "Account charts"
+msgstr "会計表"
+
+#. module: account
+#: report:account.vat.declaration:0
+msgid "Tax Amount"
+msgstr "税額"
+
+#. module: account
+#: view:account.move:0
+msgid "Search Move"
+msgstr "移動の検索"
+
+#. module: account
+#: field:account.tax.code,name:0
+#: field:account.tax.code.template,name:0
+msgid "Tax Case Name"
+msgstr "税金名称"
+
+#. module: account
+#: report:account.invoice:0
+#: model:process.node,name:account.process_node_draftinvoices0
+msgid "Draft Invoice"
+msgstr "ドラフト請求書"
+
+#. module: account
+#: code:addons/account/wizard/account_invoice_state.py:68
+#, python-format
+msgid ""
+"Selected Invoice(s) cannot be cancelled as they are already in 'Cancelled' "
+"or 'Done' state!"
+msgstr "選択した請求書は既にキャンセルあるいは完了状態であるためキャンセルできません。"
+
+#. module: account
+#: view:account.invoice.line:0
+msgid "Quantity :"
+msgstr "数量"
+
+#. module: account
+#: field:account.aged.trial.balance,period_length:0
+msgid "Period Length (days)"
+msgstr "期間の長さ(日数)"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal
+msgid "Print Sale/Purchase Journal"
+msgstr "売上 / 仕入仕訳帳印刷"
+
+#. module: account
+#: field:account.invoice.report,state:0
+msgid "Invoice State"
+msgstr "請求書の状態"
+
+#. module: account
+#: view:account.invoice.report:0
+#: field:account.invoice.report,categ_id:0
+msgid "Category of Product"
+msgstr "製品分類"
+
+#. module: account
+#: view:account.addtmpl.wizard:0
+#: model:ir.actions.act_window,name:account.action_account_addtmpl_wizard_form
+msgid "Create Account"
+msgstr "アカウント作成"
+
+#. module: account
+#: model:ir.model,name:account.model_report_account_type_sales
+msgid "Report of the Sales by Account Type"
+msgstr "アカウントタイプ別売上レポート"
+
+#. module: account
+#: view:account.move.line:0
+msgid "Unreconciled Journal Items"
+msgstr "未消し込み仕訳帳項目"
+
+#. module: account
+#: sql_constraint:res.currency:0
+msgid "The currency code must be unique per company!"
+msgstr "通貨コードは会社ごとに固有でなければいけません。"
+
+#. module: account
+#: selection:account.account.type,close_method:0
+msgid "Detail"
+msgstr "詳細"
+
+#. module: account
+#: code:addons/account/account_invoice.py:839
+#, python-format
+msgid ""
+"Can not create the invoice !\n"
+"The related payment term is probably misconfigured as it gives a computed "
+"amount greater than the total invoiced amount. The latest line of your "
+"payment term must be of type 'balance' to avoid rounding issues."
+msgstr ""
+"請求書が作成できません。\n"
+"合計請求額よりも計算された金額が大きくなっています。おそらく関連する支払条件が誤った設定となっています。支払条件の最後の行は丸め問題を避けるためにバランス"
+"タイプでなければなりません。"
+
+#. module: account
+#: report:account.invoice:0
+msgid "VAT :"
+msgstr "消費税:"
+
+#. module: account
+#: report:account.central.journal:0
+#: report:account.general.ledger:0
+#: field:account.installer,charts:0
+#: report:account.partner.balance:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+#: model:ir.actions.act_window,name:account.action_account_chart
+#: model:ir.actions.act_window,name:account.action_account_tree
+#: model:ir.ui.menu,name:account.menu_action_account_tree2
+msgid "Chart of Accounts"
+msgstr "勘定科目表"
+
+#. module: account
+#: view:account.tax.chart:0
+msgid "(If you do not select period it will take all open periods)"
+msgstr "(期間を選択しない場合は、全ての開いている期間となります)"
+
+#. module: account
+#: field:account.journal,centralisation:0
+msgid "Centralised counterpart"
+msgstr "相手方の一元化"
+
+#. module: account
+#: code:addons/account/account_move_line.py:584
+#, python-format
+msgid "You can not create journal items on a \"view\" account %s %s"
+msgstr "ビューアカウントでは仕訳帳項目を作ることはできません %s %s"
+
+#. module: account
+#: model:ir.model,name:account.model_account_partner_reconcile_process
+msgid "Reconcilation Process partner by partner"
+msgstr "パートナ毎のパートナ消し込みプロセス"
+
+#. module: account
+#: selection:account.automatic.reconcile,power:0
+msgid "2"
+msgstr ""
+
+#. module: account
+#: view:account.chart:0
+msgid "(If you do not select Fiscal year it will take all open fiscal years)"
+msgstr "(会計年度を選択しない場合は、全ての開いている会計年度となります)"
+
+#. module: account
+#: selection:account.aged.trial.balance,filter:0
+#: report:account.analytic.account.journal:0
+#: selection:account.balance.report,filter:0
+#: field:account.bank.statement,date:0
+#: selection:account.central.journal,filter:0
+#: selection:account.common.account.report,filter:0
+#: selection:account.common.journal.report,filter:0
+#: selection:account.common.partner.report,filter:0
+#: selection:account.common.report,filter:0
+#: view:account.entries.report:0
+#: field:account.entries.report,date:0
+#: selection:account.general.journal,filter:0
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: field:account.invoice.report,date:0
+#: report:account.journal.period.print:0
+#: report:account.journal.period.print.sale.purchase:0
+#: view:account.move:0
+#: field:account.move,date:0
+#: field:account.move.line.reconcile.writeoff,date_p:0
+#: report:account.overdue:0
+#: selection:account.partner.balance,filter:0
+#: selection:account.partner.ledger,filter:0
+#: selection:account.print.journal,filter:0
+#: selection:account.print.journal,sort_selection:0
+#: selection:account.report.general.ledger,filter:0
+#: selection:account.report.general.ledger,sortby:0
+#: field:account.subscription.generate,date:0
+#: field:account.subscription.line,date:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+#: selection:account.vat.declaration,filter:0
+#: selection:accounting.report,filter:0
+#: selection:accounting.report,filter_cmp:0
+#: field:analytic.entries.report,date:0
+msgid "Date"
+msgstr "日付"
+
+#. module: account
+#: view:account.move:0
+msgid "Post"
+msgstr "記帳"
+
+#. module: account
+#: view:account.unreconcile:0
+#: view:account.unreconcile.reconcile:0
+msgid "Unreconcile"
+msgstr "未消し込み"
+
+#. module: account
+#: view:account.analytic.line:0
+#: field:account.bank.statement,user_id:0
+#: view:account.journal:0
+#: field:account.journal,user_id:0
+#: view:analytic.entries.report:0
+#: field:analytic.entries.report,user_id:0
+msgid "User"
+msgstr "ユーザ"
+
+#. module: account
+#: view:account.chart.template:0
+msgid "Chart of Accounts Template"
+msgstr "勘定科目表テンプレート"
+
+#. module: account
+#: code:addons/account/account.py:2280
+#, python-format
+msgid ""
+"Maturity date of entry line generated by model line '%s' of model '%s' is "
+"based on partner payment term!\n"
+"Please define partner on it!"
+msgstr ""
+"エントリー行の満期日はパートナの支払条件を基にしたモデル行 %s(モデル %s の)によって作成されました。\n"
+"その上にパートナを定義して下さい。"
+
+#. module: account
+#: code:addons/account/account_move_line.py:837
+#, python-format
+msgid "Some entries are already reconciled !"
+msgstr "幾つかのエントリーは既に消し込み済です。"
+
+#. module: account
+#: view:account.tax:0
+msgid "Account Tax"
+msgstr "税金アカウント"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_finance_reporting_budgets
+msgid "Budgets"
+msgstr "予算"
+
+#. module: account
+#: selection:account.aged.trial.balance,filter:0
+#: selection:account.balance.report,filter:0
+#: selection:account.central.journal,filter:0
+#: selection:account.common.account.report,filter:0
+#: selection:account.common.journal.report,filter:0
+#: selection:account.common.partner.report,filter:0
+#: selection:account.common.report,filter:0
+#: selection:account.general.journal,filter:0
+#: selection:account.partner.balance,filter:0
+#: selection:account.partner.ledger,filter:0
+#: selection:account.print.journal,filter:0
+#: selection:account.report.general.ledger,filter:0
+#: selection:account.vat.declaration,filter:0
+#: selection:accounting.report,filter:0
+#: selection:accounting.report,filter_cmp:0
+msgid "No Filters"
+msgstr "フィルタなし"
+
+#. module: account
+#: view:account.invoice.report:0
+msgid "Pro-forma Invoices"
+msgstr "プロフォーマ請求書"
+
+#. module: account
+#: view:res.partner:0
+msgid "History"
+msgstr "履歴"
+
+#. module: account
+#: help:account.tax,applicable_type:0
+#: help:account.tax.template,applicable_type:0
+msgid ""
+"If not applicable (computed through a Python code), the tax won't appear on "
+"the invoice."
+msgstr "適用可能(Pythonコードによって計算)でない場合は、税金は請求書に表示されません。"
+
+#. module: account
+#: view:account.tax:0
+#: view:account.tax.template:0
+msgid "Applicable Code (if type=code)"
+msgstr "適用可能コード(タイプがコードの時)"
+
+#. module: account
+#: view:account.invoice.report:0
+#: field:account.invoice.report,product_qty:0
+msgid "Qty"
+msgstr "数量"
+
+#. module: account
+#: field:account.invoice.report,address_contact_id:0
+msgid "Contact Address Name"
+msgstr "連絡先アドレス名"
+
+#. module: account
+#: field:account.move.line,blocked:0
+msgid "Litigation"
+msgstr "訴訟"
+
+#. module: account
+#: view:account.analytic.line:0
+msgid "Search Analytic Lines"
+msgstr "分析行検索"
+
+#. module: account
+#: field:res.partner,property_account_payable:0
+msgid "Account Payable"
+msgstr "買掛金"
+
+#. module: account
+#: model:process.node,name:account.process_node_supplierpaymentorder0
+msgid "Payment Order"
+msgstr "支払オーダー"
+
+#. module: account
+#: help:account.account.template,reconcile:0
+msgid ""
+"Check this option if you want the user to reconcile entries in this account."
+msgstr "ユーザがこのアカウントのエントリーを消し込みしたい場合はこのオプションをチェックして下さい。"
+
+#. module: account
+#: model:ir.actions.report.xml,name:account.account_account_balance_landscape
+msgid "Account balance"
+msgstr "アカウント残高"
+
+#. module: account
+#: report:account.invoice:0
+#: field:account.invoice.line,price_unit:0
+msgid "Unit Price"
+msgstr "単価"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_tree1
+msgid "Analytic Items"
+msgstr "分析項目"
+
+#. module: account
+#: code:addons/account/account_move_line.py:1153
+#, python-format
+msgid "Unable to change tax !"
+msgstr "税金を変更することはできません。"
+
+#. module: account
+#: field:analytic.entries.report,nbr:0
+msgid "#Entries"
+msgstr "エントリー番号"
+
+#. module: account
+#: selection:account.invoice.refund,filter_refund:0
+msgid "Create a draft Refund"
+msgstr "返金のドラフトを作成"
+
+#. module: account
+#: view:account.state.open:0
+msgid "Open Invoice"
+msgstr "請求書を開く"
+
+#. module: account
+#: field:account.invoice.tax,factor_tax:0
+msgid "Multipication factor Tax code"
+msgstr "税金コードの倍率"
+
+#. module: account
+#: view:account.fiscal.position:0
+msgid "Mapping"
+msgstr "マッピング"
+
+#. module: account
+#: code:addons/account/account_invoice.py:921
+#, python-format
+msgid ""
+"You cannot create an invoice on a centralised journal. Uncheck the "
+"centralised counterpart box in the related journal from the configuration "
+"menu."
+msgstr "一元化された仕訳帳上で請求書の作成はできません。設定メニューから関連した仕訳帳の中の、相手方の一元化ボックスのチェックを外して下さい。"
+
+#. module: account
+#: field:account.account,name:0
+#: field:account.account.template,name:0
+#: report:account.analytic.account.inverted.balance:0
+#: field:account.bank.statement,name:0
+#: field:account.chart.template,name:0
+#: field:account.model.line,name:0
+#: field:account.move.line,name:0
+#: field:account.move.reconcile,name:0
+#: field:account.subscription,name:0
+msgid "Name"
+msgstr "名前"
+
+#. module: account
+#: model:ir.model,name:account.model_account_aged_trial_balance
+msgid "Account Aged Trial balance Report"
+msgstr "アカウント年齢試算表レポート"
+
+#. module: account
+#: code:addons/account/account_move_line.py:591
+#, python-format
+msgid "You can not create journal items on a closed account %s %s"
+msgstr "閉鎖アカウントで仕訳帳項目の作成はできません %s %s"
+
+#. module: account
+#: field:account.move.line,date:0
+msgid "Effective date"
+msgstr "有効日"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_bank_tree
+#: model:ir.ui.menu,name:account.menu_action_bank_tree
+msgid "Setup your Bank Accounts"
+msgstr "銀行口座の設定"
+
+#. module: account
+#: code:addons/account/wizard/account_move_bank_reconcile.py:53
+#, python-format
+msgid "Standard Encoding"
+msgstr "標準エンコーディング"
+
+#. module: account
+#: help:account.journal,analytic_journal_id:0
+msgid "Journal for analytic entries"
+msgstr "分析エントリーの仕訳帳"
+
+#. module: account
+#: constraint:account.aged.trial.balance:0
+#: constraint:account.balance.report:0
+#: constraint:account.central.journal:0
+#: constraint:account.common.account.report:0
+#: constraint:account.common.journal.report:0
+#: constraint:account.common.partner.report:0
+#: constraint:account.common.report:0
+#: constraint:account.general.journal:0
+#: constraint:account.partner.balance:0
+#: constraint:account.partner.ledger:0
+#: constraint:account.print.journal:0
+#: constraint:account.report.general.ledger:0
+#: constraint:account.vat.declaration:0
+#: constraint:accounting.report:0
+msgid ""
+"The fiscalyear, periods or chart of account chosen have to belong to the "
+"same company."
+msgstr "選択された会計年度、期間、または勘定科目表は同じ会社に属している必要があります。"
+
+#. module: account
+#: model:ir.actions.todo.category,name:account.category_accounting_configuration
+#: model:ir.ui.menu,name:account.menu_finance
+#: model:process.node,name:account.process_node_accountingentries0
+#: model:process.node,name:account.process_node_supplieraccountingentries0
+#: view:product.product:0
+#: view:product.template:0
+#: view:res.partner:0
+msgid "Accounting"
+msgstr "会計"
+
+#. module: account
+#: view:account.entries.report:0
+msgid "Journal Entries with period in current year"
+msgstr "現在年度の期間の仕訳帳エントリー"
+
+#. module: account
+#: help:account.central.journal,amount_currency:0
+#: help:account.common.journal.report,amount_currency:0
+#: help:account.general.journal,amount_currency:0
+#: help:account.print.journal,amount_currency:0
+msgid ""
+"Print Report with the currency column if the currency is different then the "
+"company currency"
+msgstr "通貨が会社の通貨と異なる場合、通貨カラムを使用したレポートを印刷します。"
+
+#. module: account
+#: help:account.account,unrealized_gain_loss:0
+msgid ""
+"Value of Loss or Gain due to changes in exchange rate when doing multi-"
+"currency transactions."
+msgstr "他通貨取引を行う際の為替レート変動に伴う損益の値"
+
+#. module: account
+#: view:account.analytic.line:0
+msgid "General Accounting"
+msgstr "一般会計"
+
+#. module: account
+#: report:account.overdue:0
+msgid "Balance :"
+msgstr "残高:"
+
+#. module: account
+#: help:account.fiscalyear.close,journal_id:0
+msgid ""
+"The best practice here is to use a journal dedicated to contain the opening "
+"entries of all fiscal years. Note that you should define it with default "
+"debit/credit accounts, of type 'situation' and with a centralized "
+"counterpart."
+msgstr ""
+"ここでのベストプラクティスは全ての会計年度の開始エントリーを含むための専用の仕訳帳を使うことです。あなたはその定義とともにデフォルトの借方 / "
+"貸方アカウント、タイプは状態、そして相手方の一元化としなければならないことに注意して下さい。"
+
+#. module: account
+#: view:account.installer:0
+#: view:wizard.multi.charts.accounts:0
+msgid "title"
+msgstr "タイトル"
+
+#. module: account
+#: view:account.invoice:0
+#: view:account.period:0
+#: view:account.subscription:0
+msgid "Set to Draft"
+msgstr "ドラフトに設定"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_subscription_form
+msgid "Recurring Lines"
+msgstr "定期的行"
+
+#. module: account
+#: field:account.partner.balance,display_partner:0
+msgid "Display Partners"
+msgstr "パートナの表示"
+
+#. module: account
+#: view:account.invoice:0
+msgid "Validate"
+msgstr "検証"
+
+#. module: account
+#: report:account.analytic.account.cost_ledger:0
+#: report:account.analytic.account.quantity_cost_ledger:0
+#: model:ir.actions.act_window,name:account.action_account_analytic_cost
+#: model:ir.actions.report.xml,name:account.account_analytic_account_cost_ledger
+msgid "Cost Ledger"
+msgstr "経費元帳"
+
+#. module: account
+#: model:account.financial.report,name:account.account_financial_report_assets0
+msgid "Assets"
+msgstr "資産"
+
+#. module: account
+#: view:account.invoice.confirm:0
+msgid "Confirm Invoices"
+msgstr "請求書確認"
+
+#. module: account
+#: selection:account.account,currency_mode:0
+msgid "Average Rate"
+msgstr "平均レート"
+
+#. module: account
+#: field:account.balance.report,display_account:0
+#: field:account.common.account.report,display_account:0
+#: field:account.report.general.ledger,display_account:0
+msgid "Display Accounts"
+msgstr "アカウントの表示"
+
+#. module: account
+#: view:account.state.open:0
+msgid "(Invoice should be unreconciled if you want to open it)"
+msgstr "(請求書を開く場合は、それは未消し込みでなければなりません)"
+
+#. module: account
+#: field:account.chart,period_from:0
+msgid "Start period"
+msgstr "期首日"
+
+#. module: account
+#: field:account.tax,name:0
+#: field:account.tax.template,name:0
+#: report:account.vat.declaration:0
+msgid "Tax Name"
+msgstr "税金名称"
+
+#. module: account
+#: model:account.payment.term,name:account.account_payment_term
+#: model:account.payment.term,note:account.account_payment_term
+msgid "30 Days End of Month"
+msgstr "30日月末"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_analytic_balance
+#: model:ir.actions.report.xml,name:account.account_analytic_account_balance
+msgid "Analytic Balance"
+msgstr "分析的な残高"
+
+#. module: account
+#: help:account.account,active:0
+msgid ""
+"If the active field is set to False, it will allow you to hide the account "
+"without removing it."
+msgstr "アクティブ項目がFalseに設定されている場合、それを削除することなくアカウントを非表示にできます。"
+
+#. module: account
+#: view:account.move.line:0
+msgid "Posted Journal Items"
+msgstr "記帳済仕訳帳項目"
+
+#. module: account
+#: view:account.tax.template:0
+msgid "Search Tax Templates"
+msgstr "税金テンプレート検索"
+
+#. module: account
+#: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation
+msgid "Draft Entries"
+msgstr "ドラフトエントリー"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "  Day of the Month= -1"
+msgstr "  月の通算日=-1"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "  Number of Days: 30"
+msgstr "  日数:30"
+
+#. module: account
+#: field:account.account,shortcut:0
+#: field:account.account.template,shortcut:0
+msgid "Shortcut"
+msgstr "ショートカット"
+
+#. module: account
+#: constraint:account.fiscalyear:0
+msgid "Error! The start date of the fiscal year must be before his end date."
+msgstr "エラー。会計年度の開始日はその終了日より前でなければなりません。"
+
+#. module: account
+#: view:account.account:0
+#: field:account.account,user_type:0
+#: view:account.account.template:0
+#: field:account.account.template,user_type:0
+#: view:account.account.type:0
+#: field:account.account.type,name:0
+#: field:account.bank.accounts.wizard,account_type:0
+#: field:account.entries.report,user_type:0
+#: selection:account.financial.report,type:0
+#: model:ir.model,name:account.model_account_account_type
+#: field:report.account.receivable,type:0
+#: field:report.account_type.sales,user_type:0
+msgid "Account Type"
+msgstr "アカウントタイプ"
+
+#. module: account
+#: view:res.partner:0
+msgid "Bank Account Owner"
+msgstr "銀行口座所有者"
+
+#. module: account
+#: report:account.account.balance:0
+#: view:account.balance.report:0
+#: model:ir.actions.act_window,name:account.action_account_balance_menu
+#: model:ir.actions.report.xml,name:account.account_account_balance
+#: model:ir.ui.menu,name:account.menu_general_Balance_report
+msgid "Trial Balance"
+msgstr "試算表"
+
+#. module: account
+#: model:ir.model,name:account.model_account_invoice_cancel
+msgid "Cancel the Selected Invoices"
+msgstr "選択した請求書のキャンセル"
+
+#. module: account
+#: help:product.category,property_account_income_categ:0
+#: help:product.template,property_account_income:0
+msgid ""
+"This account will be used to value outgoing stock for the current product "
+"category using sale price"
+msgstr "このアカウントは現在の製品分類において販売価格を使って出荷される在庫の価値のために使われます。"
+
+#. module: account
+#: selection:account.automatic.reconcile,power:0
+msgid "3"
+msgstr ""
+
+#. module: account
+#: code:addons/account/account_move_line.py:97
+#, python-format
+msgid ""
+"You haven't supplied enough argument to compute the initial balance, please "
+"select a period and journal in the context."
+msgstr "期首残高を計算するための十分な引数が提供されていません。適切な期間と仕訳帳を選択して下さい。"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_supplieranalyticcost0
+msgid ""
+"Analytic costs (timesheets, some purchased products, ...) come from analytic "
+"accounts. These generate draft supplier invoices."
+msgstr "分析コスト(勤務表、幾つかの仕入済製品など)は分析アカウントから来ています。これらはドラフトの仕入先請求書を生成します。"
+
+#. module: account
+#: view:account.bank.statement:0
+msgid "Close CashBox"
+msgstr "現金箱を閉じる"
+
+#. module: account
+#: view:account.invoice.report:0
+#: field:account.invoice.report,due_delay:0
+msgid "Avg. Due Delay"
+msgstr "平均遅延"
+
+#. module: account
+#: view:account.entries.report:0
+msgid "Acc.Type"
+msgstr "アカウントタイプ"
+
+#. module: account
+#: field:account.entries.report,month:0
+#: view:account.invoice.report:0
+#: field:account.invoice.report,month:0
+#: view:analytic.entries.report:0
+#: field:analytic.entries.report,month:0
+#: field:report.account.sales,month:0
+#: field:report.account_type.sales,month:0
+msgid "Month"
+msgstr "月"
+
+#. module: account
+#: code:addons/account/account_move_line.py:1216
+#, python-format
+msgid ""
+"You can not do this modification on a confirmed entry! You can just change "
+"some non legal fields or you must unconfirm the journal entry first! \n"
+"%s"
+msgstr ""
+"確認済エントリーにはこの変更はできません。変更できるのは法的な項目以外のみです。または、最初にその仕訳帳エントリーを未確認にする必要があります。 \n"
+"%s"
+
+#. module: account
+#: field:res.company,paypal_account:0
+msgid "Paypal Account"
+msgstr "PayPalアカウント"
+
+#. module: account
+#: field:account.invoice.report,uom_name:0
+msgid "Reference UoM"
+msgstr "単位の参照"
+
+#. module: account
+#: field:account.account,note:0
+#: field:account.account.template,note:0
+msgid "Note"
+msgstr "注記"
+
+#. module: account
+#: selection:account.financial.report,sign:0
+msgid "Reverse balance sign"
+msgstr "残高符号の反転"
+
+#. module: account
+#: view:account.analytic.account:0
+msgid "Overdue Account"
+msgstr "期限切れアカウント"
+
+#. module: account
+#: selection:account.account.type,report_type:0
+#: code:addons/account/account.py:184
+#, python-format
+msgid "Balance Sheet (Liability account)"
+msgstr "貸借対照表(負債勘定)"
+
+#. module: account
+#: help:account.invoice,date_invoice:0
+msgid "Keep empty to use the current date"
+msgstr "現在日付を利用するには空のままとして下さい。"
+
+#. module: account
+#: field:account.invoice,tax_line:0
+msgid "Tax Lines"
+msgstr "税金行"
+
+#. module: account
+#: field:account.tax,base_code_id:0
+msgid "Account Base Code"
+msgstr "アカウント基本コード"
+
+#. module: account
+#: code:addons/account/account_analytic_line.py:93
+#, python-format
+msgid "There is no expense account defined for this product: \"%s\" (id:%d)"
+msgstr "この製品のために定義された費用勘定がありません:%s(ID:%d)"
+
+#. module: account
+#: view:res.partner:0
+msgid "Customer Accounting Properties"
+msgstr "顧客会計属性"
+
+#. module: account
+#: help:res.company,paypal_account:0
+msgid "Paypal username (usually email) for receiving online payments."
+msgstr "オンライン支払を受けるためのPayPalユーザ名(通常はEメール)"
+
+#. module: account
+#: selection:account.aged.trial.balance,target_move:0
+#: selection:account.balance.report,target_move:0
+#: selection:account.central.journal,target_move:0
+#: selection:account.chart,target_move:0
+#: selection:account.common.account.report,target_move:0
+#: selection:account.common.journal.report,target_move:0
+#: selection:account.common.partner.report,target_move:0
+#: selection:account.common.report,target_move:0
+#: selection:account.general.journal,target_move:0
+#: selection:account.move.journal,target_move:0
+#: selection:account.partner.balance,target_move:0
+#: selection:account.partner.ledger,target_move:0
+#: selection:account.print.journal,target_move:0
+#: selection:account.report.general.ledger,target_move:0
+#: selection:account.tax.chart,target_move:0
+#: selection:account.vat.declaration,target_move:0
+#: selection:accounting.report,target_move:0
+#: code:addons/account/report/common_report_header.py:68
+#, python-format
+msgid "All Posted Entries"
+msgstr "全ての記帳済エントリー"
+
+#. module: account
+#: code:addons/account/account_bank_statement.py:367
+#, python-format
+msgid "Statement %s is confirmed, journal items are created."
+msgstr "取引明細書 %s は確認され、仕訳帳項目が作成されました。"
+
+#. module: account
+#: field:report.aged.receivable,name:0
+msgid "Month Range"
+msgstr "月の範囲"
+
+#. module: account
+#: help:account.analytic.balance,empty_acc:0
+msgid "Check if you want to display Accounts with 0 balance too."
+msgstr "ゼロバランスアカウントも表示する場合はチェックして下さい。"
+
+#. module: account
+#: view:account.tax:0
+msgid "Compute Code"
+msgstr "計算コード"
+
+#. module: account
+#: view:account.account.template:0
+msgid "Default taxes"
+msgstr "デフォルトの税金"
+
+#. module: account
+#: code:addons/account/wizard/account_fiscalyear_close.py:41
+#, python-format
+msgid "End of Fiscal Year Entry"
+msgstr "会計年度エントリーの最後"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_finance_periodical_processing
+msgid "Periodical Processing"
+msgstr "定期的処理"
+
+#. module: account
+#: constraint:account.analytic.line:0
+msgid "You can not create analytic line on view account."
+msgstr "ビューアカウントでは分析行を作ることはできません。"
+
+#. module: account
+#: help:account.move.line,state:0
+msgid ""
+"When new move line is created the state will be 'Draft'.\n"
+"* When all the payments are done it will be in 'Valid' state."
+msgstr ""
+"新しい移動行が作成された時はドラフト状態になります。\n"
+"・ 全ての支払いが完了した時に、有効状態になります。"
+
+#. module: account
+#: field:account.journal,view_id:0
+msgid "Display Mode"
+msgstr "表示モード"
+
+#. module: account
+#: model:process.node,note:account.process_node_importinvoice0
+msgid "Statement from invoice or payment"
+msgstr "請求書または支払いからの取引明細書"
+
+#. module: account
+#: model:ir.model,name:account.model_account_chart
+msgid "Account chart"
+msgstr "会計表"
+
+#. module: account
+#: selection:account.financial.report,style_overwrite:0
+msgid "Main Title 1 (bold, underlined)"
+msgstr "メインタイトル1(太字、アンダーライン)"
+
+#. module: account
+#: report:account.analytic.account.balance:0
+#: report:account.central.journal:0
+msgid "Account Name"
+msgstr "アカウント名"
+
+#. module: account
+#: help:account.fiscalyear.close,report_name:0
+msgid "Give name of the new entries"
+msgstr "新しいエントリーの名前を与えて下さい。"
+
+#. module: account
+#: model:ir.model,name:account.model_account_invoice_report
+msgid "Invoices Statistics"
+msgstr "請求書の統計情報"
+
+#. module: account
+#: field:account.account,exchange_rate:0
+msgid "Exchange Rate"
+msgstr "為替レート"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_paymentorderreconcilation0
+msgid "Bank statements are entered in the system."
+msgstr "銀行取引明細書はシステムに入力されます。"
+
+#. module: account
+#: code:addons/account/wizard/account_reconcile.py:133
+#, python-format
+msgid "Reconcile Writeoff"
+msgstr "償却の消し込み"
+
+#. module: account
+#: view:report.account.receivable:0
+msgid "Accounts by type"
+msgstr "タイプ毎のアカウント"
+
+#. module: account
+#: view:account.bank.statement:0
+#: field:account.bank.statement,balance_end_cash:0
+msgid "Closing Balance"
+msgstr "期末残高"
+
+#. module: account
+#: code:addons/account/report/common_report_header.py:92
+#, python-format
+msgid "Not implemented"
+msgstr "未実装"
+
+#. module: account
+#: field:account.chart.template,visible:0
+msgid "Can be Visible?"
+msgstr "可視可能?"
+
+#. module: account
+#: model:ir.model,name:account.model_account_journal_select
+msgid "Account Journal Select"
+msgstr "アカウント仕訳帳の選択"
+
+#. module: account
+#: view:account.tax.template:0
+msgid "Credit Notes"
+msgstr "クレジットノート"
+
+#. module: account
+#: sql_constraint:account.period:0
+msgid "The name of the period must be unique per company!"
+msgstr "期間の名前は会社ごとに固有である必要があります。"
+
+#. module: account
+#: view:wizard.multi.charts.accounts:0
+msgid "res_config_contents"
+msgstr ""
+
+#. module: account
+#: view:account.unreconcile:0
+msgid "Unreconciliate transactions"
+msgstr "未調整取引"
+
+#. module: account
+#: help:account.chart.template,visible:0
+msgid ""
+"Set this to False if you don't want this template to be used actively in the "
+"wizard that generate Chart of Accounts from templates, this is useful when "
+"you want to generate accounts of this template only when loading its child "
+"template."
+msgstr ""
+"テンプレートから勘定科目表を生成するウィザードの中でこのテンプレートを積極的に使わないのであれば、Falseを設定して下さい。これは子のテンプレートをロー"
+"ドするときだけ、このテンプレートのアカウントを生成するときに役立ちます。"
+
+#. module: account
+#: view:account.use.model:0
+msgid "Create Entries From Models"
+msgstr "モデルからエントリーを作成"
+
+#. module: account
+#: field:account.account,reconcile:0
+#: field:account.account.template,reconcile:0
+msgid "Allow Reconciliation"
+msgstr "消し込みの許可"
+
+#. module: account
+#: code:addons/account/account.py:1077
+#, python-format
+msgid ""
+"You can not modify company of this period as some journal items exists."
+msgstr "幾つかの仕訳帳項目が存在するため、この期間の会社を更新することはできません。"
+
+#. module: account
+#: view:account.analytic.account:0
+msgid "Analytic Account Statistics"
+msgstr "分析アカウントの統計情報"
+
+#. module: account
+#: report:account.vat.declaration:0
+msgid "Based On"
+msgstr "基準"
+
+#. module: account
+#: field:account.tax,price_include:0
+#: field:account.tax.template,price_include:0
+msgid "Tax Included in Price"
+msgstr "税込価格"
+
+#. module: account
+#: model:ir.model,name:account.model_account_analytic_cost_ledger_journal_report
+msgid "Account Analytic Cost Ledger For Journal Report"
+msgstr "仕訳帳レポートのアカウント分析原価元帳"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_model_form
+#: model:ir.ui.menu,name:account.menu_action_model_form
+msgid "Recurring Models"
+msgstr "循環モデル"
+
+#. module: account
+#: code:addons/account/account_move_line.py:1251
+#, python-format
+msgid "Encoding error"
+msgstr "エンコーディングエラー"
+
+#. module: account
+#: selection:account.automatic.reconcile,power:0
+msgid "4"
+msgstr ""
+
+#. module: account
+#: view:account.invoice:0
+msgid "Change"
+msgstr "変更"
+
+#. module: account
+#: selection:account.journal,type:0
+msgid "Bank and Cheques"
+msgstr "銀行と小切手"
+
+#. module: account
+#: field:account.journal,type_control_ids:0
+msgid "Type Controls"
+msgstr "タイプコントロール"
+
+#. module: account
+#: help:account.journal,default_credit_account_id:0
+msgid "It acts as a default account for credit amount"
+msgstr "それは貸方金額のデフォルトアカウントとして動作します。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_validate_account_move_line
+#: model:ir.ui.menu,name:account.menu_validate_account_moves
+#: view:validate.account.move:0
+#: view:validate.account.move.lines:0
+msgid "Post Journal Entries"
+msgstr "仕訳帳エントリーの記帳"
+
+#. module: account
+#: selection:account.invoice,state:0
+#: selection:account.invoice.report,state:0
+#: selection:report.invoice.created,state:0
+msgid "Cancelled"
+msgstr "キャンセル済"
+
+#. module: account
+#: help:account.bank.statement,balance_end_cash:0
+msgid "Closing balance based on cashBox"
+msgstr "現金箱に基づく期末残高"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "Example"
+msgstr "例"
+
+#. module: account
+#: code:addons/account/account_invoice.py:828
+#, python-format
+msgid ""
+"Please verify the price of the invoice !\n"
+"The real total does not match the computed total."
+msgstr ""
+"請求書の価格を検証して下さい。\n"
+"実際の合計が計算された合計と一致しません。"
+
+#. module: account
+#: view:account.tax:0
+#: view:account.tax.template:0
+msgid "Keep empty to use the income account"
+msgstr "損益勘定を使うためは空のままとして下さい。"
+
+#. module: account
+#: code:addons/account/account.py:3299
+#, python-format
+msgid "Purchase Tax %.2f%%"
+msgstr "消費税(仕入) %.2f%%"
+
+#. module: account
+#: view:account.subscription.generate:0
+#: model:ir.actions.act_window,name:account.action_account_subscription_generate
+#: model:ir.ui.menu,name:account.menu_generate_subscription
+msgid "Generate Entries"
+msgstr "エントリーの生成"
+
+#. module: account
+#: help:account.vat.declaration,chart_tax_id:0
+msgid "Select Charts of Taxes"
+msgstr "税金チャートの選択"
+
+#. module: account
+#: view:account.fiscal.position:0
+#: field:account.fiscal.position,account_ids:0
+#: field:account.fiscal.position.template,account_ids:0
+msgid "Account Mapping"
+msgstr "アカウントマッピング"
+
+#. module: account
+#: selection:account.bank.statement.line,type:0
+#: view:account.invoice:0
+#: view:account.invoice.report:0
+#: code:addons/account/account_invoice.py:337
+#, python-format
+msgid "Customer"
+msgstr "顧客"
+
+#. module: account
+#: view:account.bank.statement:0
+msgid "Confirmed"
+msgstr "確認済"
+
+#. module: account
+#: report:account.invoice:0
+msgid "Cancelled Invoice"
+msgstr "キャンセル済請求書"
+
+#. module: account
+#: code:addons/account/account.py:1567
+#, python-format
+msgid ""
+"Couldn't create move with currency different from the secondary currency of "
+"the account \"%s - %s\". Clear the secondary currency field of the account "
+"definition if you want to accept all currencies."
+msgstr ""
+"アカウントの第2通貨と異なる通貨による移動は作成できませんでした(%s - "
+"%s)。全ての通貨を許可したい場合は、アカウント定義の第2通貨項目をクリアして下さい。"
+
+#. module: account
+#: selection:account.bank.statement,state:0
+msgid "New"
+msgstr "新規"
+
+#. module: account
+#: field:account.invoice.refund,date:0
+msgid "Operation date"
+msgstr "実施日"
+
+#. module: account
+#: view:account.unreconcile.reconcile:0
+msgid "Unreconciliation transactions"
+msgstr "不一致取引"
+
+#. module: account
+#: field:account.tax,ref_tax_code_id:0
+#: field:account.tax.template,ref_tax_code_id:0
+msgid "Refund Tax Code"
+msgstr "税金コードの返金"
+
+#. module: account
+#: view:validate.account.move:0
+msgid ""
+"All draft account entries in this journal and period will be validated. It "
+"means you won't be able to modify their accounting fields anymore."
+msgstr "この仕訳帳と期間の全てのドラフトアカウントエントリーは検証されます。もはやそれらのアカウントの項目は変更できないことを意味します。"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_finance_configuration
+msgid "Configuration"
+msgstr "設定"
+
+#. module: account
+#: field:account.automatic.reconcile,date1:0
+msgid "Starting Date"
+msgstr "開始日"
+
+#. module: account
+#: field:account.chart.template,property_account_income:0
+msgid "Income Account on Product Template"
+msgstr "製品テンプレート上の損益勘定"
+
+#. module: account
+#: code:addons/account/account.py:3120
+#, python-format
+msgid "MISC"
+msgstr "その他"
+
+#. module: account
+#: model:email.template,subject:account.email_template_edi_invoice
+msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a' })"
+msgstr "${object.company_id.name} 請求書(参照 ${object.number or 'n/a' })"
+
+#. module: account
+#: help:res.partner,last_reconciliation_date:0
+msgid ""
+"Date on which the partner accounting entries were reconciled last time"
+msgstr "最後にパートナー会計エントリーが消し込みされた日付"
+
+#. module: account
+#: field:account.fiscalyear.close,fy2_id:0
+msgid "New Fiscal Year"
+msgstr "新会計年度"
+
+#. module: account
+#: view:account.invoice:0
+#: view:account.tax.template:0
+#: selection:account.vat.declaration,based_on:0
+#: model:ir.actions.act_window,name:account.act_res_partner_2_account_invoice_opened
+#: model:ir.actions.act_window,name:account.action_invoice_tree
+#: model:ir.actions.report.xml,name:account.account_invoices
+#: view:report.invoice.created:0
+#: field:res.partner,invoice_ids:0
+msgid "Invoices"
+msgstr "請求書"
+
+#. module: account
+#: view:account.invoice:0
+msgid "My invoices"
+msgstr "私の請求書"
+
+#. module: account
+#: selection:account.bank.accounts.wizard,account_type:0
+msgid "Check"
+msgstr "確認"
+
+#. module: account
+#: view:account.invoice:0
+#: field:account.invoice,user_id:0
+#: view:account.invoice.report:0
+#: field:account.invoice.report,user_id:0
+msgid "Salesman"
+msgstr "販売員"
+
+#. module: account
+#: view:account.invoice.report:0
+msgid "Invoiced"
+msgstr "請求済"
+
+#. module: account
+#: view:account.move:0
+msgid "Posted Journal Entries"
+msgstr "記帳済仕訳帳エントリー"
+
+#. module: account
+#: view:account.use.model:0
+msgid "Use Model"
+msgstr "利用モデル"
+
+#. module: account
+#: help:account.invoice,partner_bank_id:0
+msgid ""
+"Bank Account Number to which the invoice will be paid. A Company bank "
+"account if this is a Customer Invoice or Supplier Refund, otherwise a "
+"Partner bank account number."
+msgstr "請求書が支払われる先の銀行口座番号。顧客請求書や仕入先返金であれば会社の銀行口座、さもなくばパートナーの銀行口座番号です。"
+
+#. module: account
+#: view:account.state.open:0
+msgid "No"
+msgstr ""
+
+#. module: account
+#: help:account.invoice.tax,tax_code_id:0
+msgid "The tax basis of the tax declaration."
+msgstr "税金申告の税金基準"
+
+#. module: account
+#: view:account.addtmpl.wizard:0
+msgid "Add"
+msgstr "追加"
+
+#. module: account
+#: selection:account.invoice,state:0
+#: report:account.overdue:0
+msgid "Paid"
+msgstr "支払済"
+
+#. module: account
+#: view:account.period.close:0
+msgid "Are you sure ?"
+msgstr "確かでしょうか?"
+
+#. module: account
+#: help:account.move.line,statement_id:0
+msgid "The bank statement used for bank reconciliation"
+msgstr "銀行消し込みのために使用される銀行取引明細書"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_suppliercustomerinvoice0
+msgid "Draft invoices are validated. "
+msgstr "ドラフト請求書は検証されます。 "
+
+#. module: account
+#: constraint:account.account.template:0
+msgid ""
+"Configuration Error!\n"
+"You can not define children to an account with internal type different of "
+"\"View\"! "
+msgstr ""
+"設定エラー。\n"
+"ビューと異なる内部タイプのアカウントに子を定義することはできません。 "
+
+#. module: account
+#: code:addons/account/account.py:923
+#, python-format
+msgid "Opening Period"
+msgstr "期首日"
+
+#. module: account
+#: view:account.move:0
+msgid "Journal Entries to Review"
+msgstr "レビューすべき仕訳帳エントリー"
+
+#. module: account
+#: view:account.bank.statement:0
+#: view:account.subscription:0
+msgid "Compute"
+msgstr "計算"
+
+#. module: account
+#: field:account.tax,type_tax_use:0
+msgid "Tax Application"
+msgstr "税金アプリケーション"
+
+#. module: account
+#: view:account.move:0
+#: view:account.move.line:0
+#: code:addons/account/wizard/account_move_journal.py:153
+#: model:ir.actions.act_window,name:account.act_account_journal_2_account_move_line
+#: model:ir.actions.act_window,name:account.act_account_move_to_account_move_line_open
+#: model:ir.actions.act_window,name:account.act_account_partner_account_move
+#: model:ir.actions.act_window,name:account.action_account_manual_reconcile
+#: model:ir.actions.act_window,name:account.action_account_moves_all_a
+#: model:ir.actions.act_window,name:account.action_account_moves_bank
+#: model:ir.actions.act_window,name:account.action_account_moves_purchase
+#: model:ir.actions.act_window,name:account.action_account_moves_sale
+#: model:ir.actions.act_window,name:account.action_move_line_search
+#: model:ir.actions.act_window,name:account.action_move_line_select
+#: model:ir.actions.act_window,name:account.action_move_line_tree1
+#: model:ir.actions.act_window,name:account.action_tax_code_line_open
+#: model:ir.model,name:account.model_account_move_line
+#: model:ir.ui.menu,name:account.menu_action_account_moves_all
+#: model:ir.ui.menu,name:account.menu_action_account_moves_bank
+#: model:ir.ui.menu,name:account.menu_eaction_account_moves_purchase
+#: model:ir.ui.menu,name:account.menu_eaction_account_moves_sale
+#, python-format
+msgid "Journal Items"
+msgstr "仕訳帳項目"
+
+#. module: account
+#: code:addons/account/account.py:1088
+#: code:addons/account/account.py:1090
+#: code:addons/account/account.py:1321
+#: code:addons/account/account.py:1563
+#: code:addons/account/account.py:1567
+#: code:addons/account/account.py:3368
+#: code:addons/account/account_move_line.py:807
+#: code:addons/account/account_move_line.py:830
+#: code:addons/account/account_move_line.py:832
+#: code:addons/account/account_move_line.py:835
+#: code:addons/account/account_move_line.py:837
+#: code:addons/account/report/common_report_header.py:92
+#: code:addons/account/wizard/account_change_currency.py:38
+#: code:addons/account/wizard/account_change_currency.py:59
+#: code:addons/account/wizard/account_change_currency.py:64
+#: code:addons/account/wizard/account_change_currency.py:70
+#: code:addons/account/wizard/account_financial_report.py:69
+#: code:addons/account/wizard/account_move_bank_reconcile.py:49
+#: code:addons/account/wizard/account_report_common.py:144
+#: code:addons/account/wizard/account_report_common.py:150
+#, python-format
+msgid "Error"
+msgstr "エラー"
+
+#. module: account
+#: field:account.analytic.balance,date2:0
+#: field:account.analytic.cost.ledger,date2:0
+#: field:account.analytic.cost.ledger.journal.report,date2:0
+#: field:account.analytic.inverted.balance,date2:0
+#: field:account.analytic.journal.report,date2:0
+msgid "End of period"
+msgstr "期末日"
+
+#. module: account
+#: view:res.partner:0
+msgid "Bank Details"
+msgstr "銀行詳細"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_partner_balance
+msgid ""
+"This report is analysis by partner. It is a PDF report containing one line "
+"per partner representing the cumulative credit balance."
+msgstr "このレポートはパートナによる分析です。それは累積する貸方残高を表すパートナ毎に1行のPDFレポートです。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_analytic_journal_tree
+msgid ""
+"To print an analytics (or costs) journal for a given period. The report give "
+"code, move name, account number, general amount and analytic amount."
+msgstr ""
+"所定の期間の分析(またはコスト)仕訳帳を印刷します。レポートはコードを与え、名前、アカウント番号、一般的な金額と分析的な金額を移動します。"
+
+#. module: account
+#: sql_constraint:account.invoice:0
+msgid "Invoice Number must be unique per Company!"
+msgstr "請求書番号は会社ごとに固有である必要があります。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_receivable_graph
+msgid "Balance by Type of Account"
+msgstr "アカウントのタイプ別残高"
+
+#. module: account
+#: view:account.fiscalyear.close:0
+msgid "Generate Fiscal Year Opening Entries"
+msgstr "会計年度開始エントリーの生成"
+
+#. module: account
+#: model:res.groups,name:account.group_account_user
+msgid "Accountant"
+msgstr "会計士"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_treasury_report_all
+msgid ""
+"From this view, have an analysis of your treasury. It sums the balance of "
+"every accounting entries made on liquidity accounts per period."
+msgstr "このビューから財務分析を行って下さい。これは期間毎に流動資産アカウント上に作られた全ての会計エントリーの残高を合計します。"
+
+#. module: account
+#: field:account.journal,group_invoice_lines:0
+msgid "Group Invoice Lines"
+msgstr "グループ請求書行"
+
+#. module: account
+#: view:account.invoice.cancel:0
+#: view:account.invoice.confirm:0
+msgid "Close"
+msgstr "閉じる"
+
+#. module: account
+#: field:account.bank.statement.line,move_ids:0
+msgid "Moves"
+msgstr "移動"
+
+#. module: account
+#: view:report.hr.timesheet.invoice.journal:0
+msgid "Sale journal in this month"
+msgstr "今月の売上仕訳帳"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_vat_declaration
+#: model:ir.model,name:account.model_account_vat_declaration
+msgid "Account Vat Declaration"
+msgstr "消費税申告アカウント"
+
+#. module: account
+#: report:account.invoice:0
+msgid "Price"
+msgstr "価格"
+
+#. module: account
+#: view:account.period:0
+msgid "To Close"
+msgstr "閉じる"
+
+#. module: account
+#: field:account.treasury.report,date:0
+msgid "Beginning of Period Date"
+msgstr "期首日"
+
+#. module: account
+#: code:addons/account/account.py:1351
+#, python-format
+msgid ""
+"You can not modify a posted entry of this journal !\n"
+"You should set the journal to allow cancelling entries if you want to do "
+"that."
+msgstr ""
+"この仕訳帳の記帳済エントリーは更新できません。\n"
+"変更を望む場合は、エントリーのキャンセルを許すように仕訳帳を設定する必要があります。"
+
+#. module: account
+#: model:ir.ui.menu,name:account.account_template_folder
+msgid "Templates"
+msgstr "テンプレート"
+
+#. module: account
+#: field:account.invoice.tax,name:0
+msgid "Tax Description"
+msgstr "税金説明"
+
+#. module: account
+#: field:account.tax,child_ids:0
+msgid "Child Tax Accounts"
+msgstr "子税金アカウント"
+
+#. module: account
+#: code:addons/account/account.py:1090
+#, python-format
+msgid "Start period should be smaller then End period"
+msgstr "期首日は期末日より小さくなければなりません。"
+
+#. module: account
+#: help:account.tax,price_include:0
+#: help:account.tax.template,price_include:0
+msgid ""
+"Check this if the price you use on the product and invoices includes this "
+"tax."
+msgstr "製品や請求書と使用する価格に税金が含まれている場合は、これをチェックして下さい。"
+
+#. module: account
+#: report:account.analytic.account.balance:0
+msgid "Analytic Balance -"
+msgstr "分析残高 -"
+
+#. module: account
+#: report:account.account.balance:0
+#: field:account.aged.trial.balance,target_move:0
+#: field:account.balance.report,target_move:0
+#: report:account.central.journal:0
+#: field:account.central.journal,target_move:0
+#: field:account.chart,target_move:0
+#: field:account.common.account.report,target_move:0
+#: field:account.common.journal.report,target_move:0
+#: field:account.common.partner.report,target_move:0
+#: field:account.common.report,target_move:0
+#: report:account.general.journal:0
+#: field:account.general.journal,target_move:0
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: report:account.journal.period.print:0
+#: report:account.journal.period.print.sale.purchase:0
+#: field:account.move.journal,target_move:0
+#: report:account.partner.balance:0
+#: field:account.partner.balance,target_move:0
+#: field:account.partner.ledger,target_move:0
+#: field:account.print.journal,target_move:0
+#: field:account.report.general.ledger,target_move:0
+#: field:account.tax.chart,target_move:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+#: field:account.vat.declaration,target_move:0
+#: field:accounting.report,target_move:0
+msgid "Target Moves"
+msgstr "ターゲットの移動"
+
+#. module: account
+#: model:account.payment.term,name:account.account_payment_term_net
+#: model:account.payment.term,note:account.account_payment_term_net
+msgid "30 Net Days"
+msgstr "正味30日"
+
+#. module: account
+#: field:account.subscription,period_type:0
+msgid "Period Type"
+msgstr "期間のタイプ"
+
+#. module: account
+#: view:account.invoice:0
+#: field:account.invoice,payment_ids:0
+#: selection:account.vat.declaration,based_on:0
+msgid "Payments"
+msgstr "支払"
+
+#. module: account
+#: view:account.tax:0
+msgid "Reverse Compute Code"
+msgstr "計算コードの反転"
+
+#. module: account
+#: field:account.subscription.line,move_id:0
+msgid "Entry"
+msgstr "エントリー"
+
+#. module: account
+#: field:account.tax,python_compute_inv:0
+#: field:account.tax.template,python_compute_inv:0
+msgid "Python Code (reverse)"
+msgstr "Pythonコード(リバース)"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_payment_term_form
+#: model:ir.ui.menu,name:account.menu_action_payment_term_form
+msgid "Payment Terms"
+msgstr "支払条件"
+
+#. module: account
+#: help:account.chart.template,complete_tax_set:0
+msgid ""
+"This boolean helps you to choose if you want to propose to the user to "
+"encode the sale and purchase rates or choose from list of taxes. This last "
+"choice assumes that the set of tax defined on this template is complete"
+msgstr ""
+"このブール値はユーザに売上と仕入レートのコード化を提案する、あるいは税金のリストから選択するかのどちらを望むかの選択を助けます。この最終選択はこのテンプレ"
+"ート上に定義された税金のセットが完全であると想定しています。"
+
+#. module: account
+#: view:account.financial.report:0
+#: field:account.financial.report,children_ids:0
+#: model:ir.model,name:account.model_account_financial_report
+msgid "Account Report"
+msgstr "会計表"
+
+#. module: account
+#: field:account.journal.column,name:0
+msgid "Column Name"
+msgstr "カラム名"
+
+#. module: account
+#: view:account.general.journal:0
+msgid ""
+"This report gives you an overview of the situation of your general journals"
+msgstr "このレポートはあなたの一般的な仕訳帳の状況の全体像を示しています。"
+
+#. module: account
+#: field:account.entries.report,year:0
+#: view:account.invoice.report:0
+#: field:account.invoice.report,year:0
+#: view:analytic.entries.report:0
+#: field:analytic.entries.report,year:0
+#: field:report.account.sales,name:0
+#: field:report.account_type.sales,name:0
+msgid "Year"
+msgstr "年"
+
+#. module: account
+#: field:account.bank.statement,starting_details_ids:0
+msgid "Opening Cashbox"
+msgstr "現金箱開設"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "Line 1:"
+msgstr "行1:"
+
+#. module: account
+#: code:addons/account/account.py:1307
+#, python-format
+msgid "Integrity Error !"
+msgstr "整合性エラー。"
+
+#. module: account
+#: field:account.tax.template,description:0
+msgid "Internal Name"
+msgstr "内部名称"
+
+#. module: account
+#: selection:account.subscription,period_type:0
+msgid "month"
+msgstr "月"
+
+#. module: account
+#: field:account.partner.reconcile.process,next_partner_id:0
+msgid "Next Partner to Reconcile"
+msgstr "調整の次のパートナー"
+
+#. module: account
+#: field:account.invoice.tax,account_id:0
+#: field:account.move.line,tax_code_id:0
+msgid "Tax Account"
+msgstr "税金アカウント"
+
+#. module: account
+#: view:account.automatic.reconcile:0
+msgid "Reconciliation result"
+msgstr "調整結果"
+
+#. module: account
+#: model:account.financial.report,name:account.account_financial_report_balancesheet0
+#: model:ir.ui.menu,name:account.menu_account_report_bs
+msgid "Balance Sheet"
+msgstr "貸借対照表"
+
+#. module: account
+#: view:account.general.journal:0
+#: model:ir.ui.menu,name:account.menu_account_general_journal
+msgid "General Journals"
+msgstr "一般仕訳帳"
+
+#. module: account
+#: field:account.journal,allow_date:0
+msgid "Check Date in Period"
+msgstr "日付期間内チェック"
+
+#. module: account
+#: model:ir.ui.menu,name:account.final_accounting_reports
+msgid "Accounting Reports"
+msgstr "会計表"
+
+#. module: account
+#: field:account.move,line_id:0
+#: view:analytic.entries.report:0
+#: model:ir.actions.act_window,name:account.act_account_acount_move_line_open
+#: model:ir.actions.act_window,name:account.action_move_line_form
+msgid "Entries"
+msgstr "エントリー"
+
+#. module: account
+#: view:account.entries.report:0
+msgid "This Period"
+msgstr "今期"
+
+#. module: account
+#: field:account.analytic.line,product_uom_id:0
+#: field:account.move.line,product_uom_id:0
+msgid "UoM"
+msgstr "単位"
+
+#. module: account
+#: code:addons/account/wizard/account_invoice_refund.py:146
+#, python-format
+msgid "No Period found on Invoice!"
+msgstr "請求書に期間が見つかりません。"
+
+#. module: account
+#: view:account.tax.template:0
+msgid "Compute Code (if type=code)"
+msgstr "計算コード(タイプがコードの場合)"
+
+#. module: account
+#: selection:account.analytic.journal,type:0
+#: view:account.journal:0
+#: selection:account.journal,type:0
+#: view:account.model:0
+#: selection:account.tax,type_tax_use:0
+#: view:account.tax.template:0
+#: selection:account.tax.template,type_tax_use:0
+msgid "Sale"
+msgstr "売上"
+
+#. module: account
+#: view:account.financial.report:0
+msgid "Report"
+msgstr "レポート"
+
+#. module: account
+#: view:account.analytic.line:0
+#: field:account.bank.statement.line,amount:0
+#: report:account.invoice:0
+#: field:account.invoice.tax,amount:0
+#: view:account.move:0
+#: field:account.move,amount:0
+#: view:account.move.line:0
+#: field:account.tax,amount:0
+#: field:account.tax.template,amount:0
+#: view:analytic.entries.report:0
+#: field:analytic.entries.report,amount:0
+msgid "Amount"
+msgstr "金額"
+
+#. module: account
+#: model:process.transition,name:account.process_transition_customerinvoice0
+#: model:process.transition,name:account.process_transition_paymentorderreconcilation0
+#: model:process.transition,name:account.process_transition_statemententries0
+#: model:process.transition,name:account.process_transition_suppliercustomerinvoice0
+#: model:process.transition,name:account.process_transition_suppliervalidentries0
+#: model:process.transition,name:account.process_transition_validentries0
+msgid "Validation"
+msgstr "検証"
+
+#. module: account
+#: field:account.tax,child_depend:0
+#: field:account.tax.template,child_depend:0
+msgid "Tax on Children"
+msgstr "子の税金"
+
+#. module: account
+#: model:ir.model,name:account.model_account_fiscal_position_tax_template
+msgid "Template Tax Fiscal Position"
+msgstr "税金会計ポジションテンプレート"
+
+#. module: account
+#: field:account.journal,update_posted:0
+msgid "Allow Cancelling Entries"
+msgstr "エントリーのキャンセル許可"
+
+#. module: account
+#: field:account.tax.code,sign:0
+msgid "Coefficent for parent"
+msgstr "親の係数"
+
+#. module: account
+#: view:account.analytic.account:0
+msgid "Analytic Accounts with a past deadline."
+msgstr "過去期限の分析アカウント"
+
+#. module: account
+#: report:account.partner.balance:0
+msgid "(Account/Partner) Name"
+msgstr "アカウント / パートナ名"
+
+#. module: account
+#: view:account.bank.statement:0
+msgid "Transaction"
+msgstr "取引"
+
+#. module: account
+#: help:account.tax,base_code_id:0
+#: help:account.tax,ref_base_code_id:0
+#: help:account.tax,ref_tax_code_id:0
+#: help:account.tax,tax_code_id:0
+#: help:account.tax.template,base_code_id:0
+#: help:account.tax.template,ref_base_code_id:0
+#: help:account.tax.template,ref_tax_code_id:0
+#: help:account.tax.template,tax_code_id:0
+msgid "Use this code for the VAT declaration."
+msgstr "消費税申請にこのコードを使って下さい。"
+
+#. module: account
+#: field:account.partner.reconcile.process,progress:0
+msgid "Progress"
+msgstr "進捗状況"
+
+#. module: account
+#: view:report.hr.timesheet.invoice.journal:0
+msgid "Analytic Entries Stats"
+msgstr "分析エントリーの統計値"
+
+#. module: account
+#: field:wizard.multi.charts.accounts,bank_accounts_id:0
+msgid "Cash and Banks"
+msgstr "現金と銀行"
+
+#. module: account
+#: model:ir.model,name:account.model_account_installer
+msgid "account.installer"
+msgstr ""
+
+#. module: account
+#: field:account.tax.template,include_base_amount:0
+msgid "Include in Base Amount"
+msgstr "基本金額に含む"
+
+#. module: account
+#: help:account.payment.term.line,days:0
+msgid ""
+"Number of days to add before computation of the day of month.If Date=15/01, "
+"Number of Days=22, Day of Month=-1, then the due date is 28/02."
+msgstr "月の日の計算前に日数を加算します。日付が1月15日、日数が22日、月の日が -1(月末日を意味する)の時、期日は2月28日です。"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "Amount Computation"
+msgstr "金額計算"
+
+#. module: account
+#: view:account.journal:0
+msgid "Entry Controls"
+msgstr "エントリー制御"
+
+#. module: account
+#: view:account.analytic.chart:0
+#: view:project.account.analytic.line:0
+msgid "(Keep empty to open the current situation)"
+msgstr "(現在の状態を開くために空のままとして下さい)"
+
+#. module: account
+#: field:account.analytic.balance,date1:0
+#: field:account.analytic.cost.ledger,date1:0
+#: field:account.analytic.cost.ledger.journal.report,date1:0
+#: field:account.analytic.inverted.balance,date1:0
+#: field:account.analytic.journal.report,date1:0
+msgid "Start of period"
+msgstr "期首日"
+
+#. module: account
+#: model:ir.model,name:account.model_account_common_account_report
+msgid "Account Common Account Report"
+msgstr "アカウント共通アカウントレポート"
+
+#. module: account
+#: field:account.bank.statement.line,name:0
+#: field:account.invoice,reference:0
+msgid "Communication"
+msgstr "通信"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_analytic_accounting
+msgid "Analytic Accounting"
+msgstr "分析会計"
+
+#. module: account
+#: field:account.partner.ledger,initial_balance:0
+#: field:account.report.general.ledger,initial_balance:0
+msgid "Include Initial Balances"
+msgstr "期首残高を含む"
+
+#. module: account
+#: selection:account.invoice,type:0
+#: selection:account.invoice.report,type:0
+#: selection:report.invoice.created,type:0
+msgid "Customer Refund"
+msgstr "顧客返金"
+
+#. module: account
+#: constraint:account.move:0
+msgid ""
+"You can not create more than one move per period on centralized journal"
+msgstr "一元化仕訳帳上では期間毎に1回以上の移動を作成することは出来ません。"
+
+#. module: account
+#: field:account.tax,ref_tax_sign:0
+#: field:account.tax,tax_sign:0
+#: field:account.tax.template,ref_tax_sign:0
+#: field:account.tax.template,tax_sign:0
+msgid "Tax Code Sign"
+msgstr "税金コード記号"
+
+#. module: account
+#: model:ir.model,name:account.model_report_invoice_created
+msgid "Report of Invoices Created within Last 15 days"
+msgstr "過去15日以内に作成した請求書のレポート"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "  Number of Days: 14"
+msgstr "  日数:14"
+
+#. module: account
+#: field:account.fiscalyear,end_journal_period_id:0
+msgid "End of Year Entries Journal"
+msgstr "年度エントリー仕訳帳の末尾"
+
+#. module: account
+#: code:addons/account/account.py:3446
+#: code:addons/account/account_bank_statement.py:338
+#: code:addons/account/account_invoice.py:427
+#: code:addons/account/account_invoice.py:527
+#: code:addons/account/account_invoice.py:542
+#: code:addons/account/account_invoice.py:550
+#: code:addons/account/account_invoice.py:572
+#: code:addons/account/wizard/account_move_journal.py:63
+#, python-format
+msgid "Configuration Error !"
+msgstr "設定エラー。"
+
+#. module: account
+#: field:account.payment.term.line,value_amount:0
+msgid "Amount To Pay"
+msgstr "支払金額"
+
+#. module: account
+#: help:account.partner.reconcile.process,to_reconcile:0
+msgid ""
+"This is the remaining partners for who you should check if there is "
+"something to reconcile or not. This figure already count the current partner "
+"as reconciled."
+msgstr ""
+"これは消し込みの有無によらず、何らかの確認しなければならない残りのパートナです。消し込みとしてこの数値には既に現在のパートナが含まれています。"
+
+#. module: account
+#: view:account.subscription.line:0
+msgid "Subscription lines"
+msgstr "サブスクリプション行"
+
+#. module: account
+#: field:account.entries.report,quantity:0
+msgid "Products Quantity"
+msgstr "製品数量"
+
+#. module: account
+#: view:account.entries.report:0
+#: selection:account.entries.report,move_state:0
+#: view:account.move:0
+#: selection:account.move,state:0
+#: view:account.move.line:0
+msgid "Unposted"
+msgstr "未記帳"
+
+#. module: account
+#: view:account.change.currency:0
+#: model:ir.actions.act_window,name:account.action_account_change_currency
+#: model:ir.model,name:account.model_account_change_currency
+msgid "Change Currency"
+msgstr "通貨変更"
+
+#. module: account
+#: view:account.invoice:0
+msgid "This action will erase taxes"
+msgstr "このアクションは税金を消去します。"
+
+#. module: account
+#: model:process.node,note:account.process_node_accountingentries0
+#: model:process.node,note:account.process_node_supplieraccountingentries0
+msgid "Accounting entries."
+msgstr "会計エントリー"
+
+#. module: account
+#: view:account.invoice:0
+msgid "Payment Date"
+msgstr "支払日"
+
+#. module: account
+#: view:account.analytic.account:0
+#: model:ir.actions.act_window,name:account.action_account_analytic_account_form
+#: model:ir.ui.menu,name:account.account_analytic_def_account
+msgid "Analytic Accounts"
+msgstr "分析アカウント"
+
+#. module: account
+#: view:account.invoice.report:0
+msgid "Customer Invoices And Refunds"
+msgstr "顧客請求書と返金"
+
+#. module: account
+#: field:account.analytic.line,amount_currency:0
+#: field:account.entries.report,amount_currency:0
+#: field:account.model.line,amount_currency:0
+#: field:account.move.line,amount_currency:0
+msgid "Amount Currency"
+msgstr "通貨金額"
+
+#. module: account
+#: code:addons/account/wizard/account_validate_account_move.py:39
+#, python-format
+msgid ""
+"Specified Journal does not have any account move entries in draft state for "
+"this period"
+msgstr "指定された仕訳帳はこの期間にひとつもドラフト状態のアカウント移動エントリーを持っていません。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_view_move_line
+msgid "Lines to reconcile"
+msgstr "消し込み行"
+
+#. module: account
+#: report:account.analytic.account.balance:0
+#: report:account.analytic.account.inverted.balance:0
+#: report:account.analytic.account.quantity_cost_ledger:0
+#: report:account.invoice:0
+#: field:account.invoice.line,quantity:0
+#: field:account.model.line,quantity:0
+#: field:account.move.line,quantity:0
+#: view:analytic.entries.report:0
+#: field:analytic.entries.report,unit_amount:0
+#: field:report.account.sales,quantity:0
+#: field:report.account_type.sales,quantity:0
+msgid "Quantity"
+msgstr "数量"
+
+#. module: account
+#: view:account.move.line:0
+msgid "Number (Move)"
+msgstr "番号(移動)"
+
+#. module: account
+#: view:analytic.entries.report:0
+msgid "Analytic Entries during last 7 days"
+msgstr "過去7日間の分析エントリー"
+
+#. module: account
+#: selection:account.financial.report,style_overwrite:0
+msgid "Normal Text"
+msgstr "通常のテキスト"
+
+#. module: account
+#: view:account.invoice.refund:0
+msgid "Refund Invoice Options"
+msgstr "返金請求書オプション"
+
+#. module: account
+#: help:account.automatic.reconcile,power:0
+msgid ""
+"Number of partial amounts that can be combined to find a balance point can "
+"be chosen as the power of the automatic reconciliation"
+msgstr "バランスポイントを見つけるために組み合わせることのできる部分的な量の数は、自動消し込みの能力として選択されます。"
+
+#. module: account
+#: help:account.payment.term.line,sequence:0
+msgid ""
+"The sequence field is used to order the payment term lines from the lowest "
+"sequences to the higher ones"
+msgstr "順序項目は低い順序から高いものへ支払条件行を並べるために使われます。"
+
+#. module: account
+#: view:account.fiscal.position.template:0
+#: field:account.fiscal.position.template,name:0
+msgid "Fiscal Position Template"
+msgstr "会計ポジションテンプレート"
+
+#. module: account
+#: view:account.analytic.chart:0
+#: view:account.chart:0
+#: view:account.tax.chart:0
+msgid "Open Charts"
+msgstr "チャートを開く"
+
+#. module: account
+#: view:account.fiscalyear.close.state:0
+msgid ""
+"If no additional entries should be recorded on a fiscal year, you can close "
+"it from here. It will close all opened periods in this year that will make "
+"impossible any new entry record. Close a fiscal year when you need to "
+"finalize your end of year results definitive "
+msgstr ""
+"会計年度上において追加エントリーを記録する必要がない時、ここから閉じることができます。それはどんな新しいレコードの入力も不可能にして、今年度の全ての開いて"
+"いる期間を閉じます。最終的な年度末の結果を確定する必要がある場合は会計年度を閉じて下さい。 "
+
+#. module: account
+#: field:account.central.journal,amount_currency:0
+#: field:account.common.journal.report,amount_currency:0
+#: field:account.general.journal,amount_currency:0
+#: field:account.partner.ledger,amount_currency:0
+#: field:account.print.journal,amount_currency:0
+#: field:account.report.general.ledger,amount_currency:0
+msgid "With Currency"
+msgstr "通貨で"
+
+#. module: account
+#: view:account.bank.statement:0
+msgid "Open CashBox"
+msgstr "現金箱を開く"
+
+#. module: account
+#: selection:account.financial.report,style_overwrite:0
+msgid "Automatic formatting"
+msgstr "自動フォーマット"
+
+#. module: account
+#: code:addons/account/account.py:963
+#, python-format
+msgid ""
+"No fiscal year defined for this date !\n"
+"Please create one from the configuration of the accounting menu."
+msgstr ""
+"この日付での会計年度が定義されていません。\n"
+"会計メニューの設定からそれを作成して下さい。"
+
+#. module: account
+#: view:account.move.line.reconcile:0
+msgid "Reconcile With Write-Off"
+msgstr "償却して消し込み"
+
+#. module: account
+#: selection:account.payment.term.line,value:0
+#: selection:account.tax,type:0
+msgid "Fixed Amount"
+msgstr "固定金額"
+
+#. module: account
+#: view:account.subscription:0
+msgid "Valid Up to"
+msgstr "有効な最大値"
+
+#. module: account
+#: view:account.journal:0
+msgid "Invoicing Data"
+msgstr "請求日"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_automatic_reconcile
+msgid "Account Automatic Reconcile"
+msgstr "アカウント自動消し込み"
+
+#. module: account
+#: view:account.move:0
+#: view:account.move.line:0
+msgid "Journal Item"
+msgstr "仕訳帳項目"
+
+#. module: account
+#: model:ir.model,name:account.model_account_move_journal
+msgid "Move journal"
+msgstr "仕訳帳移動"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_fiscalyear_close
+#: model:ir.ui.menu,name:account.menu_wizard_fy_close
+msgid "Generate Opening Entries"
+msgstr "開始エントリーの生成"
+
+#. module: account
+#: code:addons/account/account_move_line.py:759
+#, python-format
+msgid "Already Reconciled!"
+msgstr "既に消し込み済です。"
+
+#. module: account
+#: help:account.tax,type:0
+msgid "The computation method for the tax amount."
+msgstr "税額の計算方法"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "Due Date Computation"
+msgstr "期日計算"
+
+#. module: account
+#: field:report.invoice.created,create_date:0
+msgid "Create Date"
+msgstr "作成日"
+
+#. module: account
+#: view:account.analytic.journal:0
+#: model:ir.actions.act_window,name:account.action_account_analytic_journal_form
+#: model:ir.ui.menu,name:account.account_def_analytic_journal
+msgid "Analytic Journals"
+msgstr "分析仕訳帳"
+
+#. module: account
+#: field:account.account,child_id:0
+msgid "Child Accounts"
+msgstr "子アカウント"
+
+#. module: account
+#: code:addons/account/account_move_line.py:1214
+#, python-format
+msgid "Move name (id): %s (%s)"
+msgstr "移動名(ID):%s(%s)"
+
+#. module: account
+#: view:account.move.line.reconcile:0
+#: code:addons/account/account_move_line.py:857
+#, python-format
+msgid "Write-Off"
+msgstr "償却"
+
+#. module: account
+#: field:res.partner,debit:0
+msgid "Total Payable"
+msgstr "買掛金合計"
+
+#. module: account
+#: model:account.account.type,name:account.data_account_type_income
+#: model:account.financial.report,name:account.account_financial_report_income0
+msgid "Income"
+msgstr "収益"
+
+#. module: account
+#: selection:account.bank.statement.line,type:0
+#: view:account.invoice:0
+#: view:account.invoice.report:0
+#: code:addons/account/account_invoice.py:339
+#, python-format
+msgid "Supplier"
+msgstr "仕入先"
+
+#. module: account
+#: selection:account.entries.report,month:0
+#: selection:account.invoice.report,month:0
+#: selection:analytic.entries.report,month:0
+#: selection:report.account.sales,month:0
+#: selection:report.account_type.sales,month:0
+msgid "March"
+msgstr "3月"
+
+#. module: account
+#: view:account.account.template:0
+msgid "Account Template"
+msgstr "アカウントテンプレート"
+
+#. module: account
+#: report:account.journal.period.print.sale.purchase:0
+msgid "VAT"
+msgstr "消費税"
+
+#. module: account
+#: report:account.analytic.account.journal:0
+msgid "Account n°"
+msgstr "アカウント番号"
+
+#. module: account
+#: code:addons/account/account_invoice.py:88
+#, python-format
+msgid "Free Reference"
+msgstr "自由参照"
+
+#. module: account
+#: field:account.payment.term.line,value:0
+msgid "Valuation"
+msgstr "評価"
+
+#. module: account
+#: selection:account.aged.trial.balance,result_selection:0
+#: selection:account.common.partner.report,result_selection:0
+#: selection:account.partner.balance,result_selection:0
+#: selection:account.partner.ledger,result_selection:0
+#: code:addons/account/report/account_partner_balance.py:301
+#, python-format
+msgid "Receivable and Payable Accounts"
+msgstr "売掛金と買掛金"
+
+#. module: account
+#: field:account.fiscal.position.account.template,position_id:0
+msgid "Fiscal Mapping"
+msgstr "会計マッピング"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_state_open
+#: model:ir.model,name:account.model_account_state_open
+msgid "Account State Open"
+msgstr "アカウント状態を開く"
+
+#. module: account
+#: report:account.analytic.account.quantity_cost_ledger:0
+msgid "Max Qty:"
+msgstr "最大数量"
+
+#. module: account
+#: view:account.invoice.refund:0
+msgid "Refund Invoice"
+msgstr "返金請求書"
+
+#. module: account
+#: field:account.invoice,address_invoice_id:0
+msgid "Invoice Address"
+msgstr "請求書住所"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_entries_report_all
+msgid ""
+"From this view, have an analysis of your different financial accounts. The "
+"document shows your debit and credit taking in consideration some criteria "
+"you can choose by using the search tool."
+msgstr ""
+"このビューから異なる財務アカウントの分析を行います。このドキュメントは検索ツールを使って選択できる幾つかの基準で考察された借方と貸方を示します。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_tax_code_list
+msgid ""
+"The tax code definition depends on the tax declaration of your country. "
+"OpenERP allows you to define the tax structure and manage it from this menu. "
+"You can define both numeric and alphanumeric tax codes."
+msgstr ""
+"税金コードの定義はあなたの国の税金定義に依存します。OpenERPのこのメニューから税金構造と管理のための定義ができます。税金コードは数字と英数字の両方を"
+"定義できます。"
+
+#. module: account
+#: help:account.partner.reconcile.process,progress:0
+msgid ""
+"Shows you the progress made today on the reconciliation process. Given by \n"
+"Partners Reconciled Today \\ (Remaining Partners + Partners Reconciled Today)"
+msgstr ""
+"本日の消し込み処理の進捗状況を示してます。それは次式で計算されます。\n"
+"本日のパートナ消し込み後 / (残りのパートナ + 本日のパートナ消し込み後 )"
+
+#. module: account
+#: help:account.payment.term.line,value:0
+msgid ""
+"Select here the kind of valuation related to this payment term line. Note "
+"that you should have your last line with the type 'Balance' to ensure that "
+"the whole amount will be threated."
+msgstr ""
+"ここではこの支払条件行に関連する評価の種類を選択して下さい。全体の金額が扱われることを保証するために、最終行がバランスタイプを持つべきであることに注意して"
+"下さい。"
+
+#. module: account
+#: field:account.invoice,period_id:0
+#: field:account.invoice.report,period_id:0
+#: field:report.account.sales,period_id:0
+#: field:report.account_type.sales,period_id:0
+msgid "Force Period"
+msgstr "強制期間"
+
+#. module: account
+#: view:account.invoice.report:0
+#: field:account.invoice.report,nbr:0
+msgid "# of Lines"
+msgstr "行数"
+
+#. module: account
+#: field:account.aged.trial.balance,filter:0
+#: field:account.balance.report,filter:0
+#: field:account.central.journal,filter:0
+#: field:account.common.account.report,filter:0
+#: field:account.common.journal.report,filter:0
+#: field:account.common.partner.report,filter:0
+#: field:account.common.report,filter:0
+#: field:account.general.journal,filter:0
+#: field:account.partner.balance,filter:0
+#: field:account.partner.ledger,filter:0
+#: field:account.print.journal,filter:0
+#: field:account.report.general.ledger,filter:0
+#: field:account.vat.declaration,filter:0
+#: field:accounting.report,filter:0
+#: field:accounting.report,filter_cmp:0
+msgid "Filter by"
+msgstr "フィルタ"
+
+#. module: account
+#: code:addons/account/account.py:2256
+#, python-format
+msgid "You have a wrong expression \"%(...)s\" in your model !"
+msgstr "モデルの中に誤った式があります:%(...)s"
+
+#. module: account
+#: field:account.bank.statement.line,date:0
+msgid "Entry Date"
+msgstr "入力日"
+
+#. module: account
+#: code:addons/account/account_move_line.py:1155
+#: code:addons/account/account_move_line.py:1238
+#, python-format
+msgid "You can not use an inactive account!"
+msgstr "非アクティブなアカウントを使うことはできません。"
+
+#. module: account
+#: code:addons/account/account_move_line.py:830
+#, python-format
+msgid "Entries are not of the same account or already reconciled ! "
+msgstr "エントリーは同じアカウントのものでないか、または既に消し込み済です。 "
+
+#. module: account
+#: help:account.bank.statement,balance_end:0
+msgid "Balance as calculated based on Starting Balance and transaction lines"
+msgstr "期首残高と取引行を基本に計算された残高"
+
+#. module: account
+#: code:addons/account/wizard/account_change_currency.py:64
+#: code:addons/account/wizard/account_change_currency.py:70
+#, python-format
+msgid "Current currency is not configured properly !"
+msgstr "現在の通貨が正しく設定されていません。"
+
+#. module: account
+#: field:account.tax,account_collected_id:0
+#: field:account.tax.template,account_collected_id:0
+msgid "Invoice Tax Account"
+msgstr "請求書税金アカウント"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_general_journal
+#: model:ir.model,name:account.model_account_general_journal
+msgid "Account General Journal"
+msgstr "アカウント一般仕訳帳"
+
+#. module: account
+#: field:account.payment.term.line,days:0
+msgid "Number of Days"
+msgstr "日数"
+
+#. module: account
+#: code:addons/account/account_bank_statement.py:402
+#: code:addons/account/account_invoice.py:392
+#: code:addons/account/wizard/account_period_close.py:51
+#, python-format
+msgid "Invalid action !"
+msgstr "無効なアクションです。"
+
+#. module: account
+#: code:addons/account/wizard/account_move_journal.py:102
+#, python-format
+msgid "Period: %s"
+msgstr "期間:%s"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_review_financial_journals_installer
+msgid "Review your Financial Journals"
+msgstr "財務仕訳帳のレビュー"
+
+#. module: account
+#: help:account.tax,name:0
+msgid "This name will be displayed on reports"
+msgstr "この名前はレポートに表示されます。"
+
+#. module: account
+#: report:account.analytic.account.cost_ledger:0
+#: report:account.analytic.account.quantity_cost_ledger:0
+msgid "Printing date"
+msgstr "印刷日"
+
+#. module: account
+#: selection:account.account.type,close_method:0
+#: selection:account.tax,type:0
+#: selection:account.tax.template,type:0
+msgid "None"
+msgstr "なし"
+
+#. module: account
+#: view:analytic.entries.report:0
+msgid "  365 Days  "
+msgstr "  365日  "
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_invoice_tree3
+#: model:ir.ui.menu,name:account.menu_action_invoice_tree3
+msgid "Customer Refunds"
+msgstr "顧客返金"
+
+#. module: account
+#: field:account.account,foreign_balance:0
+msgid "Foreign Balance"
+msgstr "国外残高"
+
+#. module: account
+#: field:account.journal.period,name:0
+msgid "Journal-Period Name"
+msgstr "仕訳帳期間名"
+
+#. module: account
+#: field:account.invoice.tax,factor_base:0
+msgid "Multipication factor for Base code"
+msgstr "基本コードの倍率"
+
+#. module: account
+#: code:addons/account/wizard/account_report_common.py:150
+#, python-format
+msgid "not implemented"
+msgstr "未実装"
+
+#. module: account
+#: help:account.journal,company_id:0
+msgid "Company related to this journal"
+msgstr "この仕訳帳と関係する会社"
+
+#. module: account
+#: code:addons/account/wizard/account_invoice_state.py:44
+#, python-format
+msgid ""
+"Selected Invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-"
+"Forma' state!"
+msgstr "選択された請求書はドラフトでもプロフォーマ状態でもないため確認できません。"
+
+#. module: account
+#: view:account.subscription:0
+msgid "Running Subscription"
+msgstr "サブスクリプション期間中"
+
+#. module: account
+#: report:account.invoice:0
+msgid "Fiscal Position Remark :"
+msgstr "会計ポジション注釈:"
+
+#. module: account
+#: view:analytic.entries.report:0
+#: model:ir.actions.act_window,name:account.action_analytic_entries_report
+#: model:ir.ui.menu,name:account.menu_action_analytic_entries_report
+msgid "Analytic Entries Analysis"
+msgstr "分析エントリーの分析"
+
+#. module: account
+#: selection:account.aged.trial.balance,direction_selection:0
+msgid "Past"
+msgstr "過去"
+
+#. module: account
+#: constraint:account.account:0
+msgid ""
+"Configuration Error! \n"
+"You can not define children to an account with internal type different of "
+"\"View\"! "
+msgstr ""
+"設定エラー。 \n"
+"ビューと異なる内部タイプのアカウントには子を定義することはできません。 "
+
+#. module: account
+#: help:res.partner.bank,journal_id:0
+msgid ""
+"This journal will be created automatically for this bank account when you "
+"save the record"
+msgstr "このレコードを保存する時に、この銀行口座のための仕訳帳が自動的に作成されます。"
+
+#. module: account
+#: view:account.analytic.line:0
+msgid "Analytic Entry"
+msgstr "分析エントリー"
+
+#. module: account
+#: view:res.company:0
+#: field:res.company,overdue_msg:0
+msgid "Overdue Payments Message"
+msgstr "支払延滞のメッセージ"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_moves_all_a
+msgid ""
+"This view can be used by accountants in order to quickly record entries in "
+"OpenERP. If you want to record a supplier invoice, start by recording the "
+"line of the expense account. OpenERP will propose to you automatically the "
+"Tax related to this account and the counterpart \"Account Payable\"."
+msgstr ""
+"このビューはOpenERPにすばやくエントリーを記録するために会計士によって使われます。仕入先請求書を記録する場合、費用勘定の行を記録することにより開始し"
+"ます。OpenERPはこのアカウントと関連する税金と相手方の買掛金を提案します。"
+
+#. module: account
+#: field:account.entries.report,date_created:0
+msgid "Date Created"
+msgstr "作成日"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form
+msgid "account.analytic.line.extended"
+msgstr ""
+
+#. module: account
+#: view:account.invoice:0
+msgid "(keep empty to use the current period)"
+msgstr "(今期を使う場合は空のままとして下さい)"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_supplierreconcilepaid0
+msgid ""
+"As soon as the reconciliation is done, the invoice's state turns to “done” "
+"(i.e. paid) in the system."
+msgstr "消し込みを完了するや否や、請求書の状態はシステム内で完了(すなわち支払済)となります。"
+
+#. module: account
+#: view:account.chart.template:0
+#: field:account.chart.template,account_root_id:0
+msgid "Root Account"
+msgstr "ルートアカウント"
+
+#. module: account
+#: field:res.partner,last_reconciliation_date:0
+msgid "Latest Reconciliation Date"
+msgstr "消し込み調整日"
+
+#. module: account
+#: model:ir.model,name:account.model_account_analytic_line
+msgid "Analytic Line"
+msgstr "分析行"
+
+#. module: account
+#: field:product.template,taxes_id:0
+msgid "Customer Taxes"
+msgstr "顧客の税金"
+
+#. module: account
+#: help:account.model,name:0
+msgid "This is a model for recurring accounting entries"
+msgstr "これは定期会計エントリーのモデルです。"
+
+#. module: account
+#: field:wizard.multi.charts.accounts,sale_tax_rate:0
+msgid "Sales Tax(%)"
+msgstr "消費税(売上)(%)"
+
+#. module: account
+#: view:account.addtmpl.wizard:0
+msgid "Create an Account based on this template"
+msgstr "このテンプレートに基づくアカウントの作成"
+
+#. module: account
+#: view:account.account.type:0
+#: view:account.tax.code:0
+msgid "Reporting Configuration"
+msgstr "レポート設定"
+
+#. module: account
+#: field:account.tax,type:0
+#: field:account.tax.template,type:0
+msgid "Tax Type"
+msgstr "税金タイプ"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_template_form
+#: model:ir.ui.menu,name:account.menu_action_account_template_form
+msgid "Account Templates"
+msgstr "アカウントテンプレート"
+
+#. module: account
+#: help:wizard.multi.charts.accounts,complete_tax_set:0
+msgid ""
+"This boolean helps you to choose if you want to propose to the user to "
+"encode the sales and purchase rates or use the usual m2o fields. This last "
+"choice assumes that the set of tax defined for the chosen template is "
+"complete"
+msgstr ""
+"このブール値はユーザに売上と仕入レートのコード化を提案する、あるいは通常のオーダーメイド項目を使うのどちらを望むかの選択を助けます。この最終選択は選択した"
+"テンプレート上に定義された税金のセットが完全であると想定しています。"
+
+#. module: account
+#: report:account.vat.declaration:0
+msgid "Tax Statement"
+msgstr "税金明細書"
+
+#. module: account
+#: model:ir.model,name:account.model_res_company
+msgid "Companies"
+msgstr "会社"
+
+#. module: account
+#: view:account.invoice.report:0
+msgid "Open and Paid Invoices"
+msgstr "開いていて支払済の請求書"
+
+#. module: account
+#: selection:account.financial.report,display_detail:0
+msgid "Display children flat"
+msgstr "子を平坦に表示"
+
+#. module: account
+#: code:addons/account/account.py:629
+#, python-format
+msgid ""
+"You can not remove/desactivate an account which is set on a customer or "
+"supplier."
+msgstr "顧客や仕入先に設定されたアカウントを削除したり無効にすることはできません。"
+
+#. module: account
+#: help:account.fiscalyear.close.state,fy_id:0
+msgid "Select a fiscal year to close"
+msgstr "閉じる会計年度の選択"
+
+#. module: account
+#: help:account.chart.template,tax_template_ids:0
+msgid "List of all the taxes that have to be installed by the wizard"
+msgstr "ウィザードによりインストールされるべき全ての税金のリスト"
+
+#. module: account
+#: model:ir.actions.report.xml,name:account.account_intracom
+msgid "IntraCom"
+msgstr ""
+
+#. module: account
+#: view:account.move.line.reconcile.writeoff:0
+msgid "Information addendum"
+msgstr "情報の追加"
+
+#. module: account
+#: field:account.chart,fiscalyear:0
+msgid "Fiscal year"
+msgstr "会計年度"
+
+#. module: account
+#: view:account.move.reconcile:0
+msgid "Partial Reconcile Entries"
+msgstr "部分消し込みエントリー"
+
+#. module: account
+#: view:account.addtmpl.wizard:0
+#: view:account.aged.trial.balance:0
+#: view:account.analytic.balance:0
+#: view:account.analytic.chart:0
+#: view:account.analytic.cost.ledger:0
+#: view:account.analytic.cost.ledger.journal.report:0
+#: view:account.analytic.inverted.balance:0
+#: view:account.analytic.journal.report:0
+#: view:account.automatic.reconcile:0
+#: view:account.bank.statement:0
+#: view:account.change.currency:0
+#: view:account.chart:0
+#: view:account.common.report:0
+#: view:account.fiscalyear.close:0
+#: view:account.fiscalyear.close.state:0
+#: view:account.invoice:0
+#: view:account.invoice.refund:0
+#: view:account.journal.select:0
+#: view:account.move:0
+#: view:account.move.bank.reconcile:0
+#: view:account.move.line.reconcile:0
+#: view:account.move.line.reconcile.select:0
+#: view:account.move.line.reconcile.writeoff:0
+#: view:account.move.line.unreconcile.select:0
+#: view:account.open.closed.fiscalyear:0
+#: view:account.partner.reconcile.process:0
+#: view:account.period.close:0
+#: view:account.subscription.generate:0
+#: view:account.tax.chart:0
+#: view:account.unreconcile:0
+#: view:account.unreconcile.reconcile:0
+#: view:account.use.model:0
+#: view:account.vat.declaration:0
+#: code:addons/account/wizard/account_move_journal.py:105
+#: view:project.account.analytic.line:0
+#: view:validate.account.move:0
+#: view:validate.account.move.lines:0
+#, python-format
+msgid "Cancel"
+msgstr "キャンセル"
+
+#. module: account
+#: selection:account.account,type:0
+#: selection:account.account.template,type:0
+#: model:account.account.type,name:account.data_account_type_receivable
+#: selection:account.entries.report,type:0
+msgid "Receivable"
+msgstr "売掛金"
+
+#. module: account
+#: constraint:account.move.line:0
+msgid "Company must be the same for its related account and period."
+msgstr "会社は関連するアカウントと期間は同じでなければなりません。"
+
+#. module: account
+#: view:account.invoice:0
+msgid "Other Info"
+msgstr "他の情報"
+
+#. module: account
+#: field:account.journal,default_credit_account_id:0
+msgid "Default Credit Account"
+msgstr "デフォルト貸方勘定"
+
+#. module: account
+#: help:account.analytic.line,currency_id:0
+msgid "The related account currency if not equal to the company one."
+msgstr "会社の通貨と等しくない場合は関連するアカウントの通貨"
+
+#. module: account
+#: view:account.analytic.account:0
+msgid "Current"
+msgstr "現在"
+
+#. module: account
+#: view:account.bank.statement:0
+msgid "CashBox"
+msgstr "現金箱"
+
+#. module: account
+#: model:account.account.type,name:account.account_type_cash_equity
+msgid "Equity"
+msgstr "株式"
+
+#. module: account
+#: selection:account.tax,type:0
+msgid "Percentage"
+msgstr "パーセンテージ"
+
+#. module: account
+#: selection:account.report.general.ledger,sortby:0
+msgid "Journal & Partner"
+msgstr "仕訳帳とパートナ"
+
+#. module: account
+#: field:account.automatic.reconcile,power:0
+msgid "Power"
+msgstr "電力"
+
+#. module: account
+#: code:addons/account/account.py:3368
+#, python-format
+msgid "Cannot generate an unused journal code."
+msgstr ""
+
+#. module: account
+#: view:project.account.analytic.line:0
+msgid "View Account Analytic Lines"
+msgstr "アカウント分析行の表示"
+
+#. module: account
+#: field:account.invoice,internal_number:0
+#: field:report.invoice.created,number:0
+msgid "Invoice Number"
+msgstr "請求書番号"
+
+#. module: account
+#: help:account.tax,include_base_amount:0
+msgid ""
+"Indicates if the amount of tax must be included in the base amount for the "
+"computation of the next taxes"
+msgstr "次回税金の計算のために基本金額に税額が含まれるべきかを示して下さい。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_partner_reconcile
+msgid "Reconciliation: Go to Next Partner"
+msgstr "消し込み:次のパートナへ"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_analytic_invert_balance
+#: model:ir.actions.report.xml,name:account.account_analytic_account_inverted_balance
+msgid "Inverted Analytic Balance"
+msgstr "反転分析残高"
+
+#. module: account
+#: field:account.tax.template,applicable_type:0
+msgid "Applicable Type"
+msgstr "適切なタイプ"
+
+#. module: account
+#: field:account.invoice.line,invoice_id:0
+msgid "Invoice Reference"
+msgstr "請求書参照"
+
+#. module: account
+#: help:account.tax.template,sequence:0
+msgid ""
+"The sequence field is used to order the taxes lines from lower sequences to "
+"higher ones. The order is important if you have a tax that has several tax "
+"children. In this case, the evaluation order is important."
+msgstr ""
+"この順序項目は低い順序から高い順序に税金行を並べるのに使用されます。幾つかの子の税金を持つ税金がある場合、この順序は重要です。このケースには評価順序が重要"
+"となります。"
+
+#. module: account
+#: selection:account.account,type:0
+#: selection:account.account.template,type:0
+#: view:account.journal:0
+msgid "Liquidity"
+msgstr "流動性"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form
+#: model:ir.ui.menu,name:account.account_analytic_journal_entries
+msgid "Analytic Journal Items"
+msgstr "分析仕訳帳項目"
+
+#. module: account
+#: view:account.fiscalyear.close:0
+msgid ""
+"This wizard will generate the end of year journal entries of selected fiscal "
+"year. Note that you can run this wizard many times for the same fiscal year: "
+"it will simply replace the old opening entries with the new ones."
+msgstr ""
+"このウィザードは選択した会計年度の年度仕訳帳項目の終わりを生成します。このウィザードは同じ会計年度で何度も実行できることに注意して下さい:これは単純に古い"
+"開始エントリーを新しいもので置き換えます。"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_finance_bank_and_cash
+msgid "Bank and Cash"
+msgstr "銀行と現金"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_analytic_entries_report
+msgid ""
+"From this view, have an analysis of your different analytic entries "
+"following the analytic account you defined matching your business need. Use "
+"the tool search to analyse information about analytic entries generated in "
+"the system."
+msgstr ""
+"このビューから、あなたのビジネスニーズへの適合を定義した分析アカウントに従った異なった分析エントリーの分析を行って下さい。システム内に生成された分析アカウ"
+"ントについての情報を分析するためにツール検索を使用して下さい。"
+
+#. module: account
+#: sql_constraint:account.journal:0
+msgid "The name of the journal must be unique per company !"
+msgstr "仕訳帳の名前は会社ごとに固有でなければなりません、"
+
+#. module: account
+#: field:account.account.template,nocreate:0
+msgid "Optional create"
+msgstr "作成オプション"
+
+#. module: account
+#: code:addons/account/account.py:664
+#, python-format
+msgid ""
+"You cannot change the owner company of an account that already contains "
+"journal items."
+msgstr "既に仕訳帳項目に含めれるアカウントの所有会社を変更することはできません。"
+
+#. module: account
+#: code:addons/account/wizard/account_report_aged_partner_balance.py:58
+#, python-format
+msgid "Enter a Start date !"
+msgstr "開始日を入力して下さい。"
+
+#. module: account
+#: report:account.invoice:0
+#: selection:account.invoice,type:0
+#: selection:account.invoice.report,type:0
+#: selection:report.invoice.created,type:0
+msgid "Supplier Refund"
+msgstr "仕入先返金"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_dashboard_acc
+msgid "Dashboard"
+msgstr "ダッシュボード"
+
+#. module: account
+#: field:account.bank.statement,move_line_ids:0
+msgid "Entry lines"
+msgstr "エントリー行"
+
+#. module: account
+#: field:account.move.line,centralisation:0
+msgid "Centralisation"
+msgstr "一元化"
+
+#. module: account
+#: view:account.account:0
+#: view:account.account.template:0
+#: view:account.analytic.account:0
+#: view:account.analytic.journal:0
+#: view:account.analytic.line:0
+#: view:account.bank.statement:0
+#: view:account.chart.template:0
+#: view:account.entries.report:0
+#: view:account.financial.report:0
+#: view:account.fiscalyear:0
+#: view:account.invoice:0
+#: view:account.invoice.report:0
+#: view:account.journal:0
+#: view:account.model:0
+#: view:account.move:0
+#: view:account.move.line:0
+#: view:account.subscription:0
+#: view:account.tax.code.template:0
+#: view:analytic.entries.report:0
+msgid "Group By..."
+msgstr "グループ化…"
+
+#. module: account
+#: field:account.journal.column,readonly:0
+msgid "Readonly"
+msgstr "リードオンリー"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "  Valuation: Balance"
+msgstr "  評価:バランス"
+
+#. module: account
+#: field:account.invoice.line,uos_id:0
+msgid "Unit of Measure"
+msgstr "単位"
+
+#. module: account
+#: constraint:account.payment.term.line:0
+msgid ""
+"Percentages for Payment Term Line must be between 0 and 1, Example: 0.02 for "
+"2% "
+msgstr "支払条件行のパーセンテージは0から1まででなければなりません。例:0%の場合は、0.02 "
+
+#. module: account
+#: field:account.installer,has_default_company:0
+msgid "Has Default Company"
+msgstr "デフォルト会社を持つ"
+
+#. module: account
+#: model:ir.model,name:account.model_account_sequence_fiscalyear
+msgid "account.sequence.fiscalyear"
+msgstr ""
+
+#. module: account
+#: report:account.analytic.account.journal:0
+#: view:account.analytic.journal:0
+#: field:account.analytic.line,journal_id:0
+#: field:account.journal,analytic_journal_id:0
+#: model:ir.actions.act_window,name:account.action_account_analytic_journal
+#: model:ir.actions.report.xml,name:account.analytic_journal_print
+#: model:ir.model,name:account.model_account_analytic_journal
+msgid "Analytic Journal"
+msgstr "分析仕訳帳"
+
+#. module: account
+#: code:addons/account/account.py:622
+#, python-format
+msgid "You can not desactivate an account that contains some journal items."
+msgstr "幾つかの仕訳帳項目を含むアカウントを無効にすることはできません。"
+
+#. module: account
+#: view:account.entries.report:0
+msgid "Reconciled"
+msgstr "消し込み済"
+
+#. module: account
+#: report:account.invoice:0
+#: field:account.invoice.tax,base:0
+msgid "Base"
+msgstr "基本"
+
+#. module: account
+#: field:account.model,name:0
+msgid "Model Name"
+msgstr "モデル名"
+
+#. module: account
+#: field:account.chart.template,property_account_expense_categ:0
+msgid "Expense Category Account"
+msgstr "経費分類のアカウント"
+
+#. module: account
+#: view:account.bank.statement:0
+msgid "Cash Transactions"
+msgstr "現金取引"
+
+#. module: account
+#: code:addons/account/wizard/account_state_open.py:37
+#, python-format
+msgid "Invoice is already reconciled"
+msgstr "請求書は既に消し込み済です。"
+
+#. module: account
+#: view:account.account:0
+#: view:account.account.template:0
+#: view:account.bank.statement:0
+#: field:account.bank.statement.line,note:0
+#: view:account.fiscal.position:0
+#: field:account.fiscal.position,note:0
+#: field:account.fiscal.position.template,note:0
+#: view:account.invoice.line:0
+#: field:account.invoice.line,note:0
+msgid "Notes"
+msgstr "注記"
+
+#. module: account
+#: model:ir.model,name:account.model_analytic_entries_report
+msgid "Analytic Entries Statistics"
+msgstr "分析エントリーの統計情報"
+
+#. module: account
+#: code:addons/account/account.py:624
+#, python-format
+msgid "You can not remove an account containing journal items."
+msgstr "仕訳帳項目を含むアカウントは削除できません。"
+
+#. module: account
+#: code:addons/account/account_analytic_line.py:145
+#: code:addons/account/account_move_line.py:933
+#, python-format
+msgid "Entries: "
+msgstr "エントリー: "
+
+#. module: account
+#: view:account.use.model:0
+msgid "Create manual recurring entries in a chosen journal."
+msgstr "選択された仕訳帳の中に手動で定期エントリーを作成して下さい。"
+
+#. module: account
+#: help:res.partner.bank,currency_id:0
+msgid "Currency of the related account journal."
+msgstr "関連するアカウント仕訳帳の通貨です。"
+
+#. module: account
+#: code:addons/account/account.py:1563
+#, python-format
+msgid "Couldn't create move between different companies"
+msgstr "異なる会社の間に移動の作成はできませんでした。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_type_form
+msgid ""
+"An account type is used to determine how an account is used in each journal. "
+"The deferral method of an account type determines the process for the annual "
+"closing. Reports such as the Balance Sheet and the Profit and Loss report "
+"use the category (profit/loss or balance sheet). For example, the account "
+"type could be linked to an asset account, expense account or payable "
+"account. From this view, you can create and manage the account types you "
+"need for your company."
+msgstr ""
+"アカウントタイプはそれぞれの仕訳帳においてどのようにアカウントが使われるかを決定するために使われます。アカウントタイプの繰越方法は年次決算のプロセスを決定"
+"します。貸借対照表や損益計算書のようなレポートは分類(利益 / "
+"損失または貸借対照表)を使用します。例えば、アカウントタイプ資産勘定や費用勘定または買掛金にリンクすることができます。このビューから会社に必要とするアカウ"
+"ントタイプの作成と管理ができます。"
+
+#. module: account
+#: selection:account.account.type,report_type:0
+#: code:addons/account/account.py:183
+#, python-format
+msgid "Balance Sheet (Asset account)"
+msgstr "貸借対照表(資産勘定)"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_bank_reconcile_tree
+msgid ""
+"Bank Reconciliation consists of verifying that your bank statement "
+"corresponds with the entries (or records) of that account in your accounting "
+"system."
+msgstr "銀行消し込みは、銀行取引明細書が会計システムのそのアカウントのエントリー(またはレコード)と対応することを検証することから構成されます。"
+
+#. module: account
+#: model:process.node,note:account.process_node_draftstatement0
+msgid "State is draft"
+msgstr "ドラフト状態"
+
+#. module: account
+#: view:account.move.line:0
+#: code:addons/account/account_move_line.py:1043
+#, python-format
+msgid "Total debit"
+msgstr "借方合計"
+
+#. module: account
+#: code:addons/account/account_move_line.py:808
+#, python-format
+msgid "Entry \"%s\" is not valid !"
+msgstr "エントリー %s は有効ではありません。"
+
+#. module: account
+#: report:account.invoice:0
+msgid "Fax :"
+msgstr "FAX:"
+
+#. module: account
+#: view:wizard.multi.charts.accounts:0
+msgid ""
+"This will automatically configure your chart of accounts, bank accounts, "
+"taxes and journals according to the selected template"
+msgstr "これは自動的に選択したテンプレートにしたがって、勘定科目表、銀行口座、税金、仕訳帳を設定します。"
+
+#. module: account
+#: help:res.partner,property_account_receivable:0
+msgid ""
+"This account will be used instead of the default one as the receivable "
+"account for the current partner"
+msgstr "このアカウントは現在のパートナのためにデフォルトアカウントの代わりに売掛金として使用されます。"
+
+#. module: account
+#: field:account.tax,python_applicable:0
+#: field:account.tax,python_compute:0
+#: selection:account.tax,type:0
+#: selection:account.tax.template,applicable_type:0
+#: field:account.tax.template,python_applicable:0
+#: field:account.tax.template,python_compute:0
+#: selection:account.tax.template,type:0
+msgid "Python Code"
+msgstr "Pythonコード"
+
+#. module: account
+#: view:account.entries.report:0
+msgid "Journal Entries with period in current period"
+msgstr "当期の仕訳帳エントリー"
+
+#. module: account
+#: help:account.journal,update_posted:0
+msgid ""
+"Check this box if you want to allow the cancellation the entries related to "
+"this journal or of the invoice related to this journal"
+msgstr "この仕訳帳に関連するエントリー、またはこの仕訳帳に関連する請求書のキャンセルを許す場合は、このボックスをチェックして下さい。"
+
+#. module: account
+#: view:account.fiscalyear.close:0
+msgid "Create"
+msgstr "作成"
+
+#. module: account
+#: model:process.transition.action,name:account.process_transition_action_createentries0
+msgid "Create entry"
+msgstr "エントリー作成"
+
+#. module: account
+#: selection:account.account.type,report_type:0
+#: code:addons/account/account.py:182
+#, python-format
+msgid "Profit & Loss (Expense account)"
+msgstr "損益計算書(費用勘定)"
+
+#. module: account
+#: code:addons/account/account.py:622
+#: code:addons/account/account.py:624
+#: code:addons/account/account.py:963
+#: code:addons/account/account.py:1052
+#: code:addons/account/account.py:1129
+#: code:addons/account/account.py:1344
+#: code:addons/account/account.py:1351
+#: code:addons/account/account.py:2280
+#: code:addons/account/account.py:2596
+#: code:addons/account/account_analytic_line.py:92
+#: code:addons/account/account_analytic_line.py:101
+#: code:addons/account/account_bank_statement.py:301
+#: code:addons/account/account_bank_statement.py:314
+#: code:addons/account/account_bank_statement.py:352
+#: code:addons/account/account_cash_statement.py:292
+#: code:addons/account/account_cash_statement.py:314
+#: code:addons/account/account_invoice.py:808
+#: code:addons/account/account_invoice.py:839
+#: code:addons/account/account_invoice.py:1030
+#: code:addons/account/account_move_line.py:1200
+#: code:addons/account/account_move_line.py:1216
+#: code:addons/account/account_move_line.py:1218
+#: code:addons/account/wizard/account_invoice_refund.py:108
+#: code:addons/account/wizard/account_invoice_refund.py:110
+#: code:addons/account/wizard/account_open_closed_fiscalyear.py:39
+#: code:addons/account/wizard/account_use_model.py:44
+#, python-format
+msgid "Error !"
+msgstr "エラー"
+
+#. module: account
+#: field:account.financial.report,style_overwrite:0
+msgid "Financial Report Style"
+msgstr "財務レポートのスタイル"
+
+#. module: account
+#: selection:account.financial.report,sign:0
+msgid "Preserve balance sign"
+msgstr "残高符号の維持"
+
+#. module: account
+#: view:account.vat.declaration:0
+#: model:ir.actions.report.xml,name:account.account_vat_declaration
+#: model:ir.ui.menu,name:account.menu_account_vat_declaration
+msgid "Taxes Report"
+msgstr "税金レポート"
+
+#. module: account
+#: selection:account.journal.period,state:0
+msgid "Printed"
+msgstr "印刷済"
+
+#. module: account
+#: code:addons/account/account_move_line.py:584
+#: code:addons/account/account_move_line.py:591
+#, python-format
+msgid "Error :"
+msgstr "エラー:"
+
+#. module: account
+#: view:account.analytic.line:0
+msgid "Project line"
+msgstr "プロジェクト行"
+
+#. module: account
+#: field:account.invoice.tax,manual:0
+msgid "Manual"
+msgstr "手動"
+
+#. module: account
+#: view:account.automatic.reconcile:0
+msgid ""
+"For an invoice to be considered as paid, the invoice entries must be "
+"reconciled with counterparts, usually payments. With the automatic "
+"reconciliation functionality, OpenERP makes its own search for entries to "
+"reconcile in a series of accounts. It finds entries for each partner where "
+"the amounts correspond."
+msgstr ""
+"支払いとみなされる請求書のため、請求書エントリーは通常の支払いでは相手方とともに消し込みされなければなりません。自動消し込み機能では、OpenERPは消し"
+"込みのため一連のアカウントの中を独自の検索を行います。それは金額が対応する各パートナのエントリーを見つけます。"
+
+#. module: account
+#: view:account.move:0
+#: field:account.move,to_check:0
+msgid "To Review"
+msgstr "レビュー"
+
+#. module: account
+#: help:account.partner.ledger,initial_balance:0
+#: help:account.report.general.ledger,initial_balance:0
+msgid ""
+"If you selected to filter by date or period, this field allow you to add a "
+"row to display the amount of debit/credit/balance that precedes the filter "
+"you've set."
+msgstr ""
+"日付あるいは期間によるフィルタを選択した場合、この項目は、あなたが設定したフィルタに優先して借方 / 貸方 / 残高の金額を表示する列の追加ができます。"
+
+#. module: account
+#: view:account.bank.statement:0
+#: view:account.move:0
+#: model:ir.actions.act_window,name:account.action_move_journal_line
+#: model:ir.ui.menu,name:account.menu_action_move_journal_line_form
+#: model:ir.ui.menu,name:account.menu_finance_entries
+msgid "Journal Entries"
+msgstr "仕訳帳エントリー"
+
+#. module: account
+#: help:account.partner.ledger,page_split:0
+msgid "Display Ledger Report with One partner per page"
+msgstr ""
+
+#. module: account
+#: code:addons/account/account_move_line.py:1218
+#, python-format
+msgid ""
+"You can not do this modification on a reconciled entry! You can just change "
+"some non legal fields or you must unreconcile first!\n"
+"%s"
+msgstr ""
+"消し込み済エントリーにはこの変更はできません。変更できるのは幾つかの非法定項目のみです。または最初に未消し込みにしなければなりません。\n"
+"%s"
+
+#. module: account
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+msgid "JRNL"
+msgstr "仕訳帳"
+
+#. module: account
+#: view:account.partner.balance:0
+#: view:account.partner.ledger:0
+msgid ""
+"This report is an analysis done by a partner. It is a PDF report containing "
+"one line per partner representing the cumulative credit balance"
+msgstr "このレポートはパートナによって行われた分析です。それは累積する貸方残高を表すパートナ毎に1行のPDFレポートです。"
+
+#. module: account
+#: code:addons/account/wizard/account_validate_account_move.py:61
+#, python-format
+msgid ""
+"Selected Entry Lines does not have any account move enties in draft state"
+msgstr "選択エントリー行はドラフト状態でありどんなアカウント移動エントリーも持っていません。"
+
+#. module: account
+#: selection:account.aged.trial.balance,target_move:0
+#: selection:account.balance.report,target_move:0
+#: selection:account.central.journal,target_move:0
+#: selection:account.chart,target_move:0
+#: selection:account.common.account.report,target_move:0
+#: selection:account.common.journal.report,target_move:0
+#: selection:account.common.partner.report,target_move:0
+#: selection:account.common.report,target_move:0
+#: selection:account.general.journal,target_move:0
+#: selection:account.move.journal,target_move:0
+#: selection:account.partner.balance,target_move:0
+#: selection:account.partner.ledger,target_move:0
+#: selection:account.print.journal,target_move:0
+#: selection:account.report.general.ledger,target_move:0
+#: selection:account.tax.chart,target_move:0
+#: selection:account.vat.declaration,target_move:0
+#: selection:accounting.report,target_move:0
+#: code:addons/account/report/common_report_header.py:67
+#, python-format
+msgid "All Entries"
+msgstr "全エントリー"
+
+#. module: account
+#: constraint:product.template:0
+msgid ""
+"Error: The default UOM and the purchase UOM must be in the same category."
+msgstr "エラー:デフォルトの単位と仕入単位は同じ分類でなければいけません。"
+
+#. module: account
+#: view:account.journal.select:0
+msgid "Journal Select"
+msgstr "仕訳帳選択"
+
+#. module: account
+#: view:account.bank.statement:0
+#: code:addons/account/account.py:420
+#: code:addons/account/account.py:432
+#, python-format
+msgid "Opening Balance"
+msgstr "期首残高"
+
+#. module: account
+#: model:ir.model,name:account.model_account_move_reconcile
+msgid "Account Reconciliation"
+msgstr "消し込みアカウント"
+
+#. module: account
+#: model:ir.model,name:account.model_account_fiscal_position_tax
+msgid "Taxes Fiscal Position"
+msgstr "税金会計ポジション"
+
+#. module: account
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: view:account.report.general.ledger:0
+#: model:ir.actions.act_window,name:account.action_account_general_ledger_menu
+#: model:ir.actions.report.xml,name:account.account_general_ledger
+#: model:ir.actions.report.xml,name:account.account_general_ledger_landscape
+#: model:ir.ui.menu,name:account.menu_general_ledger
+msgid "General Ledger"
+msgstr "総勘定元帳"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_paymentorderbank0
+msgid "The payment order is sent to the bank."
+msgstr "支払オーダーは銀行に送信されます。"
+
+#. module: account
+#: view:account.balance.report:0
+msgid ""
+"This report allows you to print or generate a pdf of your trial balance "
+"allowing you to quickly check the balance of each of your accounts in a "
+"single report"
+msgstr "このレポートは1枚のレポートでアカウントのそれぞれの残高をすばやくチェックできる試算表であり、印刷、あるいはPDFの作成ができます。"
+
+#. module: account
+#: help:account.move,to_check:0
+msgid ""
+"Check this box if you are unsure of that journal entry and if you want to "
+"note it as 'to be reviewed' by an accounting expert."
+msgstr "その仕訳帳エントリーに確信がなく、会計専門家のレビューが必要と付記したい場合はこのボックスをチェックして下さい。"
+
+#. module: account
+#: field:account.chart.template,complete_tax_set:0
+#: field:wizard.multi.charts.accounts,complete_tax_set:0
+msgid "Complete Set of Taxes"
+msgstr "税金の完全なセット"
+
+#. module: account
+#: view:account.chart.template:0
+msgid "Properties"
+msgstr "属性"
+
+#. module: account
+#: model:ir.model,name:account.model_account_tax_chart
+msgid "Account tax chart"
+msgstr "会計税金表"
+
+#. module: account
+#: constraint:res.partner.bank:0
+msgid ""
+"\n"
+"Please define BIC/Swift code on bank for bank type IBAN Account to make "
+"valid payments"
+msgstr ""
+"\n"
+"正当な支払いを行うために銀行タイプIBAN口座のための銀行にBIC / SWIFTコードを定義して下さい。"
+
+#. module: account
+#: report:account.analytic.account.cost_ledger:0
+#: report:account.analytic.account.quantity_cost_ledger:0
+#: report:account.central.journal:0
+#: report:account.general.journal:0
+#: report:account.invoice:0
+#: report:account.journal.period.print:0
+#: report:account.journal.period.print.sale.purchase:0
+#: report:account.partner.balance:0
+msgid "Total:"
+msgstr "合計:"
+
+#. module: account
+#: code:addons/account/account.py:2229
+#, python-format
+msgid ""
+"You can specify year, month and date in the name of the model using the "
+"following labels:\n"
+"\n"
+"%(year)s: To Specify Year \n"
+"%(month)s: To Specify Month \n"
+"%(date)s: Current Date\n"
+"\n"
+"e.g. My model on %(date)s"
+msgstr ""
+"次のラベルを利用してモデルの名前により年、月、日付を指定できます:You can specify year, month and date in the "
+"name of the model using the following labels:\n"
+"\n"
+"%(year)s:年の指定\n"
+"%(month)s:月の指定\n"
+"%(date)s:現在の日付\n"
+"\n"
+"例えば、%(date)s の私のモデル"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_aged_income
+msgid "Income Accounts"
+msgstr "損益勘定"
+
+#. module: account
+#: help:report.invoice.created,origin:0
+msgid "Reference of the document that generated this invoice report."
+msgstr "この請求書レポートを生成したドキュメントの参照"
+
+#. module: account
+#: field:account.tax.code,child_ids:0
+#: field:account.tax.code.template,child_ids:0
+msgid "Child Codes"
+msgstr "子コード"
+
+#. module: account
+#: view:account.tax.template:0
+msgid "Taxes used in Sales"
+msgstr "売上で使われる税金"
+
+#. module: account
+#: code:addons/account/account_invoice.py:495
+#: code:addons/account/wizard/account_invoice_refund.py:145
+#, python-format
+msgid "Data Insufficient !"
+msgstr "データが不足しています。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_invoice_tree1
+#: model:ir.ui.menu,name:account.menu_action_invoice_tree1
+msgid "Customer Invoices"
+msgstr "顧客請求書"
+
+#. module: account
+#: field:account.move.line.reconcile,writeoff:0
+msgid "Write-Off amount"
+msgstr "償却勘定"
+
+#. module: account
+#: view:account.analytic.line:0
+msgid "Sales"
+msgstr "売上"
+
+#. module: account
+#: view:account.journal.column:0
+#: model:ir.model,name:account.model_account_journal_column
+msgid "Journal Column"
+msgstr "仕訳帳カラム"
+
+#. module: account
+#: selection:account.invoice.report,state:0
+#: selection:account.journal.period,state:0
+#: selection:account.subscription,state:0
+#: selection:report.invoice.created,state:0
+msgid "Done"
+msgstr "完了"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_bank_tree
+msgid ""
+"Configure your company's bank account and select those that must appear on "
+"the report footer. You can reorder banks in the list view. If you use the "
+"accounting application of OpenERP, journals and accounts will be created "
+"automatically based on these data."
+msgstr ""
+"会社の銀行口座を設定して、そしてレポートフッターに現れるべきそれを選択して下さい。リストビューの中の銀行を並べ替えることが出来ます。OpenERPの会計ア"
+"プリケーションを使用する場合は、仕訳帳とアカウントはそれらのデータを基に自動的に作成されます。"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_invoicemanually0
+msgid "A statement with manual entries becomes a draft statement."
+msgstr "手動入力の取引明細書はドラフト取引明細書になります。"
+
+#. module: account
+#: view:account.aged.trial.balance:0
+msgid ""
+"Aged Partner Balance is a more detailed report of your receivables by "
+"intervals. When opening that report, OpenERP asks for the name of the "
+"company, the fiscal period and the size of the interval to be analyzed (in "
+"days). OpenERP then calculates a table of credit balance by period. So if "
+"you request an interval of 30 days OpenERP generates an analysis of "
+"creditors for the past month, past two months, and so on. "
+msgstr ""
+"パートナ残高年齢表は間隔毎の売掛金のより詳細なレポートです。このレポートを開く時に、OpenERPは会社の名前、会計年度、そして分析のための間隔のサイズ("
+"日数)を尋ねます。OpenERPは次に期間毎の貸方のテーブルを計算します。仮に、30日間の間隔を要求した場合、OpenERPはこれまでの1ヶ月間、過去の2"
+"ヶ月などの貸方の分析を生成します。 "
+
+#. module: account
+#: field:account.invoice,origin:0
+#: field:report.invoice.created,origin:0
+msgid "Source Document"
+msgstr "基となるドキュメント"
+
+#. module: account
+#: code:addons/account/account.py:1432
+#, python-format
+msgid "You can not delete a posted journal entry \"%s\"!"
+msgstr "記帳された仕訳帳エントリー %s を削除することはできません。"
+
+#. module: account
+#: selection:account.partner.ledger,filter:0
+#: code:addons/account/report/account_partner_ledger.py:59
+#: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled
+#, python-format
+msgid "Unreconciled Entries"
+msgstr "未消し込みエントリー"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_menu_Bank_process
+msgid "Statements Reconciliation"
+msgstr "取引明細書消し込み"
+
+#. module: account
+#: model:ir.model,name:account.model_accounting_report
+msgid "Accounting Report"
+msgstr "会計レポート"
+
+#. module: account
+#: report:account.invoice:0
+msgid "Taxes:"
+msgstr "税金:"
+
+#. module: account
+#: help:account.tax,amount:0
+msgid "For taxes of type percentage, enter % ratio between 0-1."
+msgstr "税金はパーセンテージタイプのため、0から1の間の%比率を入力して下さい。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_subscription_form
+msgid ""
+"A recurring entry is a miscellaneous entry that occurs on a recurrent basis "
+"from a specific date, i.e. corresponding to the signature of a contract or "
+"an agreement with a customer or a supplier. With Define Recurring Entries, "
+"you can create such entries to automate the postings in the system."
+msgstr ""
+"定期エントリーは特定の日付に基づき定期的に発生する、すなわち、顧客や仕入先との契約や合意の署名に対応する雑多なエントリーです。定期エントリーを定義すると、"
+"システム内で自動的に記帳するエントリーを作成することができます。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_report_tree_hierarchy
+msgid "Financial Reports Hierarchy"
+msgstr "財務レポートの階層"
+
+#. module: account
+#: field:account.entries.report,product_uom_id:0
+#: view:analytic.entries.report:0
+#: field:analytic.entries.report,product_uom_id:0
+msgid "Product UOM"
+msgstr "製品単位"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_view_bank_statement_tree
+msgid ""
+"A Cash Register allows you to manage cash entries in your cash journals. "
+"This feature provides an easy way to follow up cash payments on a daily "
+"basis. You can enter the coins that are in your cash box, and then post "
+"entries when money comes in or goes out of the cash box."
+msgstr ""
+"キャッシュレジスタは現金仕訳帳の現金エントリーを管理することができます。この機能は日々の現金支払を追跡する簡単な方法を提供します。現金箱の中にはコインを入"
+"れることができ、そして、現金箱へのお金の出入りがある時に、エントリーを記帳することができます。"
+
+#. module: account
+#: help:account.invoice.refund,date:0
+msgid ""
+"This date will be used as the invoice date for Refund Invoice and Period "
+"will be chosen accordingly!"
+msgstr "返金請求書と期間のための請求日として使用される日付は適宜選択されます。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation
+msgid "Monthly Turnover"
+msgstr "月次売上高"
+
+#. module: account
+#: view:account.move:0
+#: view:account.move.line:0
+msgid "Analytic Lines"
+msgstr "分析行"
+
+#. module: account
+#: field:account.analytic.journal,line_ids:0
+#: field:account.tax.code,line_ids:0
+msgid "Lines"
+msgstr "行"
+
+#. module: account
+#: view:account.tax.template:0
+msgid "Account Tax Template"
+msgstr "アカウント税金テンプレート"
+
+#. module: account
+#: view:account.journal.select:0
+msgid "Are you sure you want to open Journal Entries?"
+msgstr "仕訳帳エントリーを本当に開きますか?"
+
+#. module: account
+#: view:account.state.open:0
+msgid "Are you sure you want to open this invoice ?"
+msgstr "この請求書を本当に開きますか?"
+
+#. module: account
+#: code:addons/account/account_invoice.py:528
+#: code:addons/account/account_invoice.py:543
+#, python-format
+msgid ""
+"Can not find a chart of account, you should create one from the "
+"configuration of the accounting menu."
+msgstr "勘定科目表を見つけることができません。会計メニューの設定からそれを作成する必要があります。"
+
+#. module: account
+#: field:account.chart.template,property_account_expense_opening:0
+msgid "Opening Entries Expense Account"
+msgstr "費用勘定の開始エントリー"
+
+#. module: account
+#: code:addons/account/account_move_line.py:999
+#, python-format
+msgid "Accounting Entries"
+msgstr "会計エントリー"
+
+#. module: account
+#: field:account.account.template,parent_id:0
+msgid "Parent Account Template"
+msgstr "親アカウントテンプレート"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_configuration_installer
+msgid "Install your Chart of Accounts"
+msgstr "会計表のインストール"
+
+#. module: account
+#: view:account.bank.statement:0
+#: field:account.bank.statement.line,statement_id:0
+#: field:account.move.line,statement_id:0
+#: model:process.process,name:account.process_process_statementprocess0
+msgid "Statement"
+msgstr "取引明細書"
+
+#. module: account
+#: help:account.journal,default_debit_account_id:0
+msgid "It acts as a default account for debit amount"
+msgstr "これは借方金額のデフォルトアカウントとして動作します。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_journal_period_tree
+msgid ""
+"You can search for individual account entries through useful information. To "
+"search for account entries, open a journal, then select a record line."
+msgstr ""
+"有益な情報を介して個別のアカウントエントリーのための検索ができます。アカウントエントリーの検索のためには仕訳帳を開き、そしてレコード行を選択して下さい。"
+
+#. module: account
+#: view:account.entries.report:0
+msgid "Posted entries"
+msgstr "記帳済エントリー"
+
+#. module: account
+#: help:account.payment.term.line,value_amount:0
+msgid "For percent enter a ratio between 0-1."
+msgstr "パーセントは0から1までの比率を入力して下さい。"
+
+#. module: account
+#: report:account.invoice:0
+#: view:account.invoice:0
+#: field:account.invoice,date_invoice:0
+#: field:report.invoice.created,date_invoice:0
+msgid "Invoice Date"
+msgstr "請求日"
+
+#. module: account
+#: view:account.invoice.report:0
+msgid "Group by year of Invoice Date"
+msgstr "請求年によるグループ"
+
+#. module: account
+#: help:res.partner,credit:0
+msgid "Total amount this customer owes you."
+msgstr "この顧客はあなたに合計金額の支払義務があります。"
+
+#. module: account
+#: model:ir.model,name:account.model_ir_sequence
+msgid "ir.sequence"
+msgstr ""
+
+#. module: account
+#: field:account.journal.period,icon:0
+msgid "Icon"
+msgstr "アイコン"
+
+#. module: account
+#: view:account.automatic.reconcile:0
+#: view:account.use.model:0
+msgid "Ok"
+msgstr "OK"
+
+#. module: account
+#: field:account.chart.template,tax_code_root_id:0
+msgid "Root Tax Code"
+msgstr "ルート税金コード"
+
+#. module: account
+#: help:account.journal,centralisation:0
+msgid ""
+"Check this box to determine that each entry of this journal won't create a "
+"new counterpart but will share the same counterpart. This is used in fiscal "
+"year closing."
+msgstr ""
+"この仕訳帳の各エントリーは新しい相手方を作成しないが、同じ相手方を共有することを決定するために、このボックスをチェックして下さい。これは会計年度決算時に使"
+"われます。"
+
+#. module: account
+#: field:account.bank.statement,closing_date:0
+msgid "Closed On"
+msgstr "閉鎖済"
+
+#. module: account
+#: model:ir.model,name:account.model_account_bank_statement_line
+msgid "Bank Statement Line"
+msgstr "銀行取引明細書行"
+
+#. module: account
+#: field:account.automatic.reconcile,date2:0
+msgid "Ending Date"
+msgstr "終了日"
+
+#. module: account
+#: field:wizard.multi.charts.accounts,purchase_tax:0
+msgid "Default Purchase Tax"
+msgstr "デフォルト消費税(仕入)"
+
+#. module: account
+#: field:account.chart.template,property_account_income_opening:0
+msgid "Opening Entries Income Account"
+msgstr "損益勘定の開始エントリー"
+
+#. module: account
+#: view:account.bank.statement:0
+msgid "Confirm"
+msgstr "確認"
+
+#. module: account
+#: help:account.tax,domain:0
+#: help:account.tax.template,domain:0
+msgid ""
+"This field is only used if you develop your own module allowing developers "
+"to create specific taxes in a custom domain."
+msgstr "この項目は、カスタムドメイン内に特別な税金を作成することを許された開発者によって、あなた自身のモジュールを開発する場合にのみ使われます"
+
+#. module: account
+#: code:addons/account/account.py:1088
+#, python-format
+msgid "You should have chosen periods that belongs to the same company"
+msgstr "同じ会社に属する期間を選択すべきです。"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_review_payment_terms_installer
+msgid "Review your Payment Terms"
+msgstr "支払条件をレビュー"
+
+#. module: account
+#: field:account.fiscalyear.close,report_name:0
+msgid "Name of new entries"
+msgstr "新エントリーの名前"
+
+#. module: account
+#: view:account.use.model:0
+msgid "Create Entries"
+msgstr "エントリーの作成"
+
+#. module: account
+#: view:res.partner:0
+msgid "Information About the Bank"
+msgstr "銀行に関する情報"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_finance_reporting
+msgid "Reporting"
+msgstr "レポート"
+
+#. module: account
+#: code:addons/account/account_move_line.py:759
+#: code:addons/account/account_move_line.py:842
+#: code:addons/account/wizard/account_invoice_state.py:44
+#: code:addons/account/wizard/account_invoice_state.py:68
+#: code:addons/account/wizard/account_state_open.py:37
+#: code:addons/account/wizard/account_validate_account_move.py:39
+#: code:addons/account/wizard/account_validate_account_move.py:61
+#, python-format
+msgid "Warning"
+msgstr "警告"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_analytic_open
+msgid "Contracts/Analytic Accounts"
+msgstr "契約 / 分析アカウント"
+
+#. module: account
+#: field:account.bank.statement,ending_details_ids:0
+msgid "Closing Cashbox"
+msgstr "現金箱の閉鎖"
+
+#. module: account
+#: view:account.journal:0
+#: field:res.partner.bank,journal_id:0
+msgid "Account Journal"
+msgstr "アカウント仕訳帳"
+
+#. module: account
+#: model:process.node,name:account.process_node_paidinvoice0
+#: model:process.node,name:account.process_node_supplierpaidinvoice0
+msgid "Paid invoice"
+msgstr "支払済請求書"
+
+#. module: account
+#: help:account.partner.reconcile.process,next_partner_id:0
+msgid ""
+"This field shows you the next partner that will be automatically chosen by "
+"the system to go through the reconciliation process, based on the latest day "
+"it have been reconciled."
+msgstr "この項目は消し込み済の最終日を基準に消し込み処理を通過することでシステムによって自動的に選択された次のパートナを示します。"
+
+#. module: account
+#: field:account.move.line.reconcile.writeoff,comment:0
+msgid "Comment"
+msgstr "コメント"
+
+#. module: account
+#: field:account.tax,domain:0
+#: field:account.tax.template,domain:0
+msgid "Domain"
+msgstr "ドメイン"
+
+#. module: account
+#: model:ir.model,name:account.model_account_use_model
+msgid "Use model"
+msgstr "モデルの使用"
+
+#. module: account
+#: code:addons/account/account.py:429
+#, python-format
+msgid "Unable to adapt the initial balance (negative value)!"
+msgstr "期首残高(負値)に適応できません。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_moves_purchase
+msgid ""
+"This view is used by accountants in order to record entries massively in "
+"OpenERP. If you want to record a supplier invoice, start by recording the "
+"line of the expense account, OpenERP will propose to you automatically the "
+"Tax related to this account and the counter-part \"Account Payable\"."
+msgstr ""
+"このビューはOpenERPで大量のエントリーを記録するために会計士によって使用されます。仕入先請求書を記録することを望む場合、費用勘定の行を記録することに"
+"より開始して下さい。OpenERPは自動的にこのアカウントと相手方の買掛金に関連した税金を提案します"
+
+#. module: account
+#: view:account.invoice.line:0
+#: field:account.invoice.tax,invoice_id:0
+#: model:ir.model,name:account.model_account_invoice_line
+msgid "Invoice Line"
+msgstr "請求行"
+
+#. module: account
+#: view:account.invoice.report:0
+msgid "Customer And Supplier Refunds"
+msgstr "顧客返金と仕入先返金"
+
+#. module: account
+#: field:account.financial.report,sign:0
+msgid "Sign on Reports"
+msgstr "レポートに署名"
+
+#. module: account
+#: code:addons/account/wizard/account_fiscalyear_close.py:73
+#, python-format
+msgid "The periods to generate opening entries were not found"
+msgstr "開始エントリーを生成するための期間が見つかりませんでした。"
+
+#. module: account
+#: model:account.account.type,name:account.data_account_type_view
+msgid "Root/View"
+msgstr "ルート / ビュー"
+
+#. module: account
+#: code:addons/account/account.py:3121
+#, python-format
+msgid "OPEJ"
+msgstr ""
+
+#. module: account
+#: report:account.invoice:0
+#: view:account.invoice:0
+msgid "PRO-FORMA"
+msgstr "プロフォーマ"
+
+#. module: account
+#: selection:account.entries.report,move_line_state:0
+#: view:account.move.line:0
+#: selection:account.move.line,state:0
+msgid "Unbalanced"
+msgstr "アンバランス"
+
+#. module: account
+#: selection:account.move.line,centralisation:0
+msgid "Normal"
+msgstr "通常"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_email_templates
+#: model:ir.ui.menu,name:account.menu_email_templates
+msgid "Email Templates"
+msgstr "Eメールテンプレート"
+
+#. module: account
+#: view:account.move.line:0
+msgid "Optional Information"
+msgstr "オプション情報"
+
+#. module: account
+#: code:addons/account/wizard/account_fiscalyear_close.py:84
+#, python-format
+msgid "The journal must have default credit and debit account"
+msgstr "仕訳帳はデフォルトの貸方、借方アカウントを持つ必要があります。"
+
+#. module: account
+#: report:account.general.journal:0
+msgid ":"
+msgstr ""
+
+#. module: account
+#: selection:account.account,currency_mode:0
+msgid "At Date"
+msgstr "日付"
+
+#. module: account
+#: help:account.move.line,date_maturity:0
+msgid ""
+"This field is used for payable and receivable journal entries. You can put "
+"the limit date for the payment of this line."
+msgstr "この項目は買掛金と売掛金仕訳帳エントリーのために使用されます。この行の支払のための期限の日付を設定することができます。"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_multi_currency
+msgid "Multi-Currencies"
+msgstr "多通貨"
+
+#. module: account
+#: field:account.model.line,date_maturity:0
+msgid "Maturity Date"
+msgstr "満期日"
+
+#. module: account
+#: code:addons/account/account_move_line.py:1302
+#, python-format
+msgid "Bad account !"
+msgstr "良質でないアカウント"
+
+#. module: account
+#: code:addons/account/account.py:3108
+#, python-format
+msgid "Sales Journal"
+msgstr "売上仕訳帳"
+
+#. module: account
+#: code:addons/account/wizard/account_move_journal.py:104
+#, python-format
+msgid "Open Journal Items !"
+msgstr "仕訳帳項目を開く"
+
+#. module: account
+#: model:ir.model,name:account.model_account_invoice_tax
+msgid "Invoice Tax"
+msgstr "請求書税金"
+
+#. module: account
+#: code:addons/account/account_move_line.py:1277
+#, python-format
+msgid "No piece number !"
+msgstr "ピース番号がありません。"
+
+#. module: account
+#: view:account.financial.report:0
+#: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy
+msgid "Account Reports Hierarchy"
+msgstr "アカウントレポート階層"
+
+#. module: account
+#: help:account.account.template,chart_template_id:0
+msgid ""
+"This optional field allow you to link an account template to a specific "
+"chart template that may differ from the one its root parent belongs to. This "
+"allow you to define chart templates that extend another and complete it with "
+"few new accounts (You don't need to define the whole structure that is "
+"common to both several times)."
+msgstr ""
+"このオプション項目は、アカウントテンプレートがそのルート親に属さないかもしれない特定のチャートテンプレートとリンクすることができます。これは別のものを拡張"
+"してチャートテンプレートを定義し、そして幾つかの新しいアカウントとともに完成させることができます(何回かの双方に共通である全体の構造を定義する必要はありま"
+"せん)。"
+
+#. module: account
+#: view:account.move:0
+msgid "Unposted Journal Entries"
+msgstr "未記帳の仕訳帳エントリー"
+
+#. module: account
+#: view:product.product:0
+#: view:product.template:0
+msgid "Sales Properties"
+msgstr "売上属性"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_manual_reconcile
+msgid "Manual Reconciliation"
+msgstr "手動消し込み"
+
+#. module: account
+#: report:account.overdue:0
+msgid "Total amount due:"
+msgstr "合計満期金額:"
+
+#. module: account
+#: field:account.analytic.chart,to_date:0
+#: field:project.account.analytic.line,to_date:0
+msgid "To"
+msgstr "まで"
+
+#. module: account
+#: selection:account.move.line,centralisation:0
+#: code:addons/account/account.py:1518
+#, python-format
+msgid "Currency Adjustment"
+msgstr "通貨調整"
+
+#. module: account
+#: field:account.fiscalyear.close,fy_id:0
+#: field:account.fiscalyear.close.state,fy_id:0
+msgid "Fiscal Year to close"
+msgstr "閉じる会計年度"
+
+#. module: account
+#: view:account.invoice.cancel:0
+#: model:ir.actions.act_window,name:account.action_account_invoice_cancel
+msgid "Cancel Selected Invoices"
+msgstr "選択請求書のキャンセル"
+
+#. module: account
+#: help:account.account.type,report_type:0
+msgid ""
+"This field is used to generate legal reports: profit and loss, balance sheet."
+msgstr "この項目は一般的な法定レポートに使用されます:損益計算書、貸借対照表"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_review_payment_terms_installer
+msgid ""
+"Payment terms define the conditions to pay a customer or supplier invoice in "
+"one or several payments. Customers periodic reminders will use the payment "
+"terms for each letter. Each customer or supplier can be assigned to one of "
+"these payment terms."
+msgstr ""
+"支払条件は1回または複数回支払における顧客または仕入先請求書の支払に関する条件を定義します。顧客への定期通知はそれぞれの通知のための支払条件を使います。各"
+"顧客または仕入先にはそれぞれの支払条件の1つを割り当てることができます。"
+
+#. module: account
+#: selection:account.entries.report,month:0
+#: selection:account.invoice.report,month:0
+#: selection:analytic.entries.report,month:0
+#: selection:report.account.sales,month:0
+#: selection:report.account_type.sales,month:0
+msgid "May"
+msgstr "5月"
+
+#. module: account
+#: view:account.account:0
+#: view:account.account.template:0
+#: selection:account.aged.trial.balance,result_selection:0
+#: selection:account.common.partner.report,result_selection:0
+#: selection:account.partner.balance,result_selection:0
+#: selection:account.partner.ledger,result_selection:0
+#: code:addons/account/report/account_partner_balance.py:299
+#, python-format
+msgid "Payable Accounts"
+msgstr "買掛金"
+
+#. module: account
+#: code:addons/account/account_invoice.py:732
+#, python-format
+msgid "Global taxes defined, but they are not in invoice lines !"
+msgstr "全体的な税金は定義されていますが、請求書行にそれらが存在しません。"
+
+#. module: account
+#: model:ir.model,name:account.model_account_chart_template
+msgid "Templates for Account Chart"
+msgstr ""
+
+#. module: account
+#: help:account.model.line,sequence:0
+msgid ""
+"The sequence field is used to order the resources from lower sequences to "
+"higher ones."
+msgstr "重所項目は低い順序から高い順序にリソースを並べるのに使われます。"
+
+#. module: account
+#: field:account.tax.code,code:0
+#: field:account.tax.code.template,code:0
+msgid "Case Code"
+msgstr "事例コード"
+
+#. module: account
+#: view:validate.account.move:0
+msgid "Post Journal Entries of a Journal"
+msgstr "仕訳帳の仕訳帳エントリー記帳"
+
+#. module: account
+#: view:product.product:0
+msgid "Sale Taxes"
+msgstr "消費税(売上)"
+
+#. module: account
+#: field:account.financial.report,name:0
+msgid "Report Name"
+msgstr "レポート名"
+
+#. module: account
+#: model:account.account.type,name:account.data_account_type_cash
+#: selection:account.analytic.journal,type:0
+#: selection:account.bank.accounts.wizard,account_type:0
+#: selection:account.entries.report,type:0
+#: selection:account.journal,type:0
+#: code:addons/account/account.py:3003
+#, python-format
+msgid "Cash"
+msgstr "現金"
+
+#. module: account
+#: field:account.fiscal.position.account,account_dest_id:0
+#: field:account.fiscal.position.account.template,account_dest_id:0
+msgid "Account Destination"
+msgstr "アカウントの宛先"
+
+#. module: account
+#: code:addons/account/account.py:1431
+#: code:addons/account/account.py:1460
+#: code:addons/account/account.py:1467
+#: code:addons/account/account_invoice.py:920
+#: code:addons/account/account_move_line.py:1104
+#: code:addons/account/wizard/account_automatic_reconcile.py:152
+#: code:addons/account/wizard/account_fiscalyear_close.py:73
+#: code:addons/account/wizard/account_fiscalyear_close.py:83
+#: code:addons/account/wizard/account_fiscalyear_close.py:86
+#: code:addons/account/wizard/account_move_journal.py:165
+#: code:addons/account/wizard/account_report_aged_partner_balance.py:56
+#: code:addons/account/wizard/account_report_aged_partner_balance.py:58
+#, python-format
+msgid "UserError"
+msgstr "ユーザエラー"
+
+#. module: account
+#: model:process.node,note:account.process_node_supplierpaymentorder0
+msgid "Payment of invoices"
+msgstr "請求書の支払"
+
+#. module: account
+#: field:account.bank.statement.line,sequence:0
+#: field:account.financial.report,sequence:0
+#: field:account.invoice.tax,sequence:0
+#: view:account.journal:0
+#: field:account.journal.column,sequence:0
+#: field:account.model.line,sequence:0
+#: field:account.payment.term.line,sequence:0
+#: field:account.sequence.fiscalyear,sequence_id:0
+#: field:account.tax,sequence:0
+#: field:account.tax.code,sequence:0
+#: field:account.tax.template,sequence:0
+msgid "Sequence"
+msgstr "順序"
+
+#. module: account
+#: constraint:product.category:0
+msgid "Error ! You cannot create recursive categories."
+msgstr "エラー:再帰カテゴリーを作成することはできません。"
+
+#. module: account
+#: help:account.model.line,quantity:0
+msgid "The optional quantity on entries."
+msgstr "エントリーの任意数量"
+
+#. module: account
+#: view:account.financial.report:0
+msgid "Parent Report"
+msgstr "親レポート"
+
+#. module: account
+#: view:account.state.open:0
+msgid "Yes"
+msgstr ""
+
+#. module: account
+#: view:report.account_type.sales:0
+msgid "Sales by Account type"
+msgstr "アカウントタイプ別売上"
+
+#. module: account
+#: help:account.invoice,move_id:0
+msgid "Link to the automatically generated Journal Items."
+msgstr "自動生成仕訳帳項目へのリンク"
+
+#. module: account
+#: selection:account.installer,period:0
+msgid "Monthly"
+msgstr "月次"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_journal_view
+msgid ""
+"Here you can customize an existing journal view or create a new view. "
+"Journal views determine the way you can record entries in your journal. "
+"Select the fields you want to appear in a journal and determine the sequence "
+"in which they will appear. Then you can create a new journal and link your "
+"view to it."
+msgstr ""
+"ここから既存の仕訳帳ビューのカスタマイズ、または新しいビューの作成ができます。仕訳帳ビューは仕訳帳のエントリーの記録方法を決定します。仕訳帳に表示される好"
+"みの項目を選択し、それらの項目が表示される順序を決定して下さい。それから、新しい仕訳帳を作成してビューをそれとリンクすることができます。"
+
+#. module: account
+#: model:account.account.type,name:account.data_account_type_asset
+msgid "Asset"
+msgstr "資産"
+
+#. module: account
+#: view:analytic.entries.report:0
+msgid "    7 Days    "
+msgstr "    7日    "
+
+#. module: account
+#: field:account.bank.statement,balance_end:0
+msgid "Computed Balance"
+msgstr "計算残高"
+
+#. module: account
+#: field:account.account,parent_id:0
+#: field:account.financial.report,parent_id:0
+msgid "Parent"
+msgstr "親"
+
+#. module: account
+#: help:account.payment.term.line,days2:0
+msgid ""
+"Day of the month, set -1 for the last day of the current month. If it's "
+"positive, it gives the day of the next month. Set 0 for net days (otherwise "
+"it's based on the beginning of the month)."
+msgstr ""
+"月の日は、今月の最後の日とするには-"
+"1を設定して下さい。もし正の値なら翌月のその日になります。正味日数の場合には0を設定して下さい(それ以外は月初日を基準とします)。"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_finance_legal_statement
+msgid "Legal Reports"
+msgstr "法定レポート"
+
+#. module: account
+#: field:account.tax.code,sum_period:0
+msgid "Period Sum"
+msgstr "期間合計"
+
+#. module: account
+#: help:account.tax,sequence:0
+msgid ""
+"The sequence field is used to order the tax lines from the lowest sequences "
+"to the higher ones. The order is important if you have a tax with several "
+"tax children. In this case, the evaluation order is important."
+msgstr ""
+"順序項目は低い順序から高い順序に税金行を並べるのに使用されます。幾つかの子の税金をを持つ場合、その並びは重要です。そのケースには評価順序が重要です。"
+
+#. module: account
+#: model:ir.model,name:account.model_account_cashbox_line
+msgid "CashBox Line"
+msgstr "現金箱行"
+
+#. module: account
+#: view:account.partner.ledger:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+#: model:ir.actions.report.xml,name:account.account_3rdparty_ledger
+#: model:ir.actions.report.xml,name:account.account_3rdparty_ledger_other
+#: model:ir.ui.menu,name:account.menu_account_partner_ledger
+msgid "Partner Ledger"
+msgstr "パートナ元帳"
+
+#. module: account
+#: selection:account.tax.template,type:0
+msgid "Fixed"
+msgstr "固定"
+
+#. module: account
+#: code:addons/account/account.py:629
+#: code:addons/account/account.py:642
+#: code:addons/account/account.py:645
+#: code:addons/account/account.py:664
+#: code:addons/account/account.py:787
+#: code:addons/account/account.py:1077
+#: code:addons/account/account_invoice.py:732
+#: code:addons/account/account_invoice.py:735
+#: code:addons/account/account_invoice.py:738
+#: code:addons/account/account_move_line.py:97
+#: code:addons/account/account_move_line.py:750
+#: code:addons/account/account_move_line.py:803
+#, python-format
+msgid "Warning !"
+msgstr "警告"
+
+#. module: account
+#: field:account.entries.report,move_line_state:0
+msgid "State of Move Line"
+msgstr "移動行の状態"
+
+#. module: account
+#: model:ir.model,name:account.model_account_move_line_reconcile
+msgid "Account move line reconcile"
+msgstr "アカウント移動行消し込み"
+
+#. module: account
+#: view:account.subscription.generate:0
+#: model:ir.model,name:account.model_account_subscription_generate
+msgid "Subscription Compute"
+msgstr "サブスクリプション計算"
+
+#. module: account
+#: field:account.bank.statement.line,partner_id:0
+#: view:account.entries.report:0
+#: field:account.entries.report,partner_id:0
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: view:account.invoice:0
+#: field:account.invoice,partner_id:0
+#: field:account.invoice.line,partner_id:0
+#: view:account.invoice.report:0
+#: field:account.invoice.report,partner_id:0
+#: report:account.journal.period.print:0
+#: report:account.journal.period.print.sale.purchase:0
+#: field:account.model.line,partner_id:0
+#: view:account.move:0
+#: field:account.move,partner_id:0
+#: view:account.move.line:0
+#: field:account.move.line,partner_id:0
+#: view:analytic.entries.report:0
+#: field:analytic.entries.report,partner_id:0
+#: model:ir.model,name:account.model_res_partner
+#: field:report.invoice.created,partner_id:0
+msgid "Partner"
+msgstr "パートナ"
+
+#. module: account
+#: help:account.change.currency,currency_id:0
+msgid "Select a currency to apply on the invoice"
+msgstr "請求書に適用する通貨の選択"
+
+#. module: account
+#: code:addons/account/account.py:3446
+#, python-format
+msgid ""
+"The bank account defined on the selected chart of accounts hasn't a code."
+msgstr "選択した勘定科目表に定義された銀行口座はコードを持っていません。"
+
+#. module: account
+#: code:addons/account/wizard/account_invoice_refund.py:108
+#, python-format
+msgid "Can not %s draft/proforma/cancel invoice."
+msgstr "請求書 %s はドラフト / プロフォーマ / キャンセルできません。"
+
+#. module: account
+#: code:addons/account/account_invoice.py:810
+#, python-format
+msgid "No Invoice Lines !"
+msgstr "請求書行がありません。"
+
+#. module: account
+#: view:account.financial.report:0
+msgid "Report Type"
+msgstr "レポートタイプ"
+
+#. module: account
+#: view:account.analytic.account:0
+#: view:account.bank.statement:0
+#: field:account.bank.statement,state:0
+#: field:account.entries.report,move_state:0
+#: view:account.fiscalyear:0
+#: field:account.fiscalyear,state:0
+#: view:account.invoice:0
+#: field:account.invoice,state:0
+#: view:account.invoice.report:0
+#: field:account.journal.period,state:0
+#: field:account.move,state:0
+#: view:account.move.line:0
+#: field:account.move.line,state:0
+#: field:account.period,state:0
+#: view:account.subscription:0
+#: field:account.subscription,state:0
+#: field:report.invoice.created,state:0
+msgid "State"
+msgstr "状態"
+
+#. module: account
+#: help:account.open.closed.fiscalyear,fyear_id:0
+msgid ""
+"Select Fiscal Year which you want to remove entries for its End of year "
+"entries journal"
+msgstr "年度末エントリー仕訳帳のために削除したいエントリーの会計年度を選択して下さい。"
+
+#. module: account
+#: field:account.tax.template,type_tax_use:0
+msgid "Tax Use In"
+msgstr "税金の使用"
+
+#. module: account
+#: code:addons/account/account_bank_statement.py:315
+#, python-format
+msgid ""
+"The statement balance is incorrect !\n"
+"The expected balance (%.2f) is different than the computed one. (%.2f)"
+msgstr ""
+"取引明細書の残高が正しくありません。\n"
+"予想される残高(%.2f)は計算されたもの(%.2f)と異なっています。"
+
+#. module: account
+#: code:addons/account/account_bank_statement.py:353
+#, python-format
+msgid "The account entries lines are not in valid state."
+msgstr "アカウントエントリー行は有効な状態ではありません。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_analytic_account_tree2
+msgid ""
+"The normal chart of accounts has a structure defined by the legal "
+"requirement of the country. The analytic chart of accounts structure should "
+"reflect your own business needs in term of costs/revenues reporting. They "
+"are usually structured by contracts, projects, products or departements. "
+"Most of the OpenERP operations (invoices, timesheets, expenses, etc) "
+"generate analytic entries on the related account."
+msgstr ""
+"通常の勘定科目表は国の法的要件で定義された構造を持ちます。分析勘定科目表は費用 / "
+"収益レポートの期間で独自のビジネスニーズを反映しているはずです。それらは通常は、契約、プロジェクト、製品あるいは部門により構成されます。OpenERPの操"
+"作(請求書、タイムシート、費用など)の殆どは関連するアカウントの上に分析エントリーを生成します。"
+
+#. module: account
+#: field:account.account.type,close_method:0
+msgid "Deferral Method"
+msgstr "繰延法"
+
+#. module: account
+#: code:addons/account/account_invoice.py:379
+#, python-format
+msgid "Invoice '%s' is paid."
+msgstr "請求書 %s は支払済です。"
+
+#. module: account
+#: model:process.node,note:account.process_node_electronicfile0
+msgid "Automatic entry"
+msgstr "自動エントリー"
+
+#. module: account
+#: constraint:account.tax.code.template:0
+msgid "Error ! You can not create recursive Tax Codes."
+msgstr "エラー。再帰的な関係となる税金コードは作成できません。"
+
+#. module: account
+#: help:account.journal,group_invoice_lines:0
+msgid ""
+"If this box is checked, the system will try to group the accounting lines "
+"when generating them from invoices."
+msgstr "このボックスがチェックされると、システムは請求書から会計行の生成を行う時に会計行のグループ化を行います。"
+
+#. module: account
+#: help:account.account,reconcile:0
+msgid ""
+"Check this box if this account allows reconciliation of journal items."
+msgstr "このアカウントが仕訳帳項目の消し込みを許す場合は、このボックスをチェックして下さい。"
+
+#. module: account
+#: help:account.period,state:0
+msgid ""
+"When monthly periods are created. The state is 'Draft'. At the end of "
+"monthly period it is in 'Done' state."
+msgstr "月次の期間が作成される時はその状態はドラフトです。月次の期間の終わりには状態は完了になります。"
+
+#. module: account
+#: report:account.analytic.account.inverted.balance:0
+msgid "Inverted Analytic Balance -"
+msgstr "反転分析残高 -"
+
+#. module: account
+#: view:account.move.bank.reconcile:0
+msgid "Open for bank reconciliation"
+msgstr "銀行調整を開く"
+
+#. module: account
+#: view:account.analytic.line:0
+#: model:ir.actions.act_window,name:account.action_account_analytic_line_form
+msgid "Analytic Entries"
+msgstr "分析エントリー"
+
+#. module: account
+#: view:report.account_type.sales:0
+msgid "This Months Sales by type"
+msgstr "タイプ別今月の売上"
+
+#. module: account
+#: view:account.analytic.account:0
+msgid "Associated Partner"
+msgstr "関連パートナ"
+
+#. module: account
+#: code:addons/account/account_invoice.py:1332
+#, python-format
+msgid "You must first select a partner !"
+msgstr "最初にパートナを選択して下さい。"
+
+#. module: account
+#: view:account.invoice:0
+#: field:account.invoice,comment:0
+msgid "Additional Information"
+msgstr "追加情報"
+
+#. module: account
+#: help:account.invoice,state:0
+msgid ""
+" * The 'Draft' state is used when a user is encoding a new and unconfirmed "
+"Invoice.             \n"
+"* The 'Pro-forma' when invoice is in Pro-forma state,invoice does not have "
+"an invoice number.             \n"
+"* The 'Open' state is used when user create invoice,a invoice number is "
+"generated.Its in open state till user does not pay invoice.             \n"
+"* The 'Paid' state is set automatically when the invoice is paid. Its "
+"related journal entries may or may not be reconciled.             \n"
+"* The 'Cancelled' state is used when user cancel invoice."
+msgstr ""
+" ・ ドラフト:ユーザが新しく確認未済の請求書をエンコードした時に使用されます。\n"
+"・ プロフォーマ:請求書がプロフォーマ状態である時は、請求書は請求書番号を持っていません。\n"
+"・ 開く:請求書が作成され、請求書番号が生成された時に使用されます。開く状態はユーザが支払を終えるまで続きます。  \n"
+"・ 支払済:請求書が支払われると自動的にセットされます。関係する仕訳帳エントリーは消し込みされるかもしれません。\n"
+"・ キャンセル済:ユーザが請求書をキャンセルする時に使われます。"
+
+#. module: account
+#: view:account.invoice.report:0
+#: field:account.invoice.report,residual:0
+msgid "Total Residual"
+msgstr "残差合計"
+
+#. module: account
+#: model:process.node,note:account.process_node_invoiceinvoice0
+#: model:process.node,note:account.process_node_supplierinvoiceinvoice0
+msgid "Invoice's state is Open"
+msgstr "請求書の状態は開いています。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_tax_code_tree
+msgid ""
+"The chart of taxes is used to generate your periodical tax statement. You "
+"will see the taxes with codes related to your legal statement according to "
+"your country."
+msgstr "税金のチャートは定期税金計算書を生成するために使用されます。国に応じた法律上の計算書に関連したコードとともに税金が表示されます。"
+
+#. module: account
+#: code:addons/account/account_invoice.py:428
+#, python-format
+msgid ""
+"Can not find a chart of accounts for this company, you should create one."
+msgstr "この会社のための勘定科目表が見つかりません。それを作成して下さい。"
+
+#. module: account
+#: view:account.invoice:0
+msgid "Proforma"
+msgstr "プロフォーマ"
+
+#. module: account
+#: report:account.analytic.account.cost_ledger:0
+msgid "J.C. /Move name"
+msgstr "個別原価 / 移動 名称"
+
+#. module: account
+#: model:ir.model,name:account.model_account_open_closed_fiscalyear
+msgid "Choose Fiscal Year"
+msgstr "会計年度の選択"
+
+#. module: account
+#: code:addons/account/account.py:3111
+#, python-format
+msgid "Purchase Refund Journal"
+msgstr "仕入返金仕訳帳"
+
+#. module: account
+#: help:account.tax.template,amount:0
+msgid "For Tax Type percent enter % ratio between 0-1."
+msgstr "税金はパーセンテージタイプのため、0から1の間の%比率を入力して下さい。"
+
+#. module: account
+#: view:account.analytic.account:0
+msgid "Current Accounts"
+msgstr "当座預金"
+
+#. module: account
+#: view:account.invoice.report:0
+msgid "Group by Invoice Date"
+msgstr "請求日でグループ化"
+
+#. module: account
+#: view:account.invoice.refund:0
+msgid ""
+"Modify Invoice: Cancels the current invoice and creates a new copy of it "
+"ready for editing."
+msgstr "請求書の変更:現在の請求書のキャンセルし、編集準備ができた新しいコピーを作成"
+
+#. module: account
+#: field:account.automatic.reconcile,period_id:0
+#: view:account.bank.statement:0
+#: field:account.bank.statement,period_id:0
+#: view:account.entries.report:0
+#: field:account.entries.report,period_id:0
+#: view:account.fiscalyear:0
+#: report:account.general.ledger_landscape:0
+#: view:account.invoice:0
+#: view:account.invoice.report:0
+#: field:account.journal.period,period_id:0
+#: report:account.journal.period.print:0
+#: report:account.journal.period.print.sale.purchase:0
+#: view:account.move:0
+#: field:account.move,period_id:0
+#: view:account.move.line:0
+#: field:account.move.line,period_id:0
+#: view:account.period:0
+#: field:account.subscription,period_nbr:0
+#: field:account.tax.chart,period_id:0
+#: field:account.treasury.report,period_id:0
+#: field:validate.account.move,period_id:0
+msgid "Period"
+msgstr "期間"
+
+#. module: account
+#: help:account.account,adjusted_balance:0
+msgid ""
+"Total amount (in Company currency) for transactions held in secondary "
+"currency for this account."
+msgstr "このアカウントで第2通貨で取引された合計金額(会社の通貨)"
+
+#. module: account
+#: report:account.invoice:0
+msgid "Net Total:"
+msgstr "正味合計:"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_finance_generic_reporting
+msgid "Generic Reporting"
+msgstr "一般的なレポート"
+
+#. module: account
+#: field:account.move.line.reconcile.writeoff,journal_id:0
+msgid "Write-Off Journal"
+msgstr "償却仕訳帳"
+
+#. module: account
+#: help:res.partner,property_payment_term:0
+msgid ""
+"This payment term will be used instead of the default one for the current "
+"partner"
+msgstr "この支払条件は現在のパートナのためにデフォルト条件の代わりに使用されます。"
+
+#. module: account
+#: view:account.tax.template:0
+msgid "Compute Code for Taxes included prices"
+msgstr "税込価格の計算コード"
+
+#. module: account
+#: code:addons/account/account_invoice.py:1030
+#, python-format
+msgid ""
+"You can not cancel an invoice which is partially paid! You need to "
+"unreconcile related payment entries first!"
+msgstr "一部が支払済の請求書のキャンセルはできません。まず、関連する支払エントリーを未消し込みにする必要があります。"
+
+#. module: account
+#: field:account.chart.template,property_account_income_categ:0
+msgid "Income Category Account"
+msgstr "収益分類のアカウント"
+
+#. module: account
+#: field:account.account,adjusted_balance:0
+msgid "Adjusted Balance"
+msgstr "残高調整"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form
+#: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form_template
+msgid "Fiscal Position Templates"
+msgstr "会計ポジションテンプレート"
+
+#. module: account
+#: view:account.entries.report:0
+msgid "Int.Type"
+msgstr ""
+
+#. module: account
+#: field:account.move.line,tax_amount:0
+msgid "Tax/Base Amount"
+msgstr "課税基準金額"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "  Valuation: Percent"
+msgstr "  評価:パーセント"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_invoice_tree3
+msgid ""
+"With Customer Refunds you can manage the credit notes for your customers. A "
+"refund is a document that credits an invoice completely or partially. You "
+"can easily generate refunds and reconcile them directly from the invoice "
+"form."
+msgstr ""
+"顧客返金とともに顧客のためのクレジットノートを管理することができます。返金は全部あるいは部分的な請求書のクレジットのドキュメントです。請求書フォームから簡"
+"単に返金を生成したり、それを直接消し込みすることができます。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_vat_declaration
+msgid ""
+"This menu print a VAT declaration based on invoices or payments. You can "
+"select one or several periods of the fiscal year. Information required for a "
+"tax declaration is automatically generated by OpenERP from invoices (or "
+"payments, in some countries). This data is updated in real time. That’s very "
+"useful because it enables you to preview at any time the tax that you owe at "
+"the start and end of the month or quarter."
+msgstr ""
+"このメニューは請求書または支払いに基づく消費税申告を印刷します。ひとつあるいは複数の会計年度を選択することができます。税金申請のために要求される情報は請求"
+"書(または支払い、幾つかの国の)からOpenERPによって自動的に生成されます。このデータはリアルタイムで更新されます。月あるいは四半期の開始と終了におい"
+"て、支払うべき税金をいつでもレビューできるため非常に便利です。"
+
+#. module: account
+#: report:account.invoice:0
+msgid "Tel. :"
+msgstr "TEL:"
+
+#. module: account
+#: field:account.account,company_currency_id:0
+msgid "Company Currency"
+msgstr "会社の通貨"
+
+#. module: account
+#: field:account.aged.trial.balance,chart_account_id:0
+#: field:account.balance.report,chart_account_id:0
+#: field:account.central.journal,chart_account_id:0
+#: field:account.common.account.report,chart_account_id:0
+#: field:account.common.journal.report,chart_account_id:0
+#: field:account.common.partner.report,chart_account_id:0
+#: field:account.common.report,chart_account_id:0
+#: field:account.general.journal,chart_account_id:0
+#: field:account.partner.balance,chart_account_id:0
+#: field:account.partner.ledger,chart_account_id:0
+#: field:account.print.journal,chart_account_id:0
+#: field:account.report.general.ledger,chart_account_id:0
+#: field:account.vat.declaration,chart_account_id:0
+#: field:accounting.report,chart_account_id:0
+msgid "Chart of Account"
+msgstr "勘定科目表"
+
+#. module: account
+#: model:process.node,name:account.process_node_paymententries0
+#: model:process.transition,name:account.process_transition_reconcilepaid0
+msgid "Payment"
+msgstr "支払い"
+
+#. module: account
+#: field:account.bank.statement,balance_end_real:0
+#: field:account.treasury.report,ending_balance:0
+msgid "Ending Balance"
+msgstr "期末残高"
+
+#. module: account
+#: help:account.move.line,blocked:0
+msgid ""
+"You can check this box to mark this journal item as a litigation with the "
+"associated partner"
+msgstr "関連するパートナとの訴訟としてこの仕訳帳項目をマークするためには、このボックスをチェックします。"
+
+#. module: account
+#: field:account.move.line,reconcile_partial_id:0
+#: view:account.move.line.reconcile:0
+msgid "Partial Reconcile"
+msgstr "部分消し込み"
+
+#. module: account
+#: model:ir.model,name:account.model_account_analytic_inverted_balance
+msgid "Account Analytic Inverted Balance"
+msgstr "アカウント分析反転残高"
+
+#. module: account
+#: model:ir.model,name:account.model_account_common_report
+msgid "Account Common Report"
+msgstr "アカウント共通レポート"
+
+#. module: account
+#: view:account.invoice.report:0
+#: view:analytic.entries.report:0
+msgid "current month"
+msgstr "今月"
+
+#. module: account
+#: code:addons/account/account.py:1052
+#, python-format
+msgid ""
+"No period defined for this date: %s !\n"
+"Please create one."
+msgstr ""
+"この日付のための期間が定義されていません:%s\n"
+"期間を作成して下さい。"
+
+#. module: account
+#: model:process.transition,name:account.process_transition_filestatement0
+msgid "Automatic import of the bank sta"
+msgstr "銀行取引明細書の自動インポート"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_journal_view
+#: model:ir.ui.menu,name:account.menu_action_account_journal_view
+msgid "Journal Views"
+msgstr "仕訳帳ビュー"
+
+#. module: account
+#: model:ir.model,name:account.model_account_move_bank_reconcile
+msgid "Move bank reconcile"
+msgstr "銀行消し込みの移動"
+
+#. module: account
+#: field:account.financial.report,account_type_ids:0
+#: model:ir.actions.act_window,name:account.action_account_type_form
+#: model:ir.ui.menu,name:account.menu_action_account_type_form
+msgid "Account Types"
+msgstr "アカウントタイプ"
+
+#. module: account
+#: view:account.payment.term.line:0
+msgid "  Value amount: n.a"
+msgstr "  値の金額:取引なし"
+
+#. module: account
+#: view:account.automatic.reconcile:0
+#: view:account.move:0
+#: view:account.move.line:0
+#: view:account.move.line.reconcile:0
+#: view:account.move.line.reconcile.select:0
+#: code:addons/account/wizard/account_move_line_reconcile_select.py:45
+#: model:ir.ui.menu,name:account.periodical_processing_reconciliation
+#: model:process.node,name:account.process_node_reconciliation0
+#: model:process.node,name:account.process_node_supplierreconciliation0
+#, python-format
+msgid "Reconciliation"
+msgstr "調整"
+
+#. module: account
+#: view:account.chart.template:0
+#: field:account.chart.template,property_account_receivable:0
+msgid "Receivable Account"
+msgstr "売掛金"
+
+#. module: account
+#: view:account.invoice:0
+msgid ""
+"This button only appears when the state of the invoice is 'paid' (showing "
+"that it has been fully reconciled) and auto-computed boolean 'reconciled' is "
+"False (depicting that it's not the case anymore). In other words, the "
+"invoice has been dereconciled and it does not fit anymore the 'paid' state. "
+"You should press this button to re-open it and let it continue its normal "
+"process after having resolved the eventual exceptions it may have created."
+msgstr ""
+"このボタンは請求書の状態が支払済(全てが消し込み済であることを示す)で、自動計算されたブール値の消し込み済がFalse(もはやそのケースではないことを示す"
+")の時にのみ表示されます。言い換えれば、請求書の消し込みは除去されもはや支払済状態と適合していません。結果的に作成されたかもしれない例外を解決した後に、そ"
+"れを再度開いて通常処理を継続させるためにこのボタンを押すべきです。"
+
+#. module: account
+#: model:ir.model,name:account.model_account_fiscalyear_close_state
+msgid "Fiscalyear Close state"
+msgstr "会計年度が閉じた状態"
+
+#. module: account
+#: field:account.invoice.refund,journal_id:0
+msgid "Refund Journal"
+msgstr "仕訳帳の返金"
+
+#. module: account
+#: report:account.account.balance:0
+#: report:account.central.journal:0
+#: report:account.general.journal:0
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: report:account.partner.balance:0
+msgid "Filter By"
+msgstr "フィルタ"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_invoice_tree1
+msgid ""
+"With Customer Invoices you can create and manage sales invoices issued to "
+"your customers. OpenERP can also generate draft invoices automatically from "
+"sales orders or deliveries. You should only confirm them before sending them "
+"to your customers."
+msgstr ""
+"顧客請求書とともに顧客に発行した売上請求書の作成と管理ができます。OpenERPは受注オーダーや配達から自動的にドラフト請求書の生成することもできます。顧"
+"客にそれを送る前に確認をするだけです。"
+
+#. module: account
+#: code:addons/account/wizard/account_period_close.py:51
+#, python-format
+msgid ""
+"In order to close a period, you must first post related journal entries."
+msgstr "期間を閉じるためには、まず、関連する仕訳帳エントリーを記帳する必要があります。"
+
+#. module: account
+#: view:account.entries.report:0
+#: view:board.board:0
+#: model:ir.actions.act_window,name:account.action_company_analysis_tree
+msgid "Company Analysis"
+msgstr "会社分析"
+
+#. module: account
+#: help:account.invoice,account_id:0
+msgid "The partner account used for this invoice."
+msgstr "パートナアカウントはこの請求書に使用されています。"
+
+#. module: account
+#: code:addons/account/account.py:3296
+#, python-format
+msgid "Tax %.2f%%"
+msgstr "税金 %.2f%%"
+
+#. module: account
+#: view:account.analytic.account:0
+msgid "Contacts"
+msgstr "コンタクト"
+
+#. module: account
+#: field:account.tax.code,parent_id:0
+#: view:account.tax.code.template:0
+#: field:account.tax.code.template,parent_id:0
+msgid "Parent Code"
+msgstr "親コード"
+
+#. module: account
+#: model:ir.model,name:account.model_account_payment_term_line
+msgid "Payment Term Line"
+msgstr "支払条件行"
+
+#. module: account
+#: code:addons/account/account.py:3109
+#, python-format
+msgid "Purchase Journal"
+msgstr "仕入仕訳帳"
+
+#. module: account
+#: view:account.invoice.refund:0
+msgid "Refund Invoice: Creates the refund invoice, ready for editing."
+msgstr "請求書の返金:編集のために準備した請求書の返金を作成します。"
+
+#. module: account
+#: field:account.invoice.line,price_subtotal:0
+msgid "Subtotal"
+msgstr "小計"
+
+#. module: account
+#: view:account.vat.declaration:0
+msgid "Print Tax Statement"
+msgstr "税金明細書の印刷"
+
+#. module: account
+#: view:account.model.line:0
+msgid "Journal Entry Model Line"
+msgstr ""
+
+#. module: account
+#: view:account.invoice:0
+#: field:account.invoice,date_due:0
+#: view:account.invoice.report:0
+#: field:account.invoice.report,date_due:0
+#: field:report.invoice.created,date_due:0
+msgid "Due Date"
+msgstr "期日"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_account_supplier
+#: model:ir.ui.menu,name:account.menu_finance_payables
+msgid "Suppliers"
+msgstr "仕入先"
+
+#. module: account
+#: view:account.journal:0
+msgid "Accounts Type Allowed (empty for no control)"
+msgstr "許可アカウントタイプ(制御なしは空)"
+
+#. module: account
+#: view:res.partner:0
+msgid "Supplier Accounting Properties"
+msgstr "仕入先会計属性"
+
+#. module: account
+#: help:account.move.line,amount_residual:0
+msgid ""
+"The residual amount on a receivable or payable of a journal entry expressed "
+"in the company currency."
+msgstr "仕訳帳エントリーの売掛金または買掛金の残差金額は会社の通貨で表現されています。"
+
+#. module: account
+#: view:account.tax.code:0
+msgid "Statistics"
+msgstr "統計情報"
+
+#. module: account
+#: field:account.analytic.chart,from_date:0
+#: field:project.account.analytic.line,from_date:0
+msgid "From"
+msgstr "から"
+
+#. module: account
+#: model:ir.model,name:account.model_account_fiscalyear_close
+msgid "Fiscalyear Close"
+msgstr "会計年度を閉じる"
+
+#. module: account
+#: sql_constraint:account.account:0
+msgid "The code of the account must be unique per company !"
+msgstr "アカウントのコードは会社毎に固有である必要があります。"
+
+#. module: account
+#: view:account.invoice:0
+#: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened
+msgid "Unpaid Invoices"
+msgstr "未払請求書"
+
+#. module: account
+#: code:addons/account/account_invoice.py:495
+#, python-format
+msgid "The payment term of supplier does not have a payment term line!"
+msgstr "仕入先の支払条件は支払条件行を持っていません。"
+
+#. module: account
+#: field:account.move.line.reconcile,debit:0
+msgid "Debit amount"
+msgstr "借方金額"
+
+#. module: account
+#: view:board.board:0
+#: model:ir.actions.act_window,name:account.action_treasory_graph
+msgid "Treasury"
+msgstr "金庫"
+
+#. module: account
+#: view:account.aged.trial.balance:0
+#: view:account.analytic.balance:0
+#: view:account.analytic.cost.ledger:0
+#: view:account.analytic.cost.ledger.journal.report:0
+#: view:account.analytic.inverted.balance:0
+#: view:account.analytic.journal.report:0
+#: view:account.common.report:0
+msgid "Print"
+msgstr "印刷"
+
+#. module: account
+#: view:account.journal:0
+msgid "Accounts Allowed (empty for no control)"
+msgstr "許可アカウント(制御なしは空)"
+
+#. module: account
+#: model:ir.model,name:account.model_account_fiscal_position_account_template
+msgid "Template Account Fiscal Mapping"
+msgstr "テンプレートアカウントの会計マッピング"
+
+#. module: account
+#: view:board.board:0
+msgid "Draft Customer Invoices"
+msgstr "ドラフト顧客請求書"
+
+#. module: account
+#: model:ir.ui.menu,name:account.menu_configuration_misc
+msgid "Miscellaneous"
+msgstr "その他"
+
+#. module: account
+#: help:res.partner,debit:0
+msgid "Total amount you have to pay to this supplier."
+msgstr "仕入先に支払うべき合計金額"
+
+#. module: account
+#: model:process.node,name:account.process_node_analytic0
+#: model:process.node,name:account.process_node_analyticcost0
+msgid "Analytic Costs"
+msgstr "原価分析"
+
+#. module: account
+#: field:account.analytic.journal,name:0
+#: report:account.general.journal:0
+#: field:account.journal,name:0
+msgid "Journal Name"
+msgstr "仕訳帳名"
+
+#. module: account
+#: view:account.move.line:0
+msgid "Next Partner Entries to reconcile"
+msgstr "消し込みする次のパートナエントリー"
+
+#. module: account
+#: selection:account.financial.report,style_overwrite:0
+msgid "Smallest Text"
+msgstr "最小のテキスト"
+
+#. module: account
+#: model:res.groups,name:account.group_account_invoice
+msgid "Invoicing & Payments"
+msgstr "請求と支払"
+
+#. module: account
+#: help:account.invoice,internal_number:0
+msgid ""
+"Unique number of the invoice, computed automatically when the invoice is "
+"created."
+msgstr "請求書固有番号。請求書が作成される時に自動的に計算されます。"
+
+#. module: account
+#: constraint:account.bank.statement.line:0
+msgid ""
+"The amount of the voucher must be the same amount as the one on the "
+"statement line"
+msgstr "バウチャーの金額は明細行のひとつの金額と同じでなければなりません。"
+
+#. module: account
+#: model:account.account.type,name:account.data_account_type_expense
+#: model:account.financial.report,name:account.account_financial_report_expense0
+msgid "Expense"
+msgstr "経費"
+
+#. module: account
+#: help:account.chart,fiscalyear:0
+msgid "Keep empty for all open fiscal years"
+msgstr "全ての開いている会計年度は空に保つ"
+
+#. module: account
+#: code:addons/account/account_move_line.py:1105
+#, python-format
+msgid "The account move (%s) for centralisation has been confirmed!"
+msgstr "一元化のためのアカウントの移動(%s)が確認されました。"
+
+#. module: account
+#: help:account.move.line,amount_currency:0
+msgid ""
+"The amount expressed in an optional other currency if it is a multi-currency "
+"entry."
+msgstr "多通貨エントリーの場合は金額はオプションである他の通貨により表わされます。"
+
+#. module: account
+#: code:addons/account/account.py:1307
+#, python-format
+msgid ""
+"You can not validate a non-balanced entry !\n"
+"Make sure you have configured payment terms properly !\n"
+"The latest payment term line should be of the type \"Balance\" !"
+msgstr ""
+"バランスしないエントリーを検証することはできません。\n"
+"適切に支払条件が設定されていることを確認して下さい。\n"
+"最後の支払条件行はバランスタイプにすべきです。"
+
+#. module: account
+#: view:account.account:0
+#: report:account.analytic.account.journal:0
+#: field:account.bank.statement,currency:0
+#: report:account.central.journal:0
+#: view:account.entries.report:0
+#: field:account.entries.report,currency_id:0
+#: report:account.general.journal:0
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: field:account.invoice,currency_id:0
+#: field:account.invoice.report,currency_id:0
+#: field:account.journal,currency:0
+#: report:account.journal.period.print:0
+#: report:account.journal.period.print.sale.purchase:0
+#: field:account.model.line,currency_id:0
+#: view:account.move:0
+#: view:account.move.line:0
+#: field:account.move.line,currency_id:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+#: field:analytic.entries.report,currency_id:0
+#: model:ir.model,name:account.model_res_currency
+#: field:report.account.sales,currency_id:0
+#: field:report.account_type.sales,currency_id:0
+#: field:report.invoice.created,currency_id:0
+#: field:res.partner.bank,currency_id:0
+msgid "Currency"
+msgstr "通貨"
+
+#. module: account
+#: help:account.bank.statement.line,sequence:0
+msgid ""
+"Gives the sequence order when displaying a list of bank statement lines."
+msgstr "銀行取引明細書のリストを表示する時には、並び順を与えて下さい。"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_validentries0
+msgid "Accountant validates the accounting entries coming from the invoice."
+msgstr "会計士は請求書から来る会計エントリーを検証します。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_fiscalyear_form
+msgid ""
+"Define your company's financial year according to your needs. A financial "
+"year is a period at the end of which a company's accounts are made up "
+"(usually 12 months). The financial year is usually referred to by the date "
+"in which it ends. For example, if a company's financial year ends November "
+"30, 2011, then everything between December 1, 2010 and November 30, 2011  "
+"would be referred to as FY 2011. You are not obliged to follow the actual "
+"calendar year."
+msgstr ""
+"ニーズに応じて会社の会計年度を定義して下さい。会計年度は会社のアカウントを構成する(通常12ヶ月)終わりまでの期間です。会計年度は通常その終わりの日付まで"
+"が当てはまります。例えば、会社の会計年度の終わりが2011年11月30日である場合、2010年12月1日から2011年11月30日の全てが2011年の会計"
+"年度に当てはまります。実際の暦年に従う必要はありません。"
+
+#. module: account
+#: view:account.entries.report:0
+#: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open
+msgid "Reconciled entries"
+msgstr "消し込み済エントリー"
+
+#. module: account
+#: field:account.invoice,address_contact_id:0
+msgid "Contact Address"
+msgstr "コンタクト先住所"
+
+#. module: account
+#: code:addons/account/account.py:2256
+#, python-format
+msgid "Wrong model !"
+msgstr "誤ったモデルです。"
+
+#. module: account
+#: field:account.invoice.refund,period:0
+msgid "Force period"
+msgstr "強制期間"
+
+#. module: account
+#: model:ir.model,name:account.model_account_partner_balance
+msgid "Print Account Partner Balance"
+msgstr "パートナ残高アカウントの印刷"
+
+#. module: account
+#: help:account.financial.report,sign:0
+msgid ""
+"For accounts that are typically more debited than credited and that you "
+"would like to print as negative amounts in your reports, you should reverse "
+"the sign of the balance; e.g.: Expense account. The same applies for "
+"accounts that are typically more credited than debited and that you would "
+"like to print as positive amounts in your reports; e.g.: Income account."
+msgstr ""
+"一般的には貸方よりも借方のアカウントで、そしてレポートにおいて負の金額で印刷することが望まれる、例えば費用勘定のように残高の符号を逆にすべきアカウントです"
+"。同じような適用で、一般的には借方よりは貸方のアカウントで、そしてレポートにおいては正の金額で印刷することが望まれる例えば損益勘定のようなアカウントです。"
+
+#. module: account
+#: field:res.partner,contract_ids:0
+msgid "Contracts"
+msgstr "契約"
+
+#. module: account
+#: field:account.cashbox.line,ending_id:0
+#: field:account.cashbox.line,starting_id:0
+#: field:account.entries.report,reconcile_id:0
+#: field:account.financial.report,balance:0
+msgid "unknown"
+msgstr "不明"
+
+#. module: account
+#: field:account.fiscalyear.close,journal_id:0
+#: code:addons/account/account.py:3113
+#, python-format
+msgid "Opening Entries Journal"
+msgstr "仕訳帳の開始エントリー"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_customerinvoice0
+msgid "Draft invoices are checked, validated and printed."
+msgstr "ドラフト請求書は確認され、検証され、そして印刷されます。"
+
+#. module: account
+#: help:account.chart.template,property_reserve_and_surplus_account:0
+msgid ""
+"This Account is used for transferring Profit/Loss(If It is Profit: Amount "
+"will be added, Loss: Amount will be deducted.), Which is calculated from "
+"Profilt & Loss Report"
+msgstr ""
+"このアカウントは損益計算書から計算された利益 / 損失を転送(利益の場合は金額は加算され、損失であれば減算されます)するために使われます。"
+
+#. module: account
+#: code:addons/account/account_invoice.py:808
+#, python-format
+msgid "Please define sequence on the journal related to this invoice."
+msgstr "この請求書と関連する仕訳帳上に順序を定義して下さい。"
+
+#. module: account
+#: view:account.move:0
+#: field:account.move,narration:0
+#: view:account.move.line:0
+#: field:account.move.line,narration:0
+msgid "Internal Note"
+msgstr "内部注釈"
+
+#. module: account
+#: view:report.account.sales:0
+msgid "This year's Sales by type"
+msgstr "タイプ別今年の売上"
+
+#. module: account
+#: view:account.analytic.cost.ledger.journal.report:0
+msgid "Cost Ledger for period"
+msgstr "期間原価元帳"
+
+#. module: account
+#: help:account.tax,child_depend:0
+#: help:account.tax.template,child_depend:0
+msgid ""
+"Set if the tax computation is based on the computation of child taxes rather "
+"than on the total amount."
+msgstr "税金計算が合計金額よりむしろ子の税金の計算に基づく場合は設定して下さい。"
+
+#. module: account
+#: selection:account.tax,applicable_type:0
+msgid "Given by Python Code"
+msgstr "Pythonコードによる指定"
+
+#. module: account
+#: field:account.analytic.journal,code:0
+msgid "Journal Code"
+msgstr "仕訳帳コード"
+
+#. module: account
+#: help:account.tax.code,sign:0
+msgid ""
+"You can specify here the coefficient that will be used when consolidating "
+"the amount of this case into its parent. For example, set 1/-1 if you want "
+"to add/substract it."
+msgstr ""
+"この事例の金額を親に統合する時に使用される係数をここで定義できます。例えば、それを加算 / 減算したい場合は、1 / -1 を設定します。"
+
+#. module: account
+#: view:account.invoice:0
+#: field:account.move.line,amount_residual:0
+#: field:account.move.line,amount_residual_currency:0
+msgid "Residual Amount"
+msgstr "残差金額"
+
+#. module: account
+#: field:account.invoice,move_lines:0
+#: field:account.move.reconcile,line_id:0
+msgid "Entry Lines"
+msgstr "エントリー行"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_view_financial_accounts_installer
+msgid "Review your Financial Accounts"
+msgstr "財務アカウントのレビュー"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_open_journal_button
+#: model:ir.actions.act_window,name:account.action_validate_account_move
+msgid "Open Journal"
+msgstr "仕訳帳を開く"
+
+#. module: account
+#: report:account.analytic.account.journal:0
+msgid "KI"
+msgstr ""
+
+#. module: account
+#: report:account.analytic.account.cost_ledger:0
+#: report:account.analytic.account.journal:0
+#: report:account.analytic.account.quantity_cost_ledger:0
+msgid "Period from"
+msgstr "期間の開始日"
+
+#. module: account
+#: code:addons/account/account.py:3110
+#, python-format
+msgid "Sales Refund Journal"
+msgstr "売上返金仕訳帳"
+
+#. module: account
+#: view:account.move:0
+#: view:account.move.line:0
+#: view:account.payment.term:0
+msgid "Information"
+msgstr "情報"
+
+#. module: account
+#: model:process.node,note:account.process_node_bankstatement0
+msgid "Registered payment"
+msgstr "登録済支払"
+
+#. module: account
+#: view:account.fiscalyear.close.state:0
+msgid "Close states of Fiscal year and periods"
+msgstr "会計年度と期間を閉じる"
+
+#. module: account
+#: view:account.analytic.line:0
+msgid "Product Information"
+msgstr "製品情報"
+
+#. module: account
+#: report:account.analytic.account.journal:0
+#: view:account.move:0
+#: view:account.move.line:0
+#: model:ir.ui.menu,name:account.next_id_40
+msgid "Analytic"
+msgstr "分析"
+
+#. module: account
+#: model:process.node,name:account.process_node_invoiceinvoice0
+#: model:process.node,name:account.process_node_supplierinvoiceinvoice0
+msgid "Create Invoice"
+msgstr "請求書作成"
+
+#. module: account
+#: field:wizard.multi.charts.accounts,purchase_tax_rate:0
+msgid "Purchase Tax(%)"
+msgstr "消費税(仕入)(%)"
+
+#. module: account
+#: code:addons/account/account_invoice.py:810
+#, python-format
+msgid "Please create some invoice lines."
+msgstr "いくらかの請求書行を作成して下さい。"
+
+#. module: account
+#: report:account.overdue:0
+msgid "Dear Sir/Madam,"
+msgstr "平素は格別のお引き立てを賜り厚く御礼申し上げます。"
+
+#. module: account
+#: field:account.vat.declaration,display_detail:0
+msgid "Display Detail"
+msgstr "詳細情報の表示"
+
+#. module: account
+#: code:addons/account/account.py:3118
+#, python-format
+msgid "SCNJ"
+msgstr ""
+
+#. module: account
+#: model:process.transition,note:account.process_transition_analyticinvoice0
+msgid ""
+"Analytic costs (timesheets, some purchased products, ...) come from analytic "
+"accounts. These generate draft invoices."
+msgstr "分析コスト(勤務表、幾つかの仕入済製品など)は分析アカウントから来ています。これらはドラフトの請求書を生成します。"
+
+#. module: account
+#: help:account.journal,view_id:0
+msgid ""
+"Gives the view used when writing or browsing entries in this journal. The "
+"view tells OpenERP which fields should be visible, required or readonly and "
+"in which order. You can create your own view for a faster encoding in each "
+"journal."
+msgstr ""
+"この仕訳帳でエントリーを書き込むまたは閲覧する時に使用するビューを提供します。ビューはどの項目が表示されるべきか、必須なのか、リードオンリーなのか、そして"
+"どの順番なのかをOpenERPに指示します。各仕訳帳の中に素早くエンコードするために独自のビューの作成ができます。"
+
+#. module: account
+#: field:account.period,date_stop:0
+#: model:ir.ui.menu,name:account.menu_account_end_year_treatments
+msgid "End of Period"
+msgstr "期末日"
+
+#. module: account
+#: field:account.account,financial_report_ids:0
+#: field:account.account.template,financial_report_ids:0
+#: model:ir.actions.act_window,name:account.action_account_financial_report_tree
+#: model:ir.actions.act_window,name:account.action_account_report
+#: model:ir.actions.act_window,name:account.action_account_report_bs
+#: model:ir.actions.act_window,name:account.action_account_report_pl
+#: model:ir.ui.menu,name:account.menu_account_reports
+msgid "Financial Reports"
+msgstr "財務レポート"
+
+#. module: account
+#: report:account.account.balance:0
+#: field:account.aged.trial.balance,period_from:0
+#: field:account.balance.report,period_from:0
+#: report:account.central.journal:0
+#: field:account.central.journal,period_from:0
+#: field:account.common.account.report,period_from:0
+#: field:account.common.journal.report,period_from:0
+#: field:account.common.partner.report,period_from:0
+#: field:account.common.report,period_from:0
+#: report:account.general.journal:0
+#: field:account.general.journal,period_from:0
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: report:account.partner.balance:0
+#: field:account.partner.balance,period_from:0
+#: field:account.partner.ledger,period_from:0
+#: field:account.print.journal,period_from:0
+#: field:account.report.general.ledger,period_from:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+#: report:account.vat.declaration:0
+#: field:account.vat.declaration,period_from:0
+#: field:accounting.report,period_from:0
+#: field:accounting.report,period_from_cmp:0
+msgid "Start Period"
+msgstr "期首日"
+
+#. module: account
+#: field:account.aged.trial.balance,direction_selection:0
+msgid "Analysis Direction"
+msgstr "分析指示"
+
+#. module: account
+#: field:res.partner,ref_companies:0
+msgid "Companies that refers to partner"
+msgstr "パートナに当てはまる会社"
+
+#. module: account
+#: view:account.journal:0
+#: field:account.journal.column,view_id:0
+#: view:account.journal.view:0
+#: field:account.journal.view,name:0
+#: model:ir.model,name:account.model_account_journal_view
+msgid "Journal View"
+msgstr "仕訳帳ビュー"
+
+#. module: account
+#: view:account.move.line:0
+#: code:addons/account/account_move_line.py:1046
+#, python-format
+msgid "Total credit"
+msgstr "合計貸方"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_suppliervalidentries0
+msgid "Accountant validates the accounting entries coming from the invoice. "
+msgstr "会計士は請求書から来る会計エントリーを検証します。 "
+
+#. module: account
+#: report:account.overdue:0
+msgid "Best regards."
+msgstr "それでは、よろしくお願いいたします。"
+
+#. module: account
+#: view:account.invoice:0
+msgid "Unpaid"
+msgstr "未払"
+
+#. module: account
+#: model:ir.model,name:account.model_account_tax_code_template
+msgid "Tax Code Template"
+msgstr "税金コードテンプレート"
+
+#. module: account
+#: report:account.overdue:0
+msgid "Document: Customer account statement"
+msgstr "ドキュメント:顧客アカウント取引明細書"
+
+#. module: account
+#: field:account.account.type,report_type:0
+msgid "P&L / BS Category"
+msgstr "損益計算書 / 貸借対照表分類"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_invoice_tree4
+msgid ""
+"With Supplier Refunds you can manage the credit notes you receive from your "
+"suppliers. A refund is a document that credits an invoice completely or "
+"partially. You can easily generate refunds and reconcile them directly from "
+"the invoice form."
+msgstr ""
+"仕入先返金とともに仕入先から受け取ったクレジットノートを管理することができます。返金は全部あるいは部分的な請求書のクレジットのドキュメントです。請求書フォ"
+"ームから簡単に返金を生成したり、それを直接消し込みすることができます。"
+
+#. module: account
+#: view:account.account.template:0
+msgid "Receivale Accounts"
+msgstr "売掛金"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_bank_statement_periodic_tree
+#: model:ir.actions.act_window,name:account.action_bank_statement_tree
+#: model:ir.ui.menu,name:account.menu_bank_statement_tree
+msgid "Bank Statements"
+msgstr "銀行取引明細書"
+
+#. module: account
+#: field:account.account,balance:0
+#: report:account.account.balance:0
+#: selection:account.account.type,close_method:0
+#: report:account.analytic.account.balance:0
+#: report:account.analytic.account.cost_ledger:0
+#: report:account.analytic.account.inverted.balance:0
+#: report:account.central.journal:0
+#: field:account.entries.report,balance:0
+#: report:account.general.journal:0
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: field:account.invoice,residual:0
+#: field:account.move.line,balance:0
+#: report:account.partner.balance:0
+#: selection:account.payment.term.line,value:0
+#: selection:account.tax,type:0
+#: selection:account.tax.template,type:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+#: field:account.treasury.report,balance:0
+#: field:report.account.receivable,balance:0
+#: field:report.aged.receivable,balance:0
+msgid "Balance"
+msgstr "残高"
+
+#. module: account
+#: model:process.node,note:account.process_node_supplierbankstatement0
+msgid "Manually or automatically entered in the system"
+msgstr "システムに手動または自動で入力されました。"
+
+#. module: account
+#: report:account.account.balance:0
+#: report:account.general.ledger_landscape:0
+msgid "Display Account"
+msgstr "表示アカウント"
+
+#. module: account
+#: view:account.account.type:0
+msgid "Closing Method"
+msgstr "閉鎖方法"
+
+#. module: account
+#: selection:account.account,type:0
+#: selection:account.account.template,type:0
+#: model:account.account.type,name:account.data_account_type_payable
+#: selection:account.entries.report,type:0
+msgid "Payable"
+msgstr "買掛金"
+
+#. module: account
+#: view:report.account.sales:0
+#: view:report.account_type.sales:0
+#: view:report.hr.timesheet.invoice.journal:0
+msgid "This Year"
+msgstr "今年度"
+
+#. module: account
+#: view:board.board:0
+msgid "Account Board"
+msgstr "アカウント委員会"
+
+#. module: account
+#: view:account.model:0
+#: field:account.model,legend:0
+msgid "Legend"
+msgstr "凡例"
+
+#. module: account
+#: view:account.analytic.account:0
+msgid "Contract Data"
+msgstr "契約データ"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_moves_sale
+msgid ""
+"This view is used by accountants in order to record entries massively in "
+"OpenERP. If you want to record a customer invoice, select the journal and "
+"the period in the search toolbar. Then, start by recording the entry line of "
+"the income account. OpenERP will propose to you automatically the Tax "
+"related to this account and the counter-part \"Account receivable\"."
+msgstr ""
+"このビューはOpenERPに大量のエントリーを記録するために会計士によって使われます。顧客請求書を記録することを望む場合、検索ツールバーの仕訳帳と期間を選"
+"択して下さい。それから、損益勘定のエントリー行を開始します。OpenERPはこのアカウントに関係する税金と相手方の売掛金を自動的に提案します。"
+
+#. module: account
+#: code:addons/account/wizard/account_automatic_reconcile.py:152
+#, python-format
+msgid "You must select accounts to reconcile"
+msgstr "消し込みのためにアカウントを選択する必要があります。"
+
+#. module: account
+#: model:process.transition,note:account.process_transition_entriesreconcile0
+msgid "Accounting entries are the first input of the reconciliation."
+msgstr "会計エントリーは消し込みの最初の入力です。"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_period_form
+msgid ""
+"Here you can define a financial period, an interval of time in your "
+"company's financial year. An accounting period typically is a month or a "
+"quarter. It usually corresponds to the periods of the tax declaration. "
+"Create and manage periods from here and decide whether a period should be "
+"closed or left open depending on your company's activities over a specific "
+"period."
+msgstr ""
+"会社の会計年度の時間間隔である会計期間をここで定義して下さい。会計期間は通常は1ヶ月あるいは3ヶ月です。これは、通常は税金申告の期間た対応します。ここから"
+"期間を作成して管理して下さい。そして、期間は閉じられるべきなのか、特定の期間にわたる会社の活動に応じて開いたままにしておくのかを決めます。"
+
+#. module: account
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+msgid "Filters By"
+msgstr "フィルタ"
+
+#. module: account
+#: model:process.node,note:account.process_node_manually0
+#: model:process.transition,name:account.process_transition_invoicemanually0
+msgid "Manual entry"
+msgstr "手動入力"
+
+#. module: account
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: report:account.journal.period.print:0
+#: report:account.journal.period.print.sale.purchase:0
+#: field:account.move.line,move_id:0
+#: field:analytic.entries.report,move_id:0
+msgid "Move"
+msgstr "移動"
+
+#. module: account
+#: code:addons/account/account_move_line.py:1153
+#, python-format
+msgid "You can not change the tax, you should remove and recreate lines !"
+msgstr "税金を変更することはできません。行を削除して再作成する必要があります。"
+
+#. module: account
+#: view:analytic.entries.report:0
+msgid "Analytic Entries of last 365 days"
+msgstr "過去365日の分析エントリー"
+
+#. module: account
+#: report:account.central.journal:0
+msgid "A/C No."
+msgstr "アカウント番号"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement
+msgid "Bank statements"
+msgstr "銀行取引明細書"
+
+#. module: account
+#: help:account.addtmpl.wizard,cparent_id:0
+msgid ""
+"Creates an account with the selected template under this existing parent."
+msgstr "この既存の親の元に選択したテンプレートを使ってアカウントを作成します。"
+
+#. module: account
+#: selection:account.model.line,date_maturity:0
+msgid "Date of the day"
+msgstr "曜日"
+
+#. module: account
+#: code:addons/account/wizard/account_move_bank_reconcile.py:49
+#, python-format
+msgid ""
+"You have to define the bank account\n"
+"in the journal definition for reconciliation."
+msgstr ""
+"消し込みのために仕訳帳定義の中に\n"
+"銀行口座を定義する必要があります。"
+
+#. module: account
+#: view:account.move.line.reconcile:0
+msgid "Reconciliation transactions"
+msgstr "調整取引"
+
+#. module: account
+#: model:ir.actions.act_window,name:account.action_account_common_menu
+msgid "Common Report"
+msgstr "一般的なレポート"
+
+#. module: account
+#: view:account.account:0
+#: field:account.account,child_consol_ids:0
+msgid "Consolidated Children"
+msgstr "統合された子"
+
+#. module: account
+#: code:addons/account/wizard/account_fiscalyear_close.py:87
+#, python-format
+msgid ""
+"The journal must have centralised counterpart without the Skipping draft "
+"state option checked!"
+msgstr "仕訳帳はドラフト状態オプションの設定をスキップすることなしに、相手方の一元化を持つ必要があります。"
+
+#. module: account
+#: view:account.invoice.report:0
+msgid "Customer And Supplier Invoices"
+msgstr "顧客 / 仕入先請求書"
+
+#. module: account
+#: model:process.node,note:account.process_node_paymententries0
+#: model:process.transition,name:account.process_transition_paymentorderbank0
+#: model:process.transition,name:account.process_transition_paymentreconcile0
+msgid "Payment entries"
+msgstr "支払エントリー"
+
+#. module: account
+#: selection:account.entries.report,month:0
+#: selection:account.invoice.report,month:0
+#: selection:analytic.entries.report,month:0
+#: selection:report.account.sales,month:0
+#: selection:report.account_type.sales,month:0
+msgid "July"
+msgstr "7月"
+
+#. module: account
+#: view:account.account:0
+msgid "Chart of accounts"
+msgstr "勘定科目表"
+
+#. module: account
+#: field:account.subscription.line,subscription_id:0
+msgid "Subscription"
+msgstr "サブスクリプション"
+
+#. module: account
+#: model:ir.model,name:account.model_account_analytic_balance
+msgid "Account Analytic Balance"
+msgstr "アカウント分析残高"
+
+#. module: account
+#: code:addons/account/account.py:412
+#, python-format
+msgid ""
+"No opening/closing period defined, please create one to set the initial "
+"balance!"
+msgstr "期首日 / 期末日が定義されていません。それらを作成して期首残高を設定して下さい。"
+
+#. module: account
+#: report:account.account.balance:0
+#: field:account.aged.trial.balance,period_to:0
+#: field:account.balance.report,period_to:0
+#: report:account.central.journal:0
+#: field:account.central.journal,period_to:0
+#: field:account.common.account.report,period_to:0
+#: field:account.common.journal.report,period_to:0
+#: field:account.common.partner.report,period_to:0
+#: field:account.common.report,period_to:0
+#: report:account.general.journal:0
+#: field:account.general.journal,period_to:0
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: report:account.partner.balance:0
+#: field:account.partner.balance,period_to:0
+#: field:account.partner.ledger,period_to:0
+#: field:account.print.journal,period_to:0
+#: field:account.report.general.ledger,period_to:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+#: report:account.vat.declaration:0
+#: field:account.vat.declaration,period_to:0
+#: field:accounting.report,period_to:0
+#: field:accounting.report,period_to_cmp:0
+msgid "End Period"
+msgstr "期末日"
+
+#. module: account
+#: field:account.move.line,date_maturity:0
+msgid "Due date"
+msgstr "期日"
+
+#. module: account
+#: view:account.move.journal:0
+msgid "Standard entries"
+msgstr "標準エントリー"
+
+#. module: account
+#: help:account.journal,type:0
+msgid ""
+"Select 'Sale' for customer invoices journals. Select 'Purchase' for supplier "
+"invoices journals. Select 'Cash' or 'Bank' for journals that are used in "
+"customer or supplier payments. Select 'General' for miscellaneous operations "
+"journals. Select 'Opening/Closing Situation' for entries generated for new "
+"fiscal years."
+msgstr ""
+"顧客請求書仕訳帳のためには、売上を選択して下さい。仕入先請求書仕訳帳のためには、仕入を選択して下さい。顧客や仕入先の支払で使われる仕訳帳のためには、現金ま"
+"たは銀行を選択して下さい。その他の操作の仕訳帳のためには、一般を選択して下さい。新しい会計年度用に生成されたエントリーには、状態の開設 / "
+"閉鎖を選択して下さい。"
+
+#. module: account
+#: model:ir.model,name:account.model_account_subscription
+msgid "Account Subscription"
+msgstr "アカウントサブスクリプション"
+
+#. module: account
+#: report:account.overdue:0
+msgid "Maturity date"
+msgstr "満期日"
+
+#. module: account
+#: view:account.subscription:0
+msgid "Entry Subscription"
+msgstr "サブスクリプションエントリー"
+
+#. module: account
+#: report:account.account.balance:0
+#: field:account.aged.trial.balance,date_from:0
+#: field:account.balance.report,date_from:0
+#: report:account.central.journal:0
+#: field:account.central.journal,date_from:0
+#: field:account.common.account.report,date_from:0
+#: field:account.common.journal.report,date_from:0
+#: field:account.common.partner.report,date_from:0
+#: field:account.common.report,date_from:0
+#: field:account.fiscalyear,date_start:0
+#: report:account.general.journal:0
+#: field:account.general.journal,date_from:0
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: field:account.installer,date_start:0
+#: report:account.partner.balance:0
+#: field:account.partner.balance,date_from:0
+#: field:account.partner.ledger,date_from:0
+#: field:account.print.journal,date_from:0
+#: field:account.report.general.ledger,date_from:0
+#: field:account.subscription,date_start:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+#: field:account.vat.declaration,date_from:0
+#: field:accounting.report,date_from:0
+#: field:accounting.report,date_from_cmp:0
+msgid "Start Date"
+msgstr "開始日"
+
+#. module: account
+#: help:account.invoice,reconciled:0
+msgid ""
+"It indicates that the invoice has been paid and the journal entry of the "
+"invoice has been reconciled with one or several journal entries of payment."
+msgstr ""
+"この請求書は既に支払済で、1つあるいは幾つかの支払の仕訳帳エントリーを持ち、請求書が消し込み済みの仕訳帳エントリーであることを示しています。"
+
+#. module: account
+#: view:account.invoice:0
+#: view:account.invoice.report:0
+#: model:process.node,name:account.process_node_supplierdraftinvoices0
+msgid "Draft Invoices"
+msgstr "ドラフト請求書"
+
+#. module: account
+#: selection:account.account.type,close_method:0
+#: view:account.entries.report:0
+#: view:account.move.line:0
+msgid "Unreconciled"
+msgstr "未消し込み"
+
+#. module: account
+#: code:addons/account/account_invoice.py:828
+#, python-format
+msgid "Bad total !"
+msgstr "合計が誤っています。"
+
+#. module: account
+#: field:account.journal,sequence_id:0
+msgid "Entry Sequence"
+msgstr "エントリーの順序"
+
+#. module: account
+#: model:ir.actions.act_window,help:account.action_account_period_tree
+msgid ""
+"A period is a fiscal period of time during which accounting entries should "
+"be recorded for accounting related activities. Monthly period is the norm "
+"but depending on your countries or company needs, you could also have "
+"quarterly periods. Closing a period will make it impossible to record new "
+"accounting entries, all new entries should then be made on the following "
+"open period. Close a period when you do not want to record new entries and "
+"want to lock this period for tax related calculation."
+msgstr ""
+"期間は会計に関連する活動を記録すべき会計エントリーが含まれる会計期間のことです。月次期間が標準ですが、あなたの国あるいは会社のニーズに依存します。また、四"
+"半期期間を持つこともできます。期間の閉鎖は新しい会計エントリーの記録を不可能にし、全ての新しいエントリーは次の開設期間でなされる必要があります。新しいエン"
+"トリーを記録したくない場合、あるいは税金に関連する計算のためにこの期間をロックしたい場合は期間を閉じてください。"
+
+#. module: account
+#: view:account.analytic.account:0
+msgid "Pending"
+msgstr "保留"
+
+#. module: account
+#: model:process.transition,name:account.process_transition_analyticinvoice0
+#: model:process.transition,name:account.process_transition_supplieranalyticcost0
+msgid "From analytic accounts"
+msgstr "分析アカウントから"
+
+#. module: account
+#: field:account.period,name:0
+msgid "Period Name"
+msgstr "期間名"
+
+#. module: account
+#: report:account.analytic.account.quantity_cost_ledger:0
+msgid "Code/Date"
+msgstr "コード / 日付"
+
+#. module: account
+#: field:account.account,active:0
+#: field:account.analytic.journal,active:0
+#: field:account.fiscal.position,active:0
+#: field:account.journal.period,active:0
+#: field:account.payment.term,active:0
+#: field:account.tax,active:0
+msgid "Active"
+msgstr "アクティブ"
+
+#. module: account
+#: view:accounting.report:0
+msgid "Comparison"
+msgstr "比較"
+
+#. module: account
+#: code:addons/account/account_invoice.py:372
+#, python-format
+msgid "Unknown Error"
+msgstr "不明なエラー"
+
+#. module: account
+#: help:res.partner,property_account_payable:0
+msgid ""
+"This account will be used instead of the default one as the payable account "
+"for the current partner"
+msgstr "このアカウントは現在のパートナのためにデフォルトアカウントの代わりに買掛金として使用されます。"
+
+#. module: account
+#: field:account.period,special:0
+msgid "Opening/Closing Period"
+msgstr "期首日 / 期末日"
+
+#. module: account
+#: field:account.account,currency_id:0
+#: field:account.account.template,currency_id:0
+#: field:account.bank.accounts.wizard,currency_id:0
+msgid "Secondary Currency"
+msgstr "第2通貨"
+
+#. module: account
+#: model:ir.model,name:account.model_validate_account_move
+msgid "Validate Account Move"
+msgstr "アカウント移動の検証"
+
+#. module: account
+#: field:account.account,credit:0
+#: report:account.account.balance:0
+#: report:account.analytic.account.balance:0
+#: report:account.analytic.account.cost_ledger:0
+#: report:account.analytic.account.inverted.balance:0
+#: report:account.central.journal:0
+#: field:account.entries.report,credit:0
+#: report:account.general.journal:0
+#: report:account.general.ledger:0
+#: report:account.general.ledger_landscape:0
+#: report:account.journal.period.print:0
+#: report:account.journal.period.print.sale.purchase:0
+#: field:account.model.line,credit:0
+#: field:account.move.line,credit:0
+#: report:account.partner.balance:0
+#: report:account.third_party_ledger:0
+#: report:account.third_party_ledger_other:0
+#: field:account.treasury.report,credit:0
+#: report:account.vat.declaration:0
+#: field:report.account.receivable,credit:0
+msgid "Credit"
+msgstr "貸方"
+
+#. module: account
+#: help:account.invoice.refund,journal_id:0
+msgid ""
+"You can select here the journal to use for the refund invoice that will be "
+"created. If you leave that field empty, it will use the same journal as the "
+"current invoice."
+msgstr "あなたは作成される返金請求書のために使う仕訳帳をここで選択できます。もしその項目が空であれば、現在の請求書と同じ仕訳帳が使われます。"
+
+#. module: account
+#: selection:account.account.type,report_type:0
+#: code:addons/account/account.py:181
+#, python-format
+msgid "Profit & Loss (Income account)"
+msgstr "損益(損益勘定)"
+
+#. module: account
+#: constraint:account.a

Follow ups