diff --git a/account_cost_center/README.rst b/account_cost_center/README.rst new file mode 100644 index 00000000000..133fe87556f --- /dev/null +++ b/account_cost_center/README.rst @@ -0,0 +1,113 @@ +========== +Costcenter +========== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:697dce33e30296fb060a0f9fcb8be9b8807b5ba5c0d964de201ba90b34e53d24 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--financial--tools-lightgray.png?logo=github + :target: https://github.com/OCA/account-financial-tools/tree/16.0/account_cost_center + :alt: OCA/account-financial-tools +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/account-financial-tools-16-0/account-financial-tools-16-0-account_cost_center + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/account-financial-tools&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows the user to link every invoice line to a cost center +providing an extra dimension for the analysis. + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +This module is relevant when you are creating sales invoices and using analytic accounting. + +Start using cost centers by defining the cost centers. Be aware that Analytic Accounting +must be activated on the user for the following menu option. +Use the menu in the accounting module: + + **Configuration > Analytics accounting > Cost centers** + +.. figure:: https://raw.githubusercontent.com/OCA/account-financial-tools/16.0/account_cost_center/static/description/account_costcenter_1.png + :alt: Cost centers can be configured + :align: center + +Once defined you can add a cost center to an invoice line. A default cost center for +the current invoice can be set in the other info tab. + +.. figure:: https://raw.githubusercontent.com/OCA/account-financial-tools/16.0/account_cost_center/static/description/account_costcenter_2.png + :alt: Cost centers can be selected on invoice lines + :align: center + +This module adds the cost center concept to the reporting. + + **Accounting > Invoice Analysis** + +Here you can select or unselect the cost center within your analysis. + +.. figure:: https://raw.githubusercontent.com/OCA/account-financial-tools/16.0/account_cost_center/static/description/account_costcenter_3.png + :alt: Cost centers can be selected on invoice lines + :align: center + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Onestein + +Contributors +~~~~~~~~~~~~ + +* Kevin Graveman +* Richard Dijkstra +* Andrea Stirpe +* Antonio Esposito +* `Heliconia Solutions Pvt. Ltd. `_ + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/account-financial-tools `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_cost_center/__init__.py b/account_cost_center/__init__.py new file mode 100644 index 00000000000..31660d6a965 --- /dev/null +++ b/account_cost_center/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import models diff --git a/account_cost_center/__manifest__.py b/account_cost_center/__manifest__.py new file mode 100644 index 00000000000..14e6e47ac73 --- /dev/null +++ b/account_cost_center/__manifest__.py @@ -0,0 +1,22 @@ +# Copyright 2016-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "Costcenter", + "summary": "Cost center information for invoice lines", + "author": "Onestein, Odoo Community Association (OCA)", + "license": "AGPL-3", + "website": "https://github.com/OCA/account-financial-tools", + "category": "Accounting", + "version": "16.0.1.0.0", + "depends": ["account", "base_view_inheritance_extension"], + "data": [ + "security/ir.model.access.csv", + "security/account_cost_center_security.xml", + "views/account_cost_center_views.xml", + "views/account_move_views.xml", + "views/account_move_line_views.xml", + "views/account_invoice_report_views.xml", + ], + "installable": True, +} diff --git a/account_cost_center/i18n/account_cost_center.pot b/account_cost_center/i18n/account_cost_center.pot new file mode 100644 index 00000000000..d98be1aa342 --- /dev/null +++ b/account_cost_center/i18n/account_cost_center.pot @@ -0,0 +1,122 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" diff --git a/account_cost_center/i18n/am.po b/account_cost_center/i18n/am.po new file mode 100644 index 00000000000..4b57300a182 --- /dev/null +++ b/account_cost_center/i18n/am.po @@ -0,0 +1,127 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Amharic (https://www.transifex.com/oca/teams/23907/am/)\n" +"Language: am\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" diff --git a/account_cost_center/i18n/ar.po b/account_cost_center/i18n/ar.po new file mode 100644 index 00000000000..0b73ec30dd9 --- /dev/null +++ b/account_cost_center/i18n/ar.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Arabic (https://www.transifex.com/oca/teams/23907/ar/)\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "الشركة" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "اسم العرض" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "المعرف" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "عناصر دفتر اليومية" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "عناصر دفتر اليومية" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "اللقب" + +#~ msgid "Invoice" +#~ msgstr "فاتورة" + +#~ msgid "Invoice Line" +#~ msgstr "خط الفاتورة" diff --git a/account_cost_center/i18n/bg.po b/account_cost_center/i18n/bg.po new file mode 100644 index 00000000000..7bcbdbc2bb2 --- /dev/null +++ b/account_cost_center/i18n/bg.po @@ -0,0 +1,131 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Kaloyan Naumov , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: Kaloyan Naumov , 2017\n" +"Language-Team: Bulgarian (https://www.transifex.com/oca/teams/23907/bg/)\n" +"Language: bg\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Код" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Фирма" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Име за Показване" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Последно обновено на" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Заглавие" + +#~ msgid "Invoice" +#~ msgstr "Фактура" diff --git a/account_cost_center/i18n/bs.po b/account_cost_center/i18n/bs.po new file mode 100644 index 00000000000..260b0d66dc8 --- /dev/null +++ b/account_cost_center/i18n/bs.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Bosnian (https://www.transifex.com/oca/teams/23907/bs/)\n" +"Language: bs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Kompanija" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Prikaži naziv" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Stavke dnevnika" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Stavke dnevnika" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Naslov" + +#~ msgid "Invoice" +#~ msgstr "Faktura" + +#~ msgid "Invoice Line" +#~ msgstr "Stavka fakture" diff --git a/account_cost_center/i18n/ca.po b/account_cost_center/i18n/ca.po new file mode 100644 index 00000000000..cc4c4633332 --- /dev/null +++ b/account_cost_center/i18n/ca.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Carles Antoli , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-13 23:26+0000\n" +"PO-Revision-Date: 2017-01-13 23:26+0000\n" +"Last-Translator: Carles Antoli , 2017\n" +"Language-Team: Catalan (https://www.transifex.com/oca/teams/23907/ca/)\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Codi" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Companyia" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Veure el nom" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Apunts comptables" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Apunts comptables" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Darrera modificació el" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Darrera Actualització per" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Darrera Actualització el" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Títol" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Invoice Line" +#~ msgstr "Línia factura" + +#~ msgid "Analytic Account" +#~ msgstr "Compte analític" diff --git a/account_cost_center/i18n/ca_ES.po b/account_cost_center/i18n/ca_ES.po new file mode 100644 index 00000000000..a0f12d454b3 --- /dev/null +++ b/account_cost_center/i18n/ca_ES.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Carlos Hormigo, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-12-02 00:55+0000\n" +"PO-Revision-Date: 2017-12-02 00:55+0000\n" +"Last-Translator: Carlos Hormigo, 2018\n" +"Language-Team: Catalan (Spain) (https://www.transifex.com/oca/teams/23907/" +"ca_ES/)\n" +"Language: ca_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Codi" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Companyia" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creat a" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nom visible" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Darrera modificació en" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Darrera actualització per" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Darrera actualització el" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" diff --git a/account_cost_center/i18n/cs.po b/account_cost_center/i18n/cs.po new file mode 100644 index 00000000000..098f3ff8c91 --- /dev/null +++ b/account_cost_center/i18n/cs.po @@ -0,0 +1,135 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Czech (https://www.transifex.com/oca/teams/23907/cs/)\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Společnost" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Vytvořil(a)" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Zobrazovaný název" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Položky deníku" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Položky deníku" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Naposled upraveno" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Naposled upraveno" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Oslovení" + +#~ msgid "Invoice" +#~ msgstr "Faktura" + +#~ msgid "Invoice Line" +#~ msgstr "Řádek faktury" diff --git a/account_cost_center/i18n/da.po b/account_cost_center/i18n/da.po new file mode 100644 index 00000000000..1cc2c5870dc --- /dev/null +++ b/account_cost_center/i18n/da.po @@ -0,0 +1,127 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Danish (https://www.transifex.com/oca/teams/23907/da/)\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Virksomhed" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Vist navn" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "Id" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Titel" diff --git a/account_cost_center/i18n/de.po b/account_cost_center/i18n/de.po new file mode 100644 index 00000000000..9db8d88ea3c --- /dev/null +++ b/account_cost_center/i18n/de.po @@ -0,0 +1,158 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Rudolf Schnapka , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-17 23:22+0000\n" +"PO-Revision-Date: 2020-06-12 14:19+0000\n" +"Last-Translator: Maria Sparenberg \n" +"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 3.10\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "Kostenstelle" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Code" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Unternehmen" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "Kostenstelle" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "Kostenstellen" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "Vorschlags-Kostenstelle" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "Rechnungsauswertungen" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Buchungsjournale" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Buchungsjournale" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Zuletzt geändert von" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Zuletzt geändert am" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "Bez./Schlüssel" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Titel" + +#~ msgid "Invoice" +#~ msgstr "Rechnung" + +#~ msgid "Invoice Line" +#~ msgstr "Rechnungsposition" + +#~ msgid "" +#~ "

\n" +#~ " Click to add a new event.\n" +#~ "

\n" +#~ "

\n" +#~ " Cost centers provide an extra analytic dimension\n" +#~ "

\n" +#~ " " +#~ msgstr "" +#~ "

\n" +#~ " Fügen Sie eine Veranstaltung hinzu.\n" +#~ "

\n" +#~ "

\n" +#~ " Kostenstellen bieten eine zusätzlich " +#~ "Analysedimension.\n" +#~ "

\n" +#~ " " + +#~ msgid "Analytic Account" +#~ msgstr "Kostenstelle" diff --git a/account_cost_center/i18n/el_GR.po b/account_cost_center/i18n/el_GR.po new file mode 100644 index 00000000000..cb6f5403fcf --- /dev/null +++ b/account_cost_center/i18n/el_GR.po @@ -0,0 +1,135 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Kostas Goutoudis , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: Kostas Goutoudis , 2017\n" +"Language-Team: Greek (Greece) (https://www.transifex.com/oca/teams/23907/" +"el_GR/)\n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Εταιρεία" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από " + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "Κωδικός" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Τελευταία ενημέρωση από" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Τελευταία ενημέρωση στις" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Τίτλος" + +#~ msgid "Invoice" +#~ msgstr "Τιμολόγιο" + +#~ msgid "Analytic Account" +#~ msgstr "Αναλυτικός Λογαριασμός" diff --git a/account_cost_center/i18n/en_GB.po b/account_cost_center/i18n/en_GB.po new file mode 100644 index 00000000000..116a7587253 --- /dev/null +++ b/account_cost_center/i18n/en_GB.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/oca/" +"teams/23907/en_GB/)\n" +"Language: en_GB\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Company" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Created by" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Created on" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Journal Items" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Journal Items" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Title" + +#~ msgid "Invoice" +#~ msgstr "Invoice" + +#~ msgid "Invoice Line" +#~ msgstr "Invoice Line" diff --git a/account_cost_center/i18n/es.po b/account_cost_center/i18n/es.po new file mode 100644 index 00000000000..840baac0150 --- /dev/null +++ b/account_cost_center/i18n/es.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-10 23:23+0000\n" +"PO-Revision-Date: 2023-09-03 13:38+0000\n" +"Last-Translator: Ivorra78 \n" +"Language-Team: Spanish (https://www.transifex.com/oca/teams/23907/es/)\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "Cuenta Centro de costes" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "Haga clic para añadir un nuevo centro de costes." + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Código" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Compañia" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "Centro de Costes" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "Centros de costes" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "Los centros de costes brindan una dimensión analítica adicional" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "Centro de costes predeterminado" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "Estadísticas de facturas" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "Entrada Diaria" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "Artículo Diario" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "Nombre/Código" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Título" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Invoice Line" +#~ msgstr "Linea de factura" + +#~ msgid "Analytic Account" +#~ msgstr "Cuenta analítica" diff --git a/account_cost_center/i18n/es_AR.po b/account_cost_center/i18n/es_AR.po new file mode 100644 index 00000000000..7e93b8d349f --- /dev/null +++ b/account_cost_center/i18n/es_AR.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2022-12-04 21:45+0000\n" +"Last-Translator: Ignacio Buioli \n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/" +"teams/23907/es_AR/)\n" +"Language: es_AR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "Centro de Costos Contable" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "Clic para agregar un nuevo centro de costos." + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Código" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "Centro de Costos" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "Centros de Costos" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "Los centros de costos brindan una dimensión analítica adicional" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "Centro de Costos Predeterminado" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Mostrar Nombre" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "Estadísticas de Facturas" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "Asiento Contable" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "Apunte Contable" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "Nombre/Código" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Denominación" diff --git a/account_cost_center/i18n/es_CL.po b/account_cost_center/i18n/es_CL.po new file mode 100644 index 00000000000..9154ba8b1c3 --- /dev/null +++ b/account_cost_center/i18n/es_CL.po @@ -0,0 +1,128 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/oca/teams/23907/" +"es_CL/)\n" +"Language: es_CL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Título" diff --git a/account_cost_center/i18n/es_CO.po b/account_cost_center/i18n/es_CO.po new file mode 100644 index 00000000000..51ae2c7afa4 --- /dev/null +++ b/account_cost_center/i18n/es_CO.po @@ -0,0 +1,128 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/oca/teams/23907/" +"es_CO/)\n" +"Language: es_CO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Título" diff --git a/account_cost_center/i18n/es_CR.po b/account_cost_center/i18n/es_CR.po new file mode 100644 index 00000000000..19234aa9851 --- /dev/null +++ b/account_cost_center/i18n/es_CR.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/oca/" +"teams/23907/es_CR/)\n" +"Language: es_CR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Elementos diario" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Elementos diario" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Título" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Invoice Line" +#~ msgstr "Línea de factura" diff --git a/account_cost_center/i18n/es_DO.po b/account_cost_center/i18n/es_DO.po new file mode 100644 index 00000000000..a99a2142e60 --- /dev/null +++ b/account_cost_center/i18n/es_DO.po @@ -0,0 +1,128 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/oca/" +"teams/23907/es_DO/)\n" +"Language: es_DO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Título" diff --git a/account_cost_center/i18n/es_EC.po b/account_cost_center/i18n/es_EC.po new file mode 100644 index 00000000000..53d811088e4 --- /dev/null +++ b/account_cost_center/i18n/es_EC.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/oca/teams/23907/" +"es_EC/)\n" +"Language: es_EC\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Compañia" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Asientos Contables" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Asientos Contables" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Título" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Invoice Line" +#~ msgstr "Detalle de Factura" diff --git a/account_cost_center/i18n/es_ES.po b/account_cost_center/i18n/es_ES.po new file mode 100644 index 00000000000..3b7efa4120e --- /dev/null +++ b/account_cost_center/i18n/es_ES.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Fernando Lara , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-10 23:22+0000\n" +"PO-Revision-Date: 2017-02-10 23:22+0000\n" +"Last-Translator: Fernando Lara , 2017\n" +"Language-Team: Spanish (Spain) (https://www.transifex.com/oca/teams/23907/" +"es_ES/)\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nombre para mostrar" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" diff --git a/account_cost_center/i18n/es_MX.po b/account_cost_center/i18n/es_MX.po new file mode 100644 index 00000000000..3e8fad0e6e3 --- /dev/null +++ b/account_cost_center/i18n/es_MX.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Juan González , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: Juan González , 2017\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/oca/teams/23907/" +"es_MX/)\n" +"Language: es_MX\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nombre desplegado" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Elementos diario" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Elementos diario" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Ultima modificacion realizada" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizacion por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Ultima actualización realizada" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Título" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Invoice Line" +#~ msgstr "Línea de factura" + +#~ msgid "Analytic Account" +#~ msgstr "Cuenta analítica" diff --git a/account_cost_center/i18n/es_PE.po b/account_cost_center/i18n/es_PE.po new file mode 100644 index 00000000000..7e89ac044b7 --- /dev/null +++ b/account_cost_center/i18n/es_PE.po @@ -0,0 +1,131 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-02-24 00:19+0000\n" +"PO-Revision-Date: 2018-02-24 00:19+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/oca/teams/23907/" +"es_PE/)\n" +"Language: es_PE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factura" diff --git a/account_cost_center/i18n/es_PY.po b/account_cost_center/i18n/es_PY.po new file mode 100644 index 00000000000..321fc15c260 --- /dev/null +++ b/account_cost_center/i18n/es_PY.po @@ -0,0 +1,128 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/oca/teams/23907/" +"es_PY/)\n" +"Language: es_PY\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Título" diff --git a/account_cost_center/i18n/es_VE.po b/account_cost_center/i18n/es_VE.po new file mode 100644 index 00000000000..92933826532 --- /dev/null +++ b/account_cost_center/i18n/es_VE.po @@ -0,0 +1,128 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/oca/" +"teams/23907/es_VE/)\n" +"Language: es_VE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Título" diff --git a/account_cost_center/i18n/et.po b/account_cost_center/i18n/et.po new file mode 100644 index 00000000000..7cd617c2edf --- /dev/null +++ b/account_cost_center/i18n/et.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Estonian (https://www.transifex.com/oca/teams/23907/et/)\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Ettevõte" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Näidatav nimi" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Tiitel" + +#~ msgid "Invoice" +#~ msgstr "Arve" + +#~ msgid "Invoice Line" +#~ msgstr "Arve rida" diff --git a/account_cost_center/i18n/eu.po b/account_cost_center/i18n/eu.po new file mode 100644 index 00000000000..b80e234e9e4 --- /dev/null +++ b/account_cost_center/i18n/eu.po @@ -0,0 +1,128 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Esther Martín Menéndez , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-02-17 23:22+0000\n" +"PO-Revision-Date: 2017-02-17 23:22+0000\n" +"Last-Translator: Esther Martín Menéndez , 2017\n" +"Language-Team: Basque (https://www.transifex.com/oca/teams/23907/eu/)\n" +"Language: eu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Kodea" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Enpresa" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Created on" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Titulua" diff --git a/account_cost_center/i18n/fa.po b/account_cost_center/i18n/fa.po new file mode 100644 index 00000000000..539561d4e42 --- /dev/null +++ b/account_cost_center/i18n/fa.po @@ -0,0 +1,127 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Persian (https://www.transifex.com/oca/teams/23907/fa/)\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "ایجاد شده توسط" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "شناسه" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "تاریخ آخرین به‌روزرسانی" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "عنوان" diff --git a/account_cost_center/i18n/fi.po b/account_cost_center/i18n/fi.po new file mode 100644 index 00000000000..f353e0d09cf --- /dev/null +++ b/account_cost_center/i18n/fi.po @@ -0,0 +1,134 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Jarmo Kortetjärvi , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: Jarmo Kortetjärvi , 2017\n" +"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" +"Language: fi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Koodi" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Yritys" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nimi" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivittänyt" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Otsikko" + +#~ msgid "Invoice" +#~ msgstr "Lasku" + +#~ msgid "Analytic Account" +#~ msgstr "Analyyttinen tili" diff --git a/account_cost_center/i18n/fr.po b/account_cost_center/i18n/fr.po new file mode 100644 index 00000000000..3b011a0a506 --- /dev/null +++ b/account_cost_center/i18n/fr.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Christophe CHAUVET , 2017 +# Zwygart , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: Zwygart , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Code" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Société" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nom à afficher" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Écritures du journal" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Écritures du journal" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Intitulé" + +#~ msgid "Invoice" +#~ msgstr "Facture" + +#~ msgid "Invoice Line" +#~ msgstr "Ligne de facuration" + +#~ msgid "Analytic Account" +#~ msgstr "Compte analytique" diff --git a/account_cost_center/i18n/fr_CA.po b/account_cost_center/i18n/fr_CA.po new file mode 100644 index 00000000000..805ecb8867f --- /dev/null +++ b/account_cost_center/i18n/fr_CA.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Adriana Ierfino , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: Adriana Ierfino , " +"2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/oca/teams/23907/" +"fr_CA/)\n" +"Language: fr_CA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Code" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Afficher le nom" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "Identifiant" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Facture" diff --git a/account_cost_center/i18n/fr_CH.po b/account_cost_center/i18n/fr_CH.po new file mode 100644 index 00000000000..7dbe3996832 --- /dev/null +++ b/account_cost_center/i18n/fr_CH.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# leemannd , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: leemannd , 2017\n" +"Language-Team: French (Switzerland) (https://www.transifex.com/oca/" +"teams/23907/fr_CH/)\n" +"Language: fr_CH\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Ecritures Comptables" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Ecritures Comptables" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Modifié par" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Modifié le" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Facture" + +#~ msgid "Invoice Line" +#~ msgstr "Ligne de facture" diff --git a/account_cost_center/i18n/gl.po b/account_cost_center/i18n/gl.po new file mode 100644 index 00000000000..309e2ccc806 --- /dev/null +++ b/account_cost_center/i18n/gl.po @@ -0,0 +1,134 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# César Castro Cruz , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: César Castro Cruz , 2017\n" +"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Código" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Última modificación" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "ültima actualización por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Título" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Analytic Account" +#~ msgstr "Conta analítica" diff --git a/account_cost_center/i18n/gl_ES.po b/account_cost_center/i18n/gl_ES.po new file mode 100644 index 00000000000..974ecedfa45 --- /dev/null +++ b/account_cost_center/i18n/gl_ES.po @@ -0,0 +1,128 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Galician (Spain) (https://www.transifex.com/oca/teams/23907/" +"gl_ES/)\n" +"Language: gl_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" diff --git a/account_cost_center/i18n/gu.po b/account_cost_center/i18n/gu.po new file mode 100644 index 00000000000..b976cfa78ec --- /dev/null +++ b/account_cost_center/i18n/gu.po @@ -0,0 +1,127 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Gujarati (https://www.transifex.com/oca/teams/23907/gu/)\n" +"Language: gu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "કંપની" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ઓળખ" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" diff --git a/account_cost_center/i18n/he.po b/account_cost_center/i18n/he.po new file mode 100644 index 00000000000..bdcb3db6bac --- /dev/null +++ b/account_cost_center/i18n/he.po @@ -0,0 +1,127 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hebrew (https://www.transifex.com/oca/teams/23907/he/)\n" +"Language: he\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "נוצר על ידי" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "השם המוצג" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "מזהה" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "תאריך שינוי אחרון" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה על ידי" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "עודכן לאחרונה על" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "כותרת" diff --git a/account_cost_center/i18n/hr.po b/account_cost_center/i18n/hr.po new file mode 100644 index 00000000000..1c409e3cf73 --- /dev/null +++ b/account_cost_center/i18n/hr.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: Bole , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"Language: hr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Šifra" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Poduzeće" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Naziv " + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Stavke dnevnika" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Stavke dnevnika" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Zadnje ažuriranje" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Titula" + +#~ msgid "Invoice" +#~ msgstr "Račun" + +#~ msgid "Invoice Line" +#~ msgstr "Stavka računa" + +#~ msgid "Analytic Account" +#~ msgstr "Analitički konto" diff --git a/account_cost_center/i18n/hr_HR.po b/account_cost_center/i18n/hr_HR.po new file mode 100644 index 00000000000..fc2bb57b2d9 --- /dev/null +++ b/account_cost_center/i18n/hr_HR.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-03 00:19+0000\n" +"PO-Revision-Date: 2018-03-03 00:19+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Croatian (Croatia) (https://www.transifex.com/oca/teams/23907/" +"hr_HR/)\n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Šifra" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Poduzeće" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Zadnje modificirano" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Račun" + +#~ msgid "Invoice Line" +#~ msgstr "Stavka računa" + +#~ msgid "Analytic Account" +#~ msgstr "Konto analitike" diff --git a/account_cost_center/i18n/hu.po b/account_cost_center/i18n/hu.po new file mode 100644 index 00000000000..d329eb6e627 --- /dev/null +++ b/account_cost_center/i18n/hu.po @@ -0,0 +1,138 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Hungarian (https://www.transifex.com/oca/teams/23907/hu/)\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Vállalat" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Készítette" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Létrehozás dátuma" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Könyvelési tételsorok" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Könyvelési tételsorok" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Utolsó frissítés dátuma" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Utoljára frissítve, által" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Utoljára frissítve " + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Megsz." + +#~ msgid "Invoice" +#~ msgstr "Számla" + +#~ msgid "Invoice Line" +#~ msgstr "Számlasor" + +#~ msgid "Analytic Account" +#~ msgstr "Analitikus gyűjtőkód könyvelés" diff --git a/account_cost_center/i18n/id.po b/account_cost_center/i18n/id.po new file mode 100644 index 00000000000..d8bc4f1c540 --- /dev/null +++ b/account_cost_center/i18n/id.po @@ -0,0 +1,133 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Wahyu Setiawan , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-10-27 22:29+0000\n" +"PO-Revision-Date: 2017-10-27 22:29+0000\n" +"Last-Translator: Wahyu Setiawan , 2017\n" +"Language-Team: Indonesian (https://www.transifex.com/oca/teams/23907/id/)\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Kode" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Perusahaan" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Journal Items" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Journal Items" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Terakhir Dimodifikasi pada" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Diperbaharui oleh" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Diperbaharui pada" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Judul" + +#~ msgid "Invoice" +#~ msgstr "Faktur" diff --git a/account_cost_center/i18n/it.po b/account_cost_center/i18n/it.po new file mode 100644 index 00000000000..8c61a593fcb --- /dev/null +++ b/account_cost_center/i18n/it.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Paolo Valier , 2017 +# Nicola Malcontenti , 2017 +# Andrea Cometa , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2023-04-17 16:34+0000\n" +"Last-Translator: mymage \n" +"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.14.1\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Codice" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Azienda" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creato il" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Voci sezionale" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Voci sezionale" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Titolo" + +#~ msgid "Invoice" +#~ msgstr "Fattura" + +#~ msgid "Invoice Line" +#~ msgstr "Riga fattura" + +#~ msgid "Analytic Account" +#~ msgstr "Conto Analitico" diff --git a/account_cost_center/i18n/ja.po b/account_cost_center/i18n/ja.po new file mode 100644 index 00000000000..31c0be4326c --- /dev/null +++ b/account_cost_center/i18n/ja.po @@ -0,0 +1,135 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Japanese (https://www.transifex.com/oca/teams/23907/ja/)\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "会社" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "作成日" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "仕訳項目" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "仕訳項目" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "敬称" + +#~ msgid "Invoice" +#~ msgstr "請求書" + +#~ msgid "Invoice Line" +#~ msgstr "請求行" diff --git a/account_cost_center/i18n/ko.po b/account_cost_center/i18n/ko.po new file mode 100644 index 00000000000..6b98a2b190a --- /dev/null +++ b/account_cost_center/i18n/ko.po @@ -0,0 +1,127 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Korean (https://www.transifex.com/oca/teams/23907/ko/)\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "작성일" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "표시 이름" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "제목" diff --git a/account_cost_center/i18n/lt.po b/account_cost_center/i18n/lt.po new file mode 100644 index 00000000000..e54888d6e33 --- /dev/null +++ b/account_cost_center/i18n/lt.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (https://www.transifex.com/oca/teams/23907/lt/)\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Įmonė" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Vaizduojamas pavadinimas" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "DK įrašai" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "DK įrašai" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Kreipinys" + +#~ msgid "Invoice" +#~ msgstr "Sąskaita faktūra" + +#~ msgid "Invoice Line" +#~ msgstr "Sąskaitos faktūros eilutė" diff --git a/account_cost_center/i18n/lt_LT.po b/account_cost_center/i18n/lt_LT.po new file mode 100644 index 00000000000..45602ac66af --- /dev/null +++ b/account_cost_center/i18n/lt_LT.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Lithuanian (Lithuania) (https://www.transifex.com/oca/" +"teams/23907/lt_LT/)\n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n" +"%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" diff --git a/account_cost_center/i18n/lv.po b/account_cost_center/i18n/lv.po new file mode 100644 index 00000000000..8096529ea6a --- /dev/null +++ b/account_cost_center/i18n/lv.po @@ -0,0 +1,128 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Latvian (https://www.transifex.com/oca/teams/23907/lv/)\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Uzņēmums" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Pēdējo reizi atjaunoja" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Pēdējās izmaiņas" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Nosaukums" diff --git a/account_cost_center/i18n/mk.po b/account_cost_center/i18n/mk.po new file mode 100644 index 00000000000..90cd3f16461 --- /dev/null +++ b/account_cost_center/i18n/mk.po @@ -0,0 +1,135 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/oca/teams/23907/mk/)\n" +"Language: mk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Компанија" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Ставки на дневник" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Ставки на дневник" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Титула" + +#~ msgid "Invoice" +#~ msgstr "Фактура" + +#~ msgid "Invoice Line" +#~ msgstr "Ставка од фактура" diff --git a/account_cost_center/i18n/mn.po b/account_cost_center/i18n/mn.po new file mode 100644 index 00000000000..dd0a114f21a --- /dev/null +++ b/account_cost_center/i18n/mn.po @@ -0,0 +1,135 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Mongolian (https://www.transifex.com/oca/teams/23907/mn/)\n" +"Language: mn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Компани" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Үүсгэгч" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Үүсгэсэн" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Дэлгэцийн Нэр" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Журналын бичилт" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Журналын бичилт" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Сүүлийн засвар хийсэн" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Сүүлийн засвар хийсэн огноо" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Гарчиг" + +#~ msgid "Invoice" +#~ msgstr "Нэхэмжлэл" + +#~ msgid "Invoice Line" +#~ msgstr "Нэхэмжлэлийн мөр" diff --git a/account_cost_center/i18n/nb.po b/account_cost_center/i18n/nb.po new file mode 100644 index 00000000000..a1c089b8c55 --- /dev/null +++ b/account_cost_center/i18n/nb.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/oca/teams/23907/" +"nb/)\n" +"Language: nb\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Firma" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Opprettet den" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Visnings navn" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Journal Elementer" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Journal Elementer" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Sist oppdatert " + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Tittel" + +#~ msgid "Invoice" +#~ msgstr "Faktura" + +#~ msgid "Invoice Line" +#~ msgstr "Fakturalinje" diff --git a/account_cost_center/i18n/nb_NO.po b/account_cost_center/i18n/nb_NO.po new file mode 100644 index 00000000000..55982455bdc --- /dev/null +++ b/account_cost_center/i18n/nb_NO.po @@ -0,0 +1,132 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Imre Kristoffer Eilertsen , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: Imre Kristoffer Eilertsen , 2017\n" +"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/" +"teams/23907/nb_NO/)\n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Kode" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Firma" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Laget av" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Laget den" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Sist endret den" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert den" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Innmelding" diff --git a/account_cost_center/i18n/nl.po b/account_cost_center/i18n/nl.po new file mode 100644 index 00000000000..d393039ebd6 --- /dev/null +++ b/account_cost_center/i18n/nl.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Erwin van der Ploeg , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: Erwin van der Ploeg , 2017\n" +"Language-Team: Dutch (https://www.transifex.com/oca/teams/23907/nl/)\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Code" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Te tonen naam" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Boekingen" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Boekingen" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Laatst bijgewerkt op" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Titel" + +#~ msgid "Invoice" +#~ msgstr "Factuur" + +#~ msgid "Invoice Line" +#~ msgstr "Factuurregel" + +#~ msgid "Analytic Account" +#~ msgstr "Kostenplaats" diff --git a/account_cost_center/i18n/nl_BE.po b/account_cost_center/i18n/nl_BE.po new file mode 100644 index 00000000000..903273335ef --- /dev/null +++ b/account_cost_center/i18n/nl_BE.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/oca/teams/23907/" +"nl_BE/)\n" +"Language: nl_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Bedrijf" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Gemaakt door" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Gemaakt op" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Boekingslijnen" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Boekingslijnen" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Laatst Aangepast op" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Titel" + +#~ msgid "Invoice" +#~ msgstr "Factuur" + +#~ msgid "Invoice Line" +#~ msgstr "Factuurlijn" diff --git a/account_cost_center/i18n/nl_NL.po b/account_cost_center/i18n/nl_NL.po new file mode 100644 index 00000000000..2ee97a682c1 --- /dev/null +++ b/account_cost_center/i18n/nl_NL.po @@ -0,0 +1,134 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# Peter Hageman , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-08-25 22:30+0000\n" +"PO-Revision-Date: 2017-08-25 22:30+0000\n" +"Last-Translator: Peter Hageman , 2017\n" +"Language-Team: Dutch (Netherlands) (https://www.transifex.com/oca/" +"teams/23907/nl_NL/)\n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Factuur" + +#~ msgid "Invoice Line" +#~ msgstr "Factuurregel" diff --git a/account_cost_center/i18n/pl.po b/account_cost_center/i18n/pl.po new file mode 100644 index 00000000000..f98e9c12938 --- /dev/null +++ b/account_cost_center/i18n/pl.po @@ -0,0 +1,131 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Polish (https://www.transifex.com/oca/teams/23907/pl/)\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Kod" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Firma" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Utworzone przez" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Wyświetlana nazwa " + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Ostatnio modyfikowano" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Ostatnio modyfikowane przez" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Ostatnia zmiana" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Tytuł" + +#~ msgid "Invoice" +#~ msgstr "Faktura" diff --git a/account_cost_center/i18n/pt.po b/account_cost_center/i18n/pt.po new file mode 100644 index 00000000000..02b878a5d9c --- /dev/null +++ b/account_cost_center/i18n/pt.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Pedro Castro Silva , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: Pedro Castro Silva , 2017\n" +"Language-Team: Portuguese (https://www.transifex.com/oca/teams/23907/pt/)\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Código" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Empresa" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Items Diários" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Items Diários" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Modificado a última vez por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Última alteração por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Título" + +#~ msgid "Invoice" +#~ msgstr "Fatura" + +#~ msgid "Invoice Line" +#~ msgstr "Linha de fatura" + +#~ msgid "Analytic Account" +#~ msgstr "Conta Analítica" diff --git a/account_cost_center/i18n/pt_BR.po b/account_cost_center/i18n/pt_BR.po new file mode 100644 index 00000000000..58d7b85a489 --- /dev/null +++ b/account_cost_center/i18n/pt_BR.po @@ -0,0 +1,142 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Magno , 2017 +# danimaribeiro , 2017 +# Paulo Ricardo , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2024-05-17 20:36+0000\n" +"Last-Translator: Rodrigo Macedo \n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/oca/teams/" +"23907/pt_BR/)\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.17\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "Centro de Custo" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "Clique para adicionar um novo centro de custo." + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Código" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Empresa" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "Centro de Custo" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "Centros de Custo" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "Os centros de custo fornecem uma dimensão analítica extra" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "Centro de Custo Padrão" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nome para Mostrar" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "Identificação" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "Estatísticas de Faturas" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "Lançamento de Diário" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "Item de Diário" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Última atualização em" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Última atualização feita por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Última atualização feita em" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "Nome/Código" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Título" + +#~ msgid "Invoice" +#~ msgstr "Fatura" + +#~ msgid "Invoice Line" +#~ msgstr "Linha da Fatura" + +#~ msgid "Analytic Account" +#~ msgstr "Conta analítica" diff --git a/account_cost_center/i18n/pt_PT.po b/account_cost_center/i18n/pt_PT.po new file mode 100644 index 00000000000..05706f9b36a --- /dev/null +++ b/account_cost_center/i18n/pt_PT.po @@ -0,0 +1,141 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Pedro Castro Silva , 2017 +# Daniel Reis , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: Daniel Reis , 2017\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/" +"teams/23907/pt_PT/)\n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Código" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Empresa" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nome a Apresentar" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Item do Diário" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Item do Diário" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Última Modificação Em" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Atualizado pela última vez por" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Atualizado pela última vez em" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Título" + +#~ msgid "Invoice" +#~ msgstr "Fatura" + +#~ msgid "Invoice Line" +#~ msgstr "Linha de Fatura" + +#~ msgid "Analytic Account" +#~ msgstr "Conta Analítica" diff --git a/account_cost_center/i18n/ro.po b/account_cost_center/i18n/ro.po new file mode 100644 index 00000000000..b307fb36847 --- /dev/null +++ b/account_cost_center/i18n/ro.po @@ -0,0 +1,139 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Companie" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Creat la" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Nume Afişat" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Elementele Jurnalului" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Elementele Jurnalului" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Ultima actualizare în" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare la" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Titlu" + +#~ msgid "Invoice" +#~ msgstr "Factura" + +#~ msgid "Invoice Line" +#~ msgstr "Linie factura" + +#~ msgid "Analytic Account" +#~ msgstr "Cont analitic" diff --git a/account_cost_center/i18n/ro_RO.po b/account_cost_center/i18n/ro_RO.po new file mode 100644 index 00000000000..0b3640d5c13 --- /dev/null +++ b/account_cost_center/i18n/ro_RO.po @@ -0,0 +1,131 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# Iulia Comaniciu , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-11-28 23:24+0000\n" +"PO-Revision-Date: 2017-11-28 23:24+0000\n" +"Last-Translator: Iulia Comaniciu , 2017\n" +"Language-Team: Romanian (Romania) (https://www.transifex.com/oca/teams/23907/" +"ro_RO/)\n" +"Language: ro_RO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" +"2:1));\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Articole Jurnal" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Articole Jurnal" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" diff --git a/account_cost_center/i18n/ru.po b/account_cost_center/i18n/ru.po new file mode 100644 index 00000000000..9f7b92992ee --- /dev/null +++ b/account_cost_center/i18n/ru.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Russian (https://www.transifex.com/oca/teams/23907/ru/)\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n" +"%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Код" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Компания" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Создано" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Создан" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Элементы журнала" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Элементы журнала" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновлено" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Последний раз обновлено" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Заголовок" + +#~ msgid "Invoice" +#~ msgstr "Счет" + +#~ msgid "Invoice Line" +#~ msgstr "Позиция счета" diff --git a/account_cost_center/i18n/sk.po b/account_cost_center/i18n/sk.po new file mode 100644 index 00000000000..5eb933bdd32 --- /dev/null +++ b/account_cost_center/i18n/sk.po @@ -0,0 +1,128 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# ivbo , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: ivbo , 2017\n" +"Language-Team: Slovak (https://www.transifex.com/oca/teams/23907/sk/)\n" +"Language: sk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Spoločnosť" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Zobraziť meno" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Posledná modifikácia" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Titul" diff --git a/account_cost_center/i18n/sk_SK.po b/account_cost_center/i18n/sk_SK.po new file mode 100644 index 00000000000..77ac39169fd --- /dev/null +++ b/account_cost_center/i18n/sk_SK.po @@ -0,0 +1,135 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# ivbo , 2017 +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Slovak (Slovakia) (https://www.transifex.com/oca/teams/23907/" +"sk_SK/)\n" +"Language: sk_SK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Faktúra" + +#~ msgid "Analytic Account" +#~ msgstr "Analytický účet" diff --git a/account_cost_center/i18n/sl.po b/account_cost_center/i18n/sl.po new file mode 100644 index 00000000000..0b2c3dd3af5 --- /dev/null +++ b/account_cost_center/i18n/sl.po @@ -0,0 +1,161 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Matjaž Mozetič , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2020-08-11 13:59+0000\n" +"Last-Translator: Matjaz Mozetic \n" +"Language-Team: Slovenian (https://www.transifex.com/oca/teams/23907/sl/)\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3;\n" +"X-Generator: Weblate 3.10\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "Konto stroškovnega centra" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "Dodaj nov stroškovni center." + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Koda" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Družba" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "Stroškovni center" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "Stroškovni centri" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "Stroškovni centri omogočijo dodatno dimenzijo v analitiki" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "Privzeti stroškovni center" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Prikazni naziv" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "Statistika računov" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Dnevniška postavka" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "Dnevniška postavka" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Zadnjič posodobil" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "Naziv/koda" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Naslov" + +#~ msgid "Invoice" +#~ msgstr "Račun" + +#~ msgid "Invoice Line" +#~ msgstr "Postavka računa" + +#~ msgid "" +#~ "

\n" +#~ " Click to add a new event.\n" +#~ "

\n" +#~ "

\n" +#~ " Cost centers provide an extra analytic dimension\n" +#~ "

\n" +#~ " " +#~ msgstr "" +#~ "

\n" +#~ " Prikaži nov dogodek.\n" +#~ "

\n" +#~ "

\n" +#~ " Stroškovni centri omogočijo dodatno analitično " +#~ "dimenzijo\n" +#~ "

\n" +#~ " " + +#~ msgid "Analytic Account" +#~ msgstr "Analitični konto" + +#~ msgid "cost_center_id" +#~ msgstr "cost_center_id" diff --git a/account_cost_center/i18n/sr.po b/account_cost_center/i18n/sr.po new file mode 100644 index 00000000000..da24fa39305 --- /dev/null +++ b/account_cost_center/i18n/sr.po @@ -0,0 +1,128 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (https://www.transifex.com/oca/teams/23907/sr/)\n" +"Language: sr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Naslov" diff --git a/account_cost_center/i18n/sr@latin.po b/account_cost_center/i18n/sr@latin.po new file mode 100644 index 00000000000..9d426c32259 --- /dev/null +++ b/account_cost_center/i18n/sr@latin.po @@ -0,0 +1,129 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/oca/teams/23907/" +"sr@latin/)\n" +"Language: sr@latin\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Ime za prikaz" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Zadnja izmjena" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Zadnja izmjena" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Zadnja izmjena" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Naslov" diff --git a/account_cost_center/i18n/sv.po b/account_cost_center/i18n/sv.po new file mode 100644 index 00000000000..5d9deab3f03 --- /dev/null +++ b/account_cost_center/i18n/sv.po @@ -0,0 +1,135 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Swedish (https://www.transifex.com/oca/teams/23907/sv/)\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Bolag" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Visa namn" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Transaktioner" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Transaktioner" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Titel" + +#~ msgid "Invoice" +#~ msgstr "Faktura" + +#~ msgid "Invoice Line" +#~ msgstr "Fakturarad" diff --git a/account_cost_center/i18n/th.po b/account_cost_center/i18n/th.po new file mode 100644 index 00000000000..b4844d317e0 --- /dev/null +++ b/account_cost_center/i18n/th.po @@ -0,0 +1,130 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Thai (https://www.transifex.com/oca/teams/23907/th/)\n" +"Language: th\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "บริษัท" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "รหัส" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "คำนำหน้าชื่อ" + +#~ msgid "Invoice" +#~ msgstr "ใบแจ้งหนี้" diff --git a/account_cost_center/i18n/tr.po b/account_cost_center/i18n/tr.po new file mode 100644 index 00000000000..165fc3063ad --- /dev/null +++ b/account_cost_center/i18n/tr.po @@ -0,0 +1,137 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# Ahmet Altinisik , 2017 +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: Ozge Altinisik , 2017\n" +"Language-Team: Turkish (https://www.transifex.com/oca/teams/23907/tr/)\n" +"Language: tr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Kod" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Şirket" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Oluşturuldu" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Görünen İsim" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "Günlük Maddeleri" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "Günlük Maddeleri" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Son değişiklik" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Son güncelleyen" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Son güncelleme" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Başlık" + +#~ msgid "Invoice" +#~ msgstr "Fatura" + +#~ msgid "Invoice Line" +#~ msgstr "Fatura kalemi" diff --git a/account_cost_center/i18n/tr_TR.po b/account_cost_center/i18n/tr_TR.po new file mode 100644 index 00000000000..5470713bcfc --- /dev/null +++ b/account_cost_center/i18n/tr_TR.po @@ -0,0 +1,134 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# Ozge Altinisik , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: Ozge Altinisik , 2017\n" +"Language-Team: Turkish (Turkey) (https://www.transifex.com/oca/teams/23907/" +"tr_TR/)\n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "Firma" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Oluşturulma tarihi" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Görünen ad" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "Kimlik no" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "En son güncelleme tarihi" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "En son güncelleyen " + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "En son güncelleme tarihi" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" + +#~ msgid "Invoice" +#~ msgstr "Fatura" + +#~ msgid "Invoice Line" +#~ msgstr "Fatura hizası" diff --git a/account_cost_center/i18n/uk.po b/account_cost_center/i18n/uk.po new file mode 100644 index 00000000000..e4ea9aa8f07 --- /dev/null +++ b/account_cost_center/i18n/uk.po @@ -0,0 +1,128 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Ukrainian (https://www.transifex.com/oca/teams/23907/uk/)\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Створив" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Дата створення" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Назва для відображення" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Остання модифікація" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Заголовок" diff --git a/account_cost_center/i18n/vi.po b/account_cost_center/i18n/vi.po new file mode 100644 index 00000000000..2443439fdcc --- /dev/null +++ b/account_cost_center/i18n/vi.po @@ -0,0 +1,127 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (https://www.transifex.com/oca/teams/23907/vi/)\n" +"Language: vi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Được tạo bởi" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Được tạo vào" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "Tiêu đề" diff --git a/account_cost_center/i18n/vi_VN.po b/account_cost_center/i18n/vi_VN.po new file mode 100644 index 00000000000..681864e925c --- /dev/null +++ b/account_cost_center/i18n/vi_VN.po @@ -0,0 +1,128 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Vietnamese (Viet Nam) (https://www.transifex.com/oca/" +"teams/23907/vi_VN/)\n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "Mã" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "Tạo vào" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +msgid "Journal Item" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "" diff --git a/account_cost_center/i18n/zh_CN.po b/account_cost_center/i18n/zh_CN.po new file mode 100644 index 00000000000..8e6494c694f --- /dev/null +++ b/account_cost_center/i18n/zh_CN.po @@ -0,0 +1,140 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +# ITGeeker , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-10 23:23+0000\n" +"PO-Revision-Date: 2017-03-10 23:23+0000\n" +"Last-Translator: ITGeeker , 2017\n" +"Language-Team: Chinese (China) (https://www.transifex.com/oca/teams/23907/" +"zh_CN/)\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "代码" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "公司" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "创建者" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "ID" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "日记帐项目" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "日记帐项目" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "最后修改时间" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "最后更新者" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "上次更新日期" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "称谓" + +#~ msgid "Invoice" +#~ msgstr "发票" + +#~ msgid "Invoice Line" +#~ msgstr "发票明细" + +#~ msgid "Analytic Account" +#~ msgstr "核算科目" diff --git a/account_cost_center/i18n/zh_TW.po b/account_cost_center/i18n/zh_TW.po new file mode 100644 index 00000000000..133ff50ccf2 --- /dev/null +++ b/account_cost_center/i18n/zh_TW.po @@ -0,0 +1,136 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_cost_center +# +# Translators: +# OCA Transbot , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 8.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-01-12 03:43+0000\n" +"PO-Revision-Date: 2017-01-12 03:43+0000\n" +"Last-Translator: OCA Transbot , 2017\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/oca/teams/23907/" +"zh_TW/)\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_cost_center +msgid "Account Cost Center" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Click to add a new cost center." +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__code +msgid "Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__company_id +msgid "Company" +msgstr "公司" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_invoice_report__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_move_line__cost_center_id +#: model:ir.model.fields,field_description:account_cost_center.field_account_payment__cost_center_id +#: model_terms:ir.ui.view,arch_db:account_cost_center.view_account_invoice_report_search +msgid "Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.actions.act_window,name:account_cost_center.account_cost_center_action +#: model:ir.ui.menu,name:account_cost_center.account_cost_center_menu +msgid "Cost Centers" +msgstr "" + +#. module: account_cost_center +#: model_terms:ir.actions.act_window,help:account_cost_center.account_cost_center_action +msgid "Cost centers provide an extra analytic dimension" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_uid +msgid "Created by" +msgstr "建立者" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__create_date +msgid "Created on" +msgstr "建立於" + +#. module: account_cost_center +#: model:ir.model.fields,help:account_cost_center.field_account_bank_statement_line__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_move__cost_center_id +#: model:ir.model.fields,help:account_cost_center.field_account_payment__cost_center_id +msgid "Default Cost Center" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__id +msgid "ID" +msgstr "編號" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_invoice_report +msgid "Invoices Statistics" +msgstr "" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move +#, fuzzy +msgid "Journal Entry" +msgstr "帳簿項目" + +#. module: account_cost_center +#: model:ir.model,name:account_cost_center.model_account_move_line +#, fuzzy +msgid "Journal Item" +msgstr "帳簿項目" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center____last_update +msgid "Last Modified on" +msgstr "最後修改:" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_uid +msgid "Last Updated by" +msgstr "最後更新:" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: account_cost_center +#: model_terms:ir.ui.view,arch_db:account_cost_center.account_cost_center_view_search +msgid "Name/Code" +msgstr "" + +#. module: account_cost_center +#: model:ir.model.fields,field_description:account_cost_center.field_account_cost_center__name +msgid "Title" +msgstr "稱謂" + +#~ msgid "Invoice" +#~ msgstr "發票" + +#~ msgid "Invoice Line" +#~ msgstr "發票明細" diff --git a/account_cost_center/models/__init__.py b/account_cost_center/models/__init__.py new file mode 100644 index 00000000000..d473b1c8fb0 --- /dev/null +++ b/account_cost_center/models/__init__.py @@ -0,0 +1,6 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import account_move +from . import account_move_line +from . import account_invoice_report +from . import account_cost_center diff --git a/account_cost_center/models/account_cost_center.py b/account_cost_center/models/account_cost_center.py new file mode 100644 index 00000000000..32c27b55bb7 --- /dev/null +++ b/account_cost_center/models/account_cost_center.py @@ -0,0 +1,13 @@ +# Copyright 2015-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class AccountCostCenter(models.Model): + _name = "account.cost.center" + _description = "Account Cost Center" + + name = fields.Char(string="Title", required=True) + code = fields.Char(required=True) + company_id = fields.Many2one("res.company", default=lambda self: self.env.company) diff --git a/account_cost_center/models/account_invoice_report.py b/account_cost_center/models/account_invoice_report.py new file mode 100644 index 00000000000..1dd9fd246d9 --- /dev/null +++ b/account_cost_center/models/account_invoice_report.py @@ -0,0 +1,16 @@ +# Copyright 2015-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class AccountInvoiceReport(models.Model): + _inherit = "account.invoice.report" + + cost_center_id = fields.Many2one("account.cost.center", readonly=True) + + def _select(self): + return ( + super(AccountInvoiceReport, self)._select() + + ", line.cost_center_id as cost_center_id" + ) diff --git a/account_cost_center/models/account_move.py b/account_cost_center/models/account_move.py new file mode 100644 index 00000000000..cc792c30e0f --- /dev/null +++ b/account_cost_center/models/account_move.py @@ -0,0 +1,15 @@ +# Copyright 2015-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class AccountMove(models.Model): + _inherit = "account.move" + + cost_center_id = fields.Many2one( + "account.cost.center", + readonly=True, + states={"draft": [("readonly", False)]}, + help="Default Cost Center", + ) diff --git a/account_cost_center/models/account_move_line.py b/account_cost_center/models/account_move_line.py new file mode 100644 index 00000000000..373f94a4749 --- /dev/null +++ b/account_cost_center/models/account_move_line.py @@ -0,0 +1,10 @@ +# Copyright 2015-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class AccountMoveLine(models.Model): + _inherit = "account.move.line" + + cost_center_id = fields.Many2one("account.cost.center", index=True) diff --git a/account_cost_center/readme/CONTRIBUTORS.rst b/account_cost_center/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000000..c1c0642d911 --- /dev/null +++ b/account_cost_center/readme/CONTRIBUTORS.rst @@ -0,0 +1,5 @@ +* Kevin Graveman +* Richard Dijkstra +* Andrea Stirpe +* Antonio Esposito +* `Heliconia Solutions Pvt. Ltd. `_ diff --git a/account_cost_center/readme/DESCRIPTION.rst b/account_cost_center/readme/DESCRIPTION.rst new file mode 100644 index 00000000000..d5a4029c845 --- /dev/null +++ b/account_cost_center/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +This module allows the user to link every invoice line to a cost center +providing an extra dimension for the analysis. diff --git a/account_cost_center/readme/USAGE.rst b/account_cost_center/readme/USAGE.rst new file mode 100644 index 00000000000..76b48f77289 --- /dev/null +++ b/account_cost_center/readme/USAGE.rst @@ -0,0 +1,28 @@ +This module is relevant when you are creating sales invoices and using analytic accounting. + +Start using cost centers by defining the cost centers. Be aware that Analytic Accounting +must be activated on the user for the following menu option. +Use the menu in the accounting module: + + **Configuration > Analytics accounting > Cost centers** + +.. figure:: static/description/account_costcenter_1.png + :alt: Cost centers can be configured + :align: center + +Once defined you can add a cost center to an invoice line. A default cost center for +the current invoice can be set in the other info tab. + +.. figure:: static/description/account_costcenter_2.png + :alt: Cost centers can be selected on invoice lines + :align: center + +This module adds the cost center concept to the reporting. + + **Accounting > Invoice Analysis** + +Here you can select or unselect the cost center within your analysis. + +.. figure:: static/description/account_costcenter_3.png + :alt: Cost centers can be selected on invoice lines + :align: center diff --git a/account_cost_center/security/account_cost_center_security.xml b/account_cost_center/security/account_cost_center_security.xml new file mode 100644 index 00000000000..273ab718d2e --- /dev/null +++ b/account_cost_center/security/account_cost_center_security.xml @@ -0,0 +1,12 @@ + + + + Cost center multi company rule + + + ['|',('company_id','=',False),('company_id', 'in', company_ids)] + + + diff --git a/account_cost_center/security/ir.model.access.csv b/account_cost_center/security/ir.model.access.csv new file mode 100644 index 00000000000..0e0f7a0c897 --- /dev/null +++ b/account_cost_center/security/ir.model.access.csv @@ -0,0 +1,4 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_account_cost_center_invoice,account.cost.center,model_account_cost_center,account.group_account_invoice,1,0,0,0 +access_account_cost_center_user,account.cost.center,model_account_cost_center,account.group_account_user,1,1,1,1 +access_account_cost_center_manager,account.cost.center,model_account_cost_center,account.group_account_manager,1,1,1,1 diff --git a/account_cost_center/static/description/account_costcenter_1.png b/account_cost_center/static/description/account_costcenter_1.png new file mode 100644 index 00000000000..994c3d5fe89 Binary files /dev/null and b/account_cost_center/static/description/account_costcenter_1.png differ diff --git a/account_cost_center/static/description/account_costcenter_2.png b/account_cost_center/static/description/account_costcenter_2.png new file mode 100644 index 00000000000..b7ef54ee4ce Binary files /dev/null and b/account_cost_center/static/description/account_costcenter_2.png differ diff --git a/account_cost_center/static/description/account_costcenter_3.png b/account_cost_center/static/description/account_costcenter_3.png new file mode 100644 index 00000000000..147c754a82a Binary files /dev/null and b/account_cost_center/static/description/account_costcenter_3.png differ diff --git a/account_cost_center/static/description/icon.png b/account_cost_center/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/account_cost_center/static/description/icon.png differ diff --git a/account_cost_center/static/description/icon.svg b/account_cost_center/static/description/icon.svg new file mode 100644 index 00000000000..a7a26d0932a --- /dev/null +++ b/account_cost_center/static/description/icon.svg @@ -0,0 +1,79 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/account_cost_center/static/description/index.html b/account_cost_center/static/description/index.html new file mode 100644 index 00000000000..6af9d87a3f6 --- /dev/null +++ b/account_cost_center/static/description/index.html @@ -0,0 +1,453 @@ + + + + + +Costcenter + + + +
+

Costcenter

+ + +

Beta License: AGPL-3 OCA/account-financial-tools Translate me on Weblate Try me on Runboat

+

This module allows the user to link every invoice line to a cost center +providing an extra dimension for the analysis.

+

Table of contents

+ +
+

Usage

+

This module is relevant when you are creating sales invoices and using analytic accounting.

+

Start using cost centers by defining the cost centers. Be aware that Analytic Accounting +must be activated on the user for the following menu option. +Use the menu in the accounting module:

+
+Configuration > Analytics accounting > Cost centers
+
+Cost centers can be configured +
+

Once defined you can add a cost center to an invoice line. A default cost center for +the current invoice can be set in the other info tab.

+
+Cost centers can be selected on invoice lines +
+

This module adds the cost center concept to the reporting.

+
+Accounting > Invoice Analysis
+

Here you can select or unselect the cost center within your analysis.

+
+Cost centers can be selected on invoice lines +
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Onestein
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/account-financial-tools project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/account_cost_center/tests/__init__.py b/account_cost_center/tests/__init__.py new file mode 100644 index 00000000000..8ad8f782940 --- /dev/null +++ b/account_cost_center/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import test_cost_center diff --git a/account_cost_center/tests/test_cost_center.py b/account_cost_center/tests/test_cost_center.py new file mode 100644 index 00000000000..fdb9d2afdde --- /dev/null +++ b/account_cost_center/tests/test_cost_center.py @@ -0,0 +1,136 @@ +# Copyright 2017-2020 Onestein () +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo.tests import Form, tagged + +from odoo.addons.account.tests.common import AccountTestInvoicingCommon + + +@tagged("post_install", "-at_install") +class TestAccountCostCenter(AccountTestInvoicingCommon): + @classmethod + def setUpClass(cls, chart_template_ref=None): + super().setUpClass(chart_template_ref=chart_template_ref) + cls.costcenter = cls.env["account.cost.center"].create( + { + "name": "Cost Center Test", + "code": "CC1", + "company_id": cls.env.company.id, + } + ) + + # Invoice created with tests Form + cls.invoice1 = cls.init_invoice("in_invoice") + + # Invoice created with standard create + cls.invoice2 = ( + cls.env["account.move"] + .with_context(cost_center_id=cls.costcenter.id) + .create( + { + "partner_id": cls.env.ref("base.res_partner_2").id, + "move_type": "in_invoice", + "cost_center_id": cls.costcenter.id, + } + ) + ) + + cls.invoice2.invoice_line_ids += cls.env["account.move.line"].new( + { + "product_id": cls.env.ref("product.product_product_4").id, + "quantity": 1.0, + "price_unit": 130.0, + "name": "product that cost 130", + "cost_center_id": cls.costcenter.id, + } + ) + + def test_01_check_lines(self): + self.assertFalse( + self.invoice1.invoice_line_ids.cost_center_id, + "Default cost center per line not set", + ) + + self.assertEqual( + self.invoice2.invoice_line_ids[0].cost_center_id, self.costcenter + ) + + def test_02_check_lines(self): + invoice_lines = self.invoice1.invoice_line_ids + self.assertFalse(any(line.cost_center_id for line in invoice_lines)) + + invoice_form = Form(self.invoice1) + invoice_form.cost_center_id = self.costcenter + with invoice_form.invoice_line_ids.new() as line: + line.name = "Test line2" + line.quantity = 2.0 + line.price_unit = 200.0 + self.invoice1 = invoice_form.save() + + invoice_lines = self.invoice1.invoice_line_ids + self.assertTrue(any(line.cost_center_id for line in invoice_lines)) + self.assertFalse(any(not line.cost_center_id for line in invoice_lines)) + + def test_03_confirm_invoice(self): + invoice_lines = self.invoice2.invoice_line_ids + for move_line in invoice_lines: + self.assertEqual(move_line.cost_center_id, self.costcenter) + for move_line in self.invoice2.line_ids - invoice_lines: + self.assertFalse(move_line.cost_center_id) + + def test_04_search_read(self): + expected_cost_center = self.costcenter + + records = self.env["account.invoice.report"].sudo().search_read([]) + result = records[0].get("cost_center_id") + + self.assertTrue(result) + self.assertEqual(result[0], expected_cost_center.id) + self.assertEqual(result[1], expected_cost_center.name) + + def test_05_default_cost_center_on_lines(self): + """The default cost center is selected when creating invoice lines""" + # Create an invoice: no default cost center is set + invoice = self.env["account.move"].create( + { + "partner_id": self.env.ref("base.res_partner_2").id, + "move_type": "in_invoice", + } + ) + self.assertFalse(invoice.cost_center_id) + + # Create an invoice line: no cost center is set + invoice_form = Form(invoice) + with invoice_form.invoice_line_ids.new() as line: + line.name = "Test line1" + line.quantity = 1.0 + line.price_unit = 100.0 + invoice_form.save() + self.assertEqual(len(invoice.invoice_line_ids), 1) + self.assertFalse(invoice.invoice_line_ids.cost_center_id) + + # Set a default cost center on invoice + invoice_form = Form(invoice) + invoice_form.cost_center_id = self.costcenter + + # Create an invoice line + with invoice_form.invoice_line_ids.new() as line: + line.name = "Test line2" + line.quantity = 2.0 + line.price_unit = 200.0 + invoice_form.save() + self.assertEqual(len(invoice.invoice_line_ids), 2) + + # Default cost center is set for new line + line_with_cost_center = invoice.invoice_line_ids.filtered( + lambda l: l.cost_center_id + ) + self.assertTrue(line_with_cost_center) + self.assertEqual(line_with_cost_center.cost_center_id, self.costcenter) + + # Default cost center stays not set for old line + line_no_cost_center = invoice.invoice_line_ids.filtered( + lambda l: not l.cost_center_id + ) + self.assertTrue(line_no_cost_center) + self.assertFalse(line_no_cost_center.cost_center_id) diff --git a/account_cost_center/views/account_cost_center_views.xml b/account_cost_center/views/account_cost_center_views.xml new file mode 100644 index 00000000000..944f0dae63a --- /dev/null +++ b/account_cost_center/views/account_cost_center_views.xml @@ -0,0 +1,82 @@ + + + + + account.cost.center + +
+ + +
+
+
+ + + + + + + + + + +
+
+
+
+ + account.cost.center + + + + + + + + + + account.cost.center + + + + + + + + Cost Centers + ir.actions.act_window + account.cost.center + tree,form + + +

+ Click to add a new cost center. +

+

+ Cost centers provide an extra analytic dimension +

+
+
+ + + + +
diff --git a/account_cost_center/views/account_invoice_report_views.xml b/account_cost_center/views/account_invoice_report_views.xml new file mode 100644 index 00000000000..19b56019549 --- /dev/null +++ b/account_cost_center/views/account_invoice_report_views.xml @@ -0,0 +1,16 @@ + + + + account.invoice.report + + + + + + + + diff --git a/account_cost_center/views/account_move_line_views.xml b/account_cost_center/views/account_move_line_views.xml new file mode 100644 index 00000000000..23f074dfe53 --- /dev/null +++ b/account_cost_center/views/account_move_line_views.xml @@ -0,0 +1,22 @@ + + + + account.move.line + + + + + + + + + account.move.line + + 1 + + + + + + + diff --git a/account_cost_center/views/account_move_views.xml b/account_cost_center/views/account_move_views.xml new file mode 100644 index 00000000000..5602b85f980 --- /dev/null +++ b/account_cost_center/views/account_move_views.xml @@ -0,0 +1,30 @@ + + + + account.move + + + + + + + + + + + + + { + "default_cost_center_id": cost_center_id, + } + + + + + diff --git a/setup/account_cost_center/odoo/addons/account_cost_center b/setup/account_cost_center/odoo/addons/account_cost_center new file mode 120000 index 00000000000..f96c89e0707 --- /dev/null +++ b/setup/account_cost_center/odoo/addons/account_cost_center @@ -0,0 +1 @@ +../../../../account_cost_center \ No newline at end of file diff --git a/setup/account_cost_center/setup.py b/setup/account_cost_center/setup.py new file mode 100644 index 00000000000..28c57bb6403 --- /dev/null +++ b/setup/account_cost_center/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)