diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/account_check_printing | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/account_check_printing')
106 files changed, 32945 insertions, 0 deletions
diff --git a/addons/account_check_printing/__init__.py b/addons/account_check_printing/__init__.py new file mode 100644 index 00000000..2ae6446f --- /dev/null +++ b/addons/account_check_printing/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import models +from . import wizard diff --git a/addons/account_check_printing/__manifest__.py b/addons/account_check_printing/__manifest__.py new file mode 100644 index 00000000..4fa7dfb9 --- /dev/null +++ b/addons/account_check_printing/__manifest__.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +{ + 'name': 'Check Printing Base', + 'version': '1.0', + 'category': 'Accounting/Accounting', + 'summary': 'Check printing commons', + 'description': """ +This module offers the basic functionalities to make payments by printing checks. +It must be used as a dependency for modules that provide country-specific check templates. +The check settings are located in the accounting journals configuration page. + """, + 'depends': ['account'], + 'data': [ + 'security/ir.model.access.csv', + 'data/account_check_printing_data.xml', + 'views/account_journal_views.xml', + 'views/account_move_views.xml', + 'views/account_payment_views.xml', + 'views/res_config_settings_views.xml', + 'views/res_partner_views.xml', + 'wizard/print_prenumbered_checks_views.xml' + ], + 'installable': True, + 'auto_install': False, + 'license': 'LGPL-3', +} diff --git a/addons/account_check_printing/data/account_check_printing_data.xml b/addons/account_check_printing/data/account_check_printing_data.xml new file mode 100644 index 00000000..c6801a36 --- /dev/null +++ b/addons/account_check_printing/data/account_check_printing_data.xml @@ -0,0 +1,29 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <data noupdate="1"> + + <record id="account_payment_method_check" model="account.payment.method"> + <field name="name">Checks</field> + <field name="code">check_printing</field> + <field name="payment_type">outbound</field> + <field name="sequence">20</field> + </record> + + <function model="account.journal" name="_enable_check_printing_on_bank_journals"/> + + + <record model="ir.actions.server" id="action_account_print_checks"> + <field name="name">Print Checks</field> + <field name="model_id" ref="account.model_account_payment"/> + <field name="binding_model_id" ref="account.model_account_payment" /> + <field name="binding_view_types">list</field> + <field name="groups_id" eval="[(4, ref('account.group_account_user'))]"/> + <field name="state">code</field> + <field name="code"> +if records: + action = records.print_checks() + </field> + </record> + + </data> +</odoo> diff --git a/addons/account_check_printing/i18n/account_check_printing.pot b/addons/account_check_printing/i18n/account_check_printing.pot new file mode 100644 index 00000000..3ff4ebc2 --- /dev/null +++ b/addons/account_check_printing/i18n/account_check_printing.pot @@ -0,0 +1,422 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-01 07:28+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/af.po b/addons/account_check_printing/i18n/af.po new file mode 100644 index 00000000..932585bb --- /dev/null +++ b/addons/account_check_printing/i18n/af.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Afrikaans (https://www.transifex.com/odoo/teams/41243/af/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: af\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Kanselleer" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Geskep deur" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Geskep op" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "Vertoningsnaam" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Laas Gewysig op" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Laas Opgedateer deur" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Laas Opgedateer op" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Druk" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/am.po b/addons/account_check_printing/i18n/am.po new file mode 100644 index 00000000..15197f2b --- /dev/null +++ b/addons/account_check_printing/i18n/am.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Amharic (https://www.transifex.com/odoo/teams/41243/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "መሰረዝ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "አትም" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/ar.po b/addons/account_check_printing/i18n/ar.po new file mode 100644 index 00000000..2e06eedf --- /dev/null +++ b/addons/account_check_printing/i18n/ar.po @@ -0,0 +1,445 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Sherif Abd Ekmoniem <sherif.tsupport@gmail.com>, 2020 +# Mustafa Rawi <mustafa@cubexco.com>, 2020 +# Mustafa J. Kadhem <safi2266@gmail.com>, 2020 +# amrnegm <amrnegm.01@gmail.com>, 2020 +# Martin Trigaux, 2020 +# hoxhe Aits <hoxhe0@gmail.com>, 2020 +# Mohammed Albasha <m.albasha.ma@gmail.com>, 2020 +# Osama Ahmaro <osamaahmaro@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Osama Ahmaro <osamaahmaro@gmail.com>, 2020\n" +"Language-Team: Arabic (https://www.transifex.com/odoo/teams/41243/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ar\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr " : رقم التسلسلي الشيك " + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "تعديل قيم هوامش الشيكات الناتجة لجعلها تناسب إعدادات طابعتك." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "المبلغ بالكلمات" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "الغاء" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "تخطيط الشيك" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "الهامش الأيسر للشيك" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "رقم الشيك" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "طباعة الشيك" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "تم اختيار السداد بطباعة شيك" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "الهامش الأيمن للشيك" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "مسلسل الشيك" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "الهامش العلوي للشيك" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "حدد هذا الاختيار إذا كانت شيكاتك المطبوعة مسبقًا غير مُرقمة." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "شيك للطباعة" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "شيكات" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "تسلسل أرقام الشيكات." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "شيكات للطباعة" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "شيكات للطباعة" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "شركات" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "ضبط الاعدادات" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "جهة الاتصال" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "أنشئ بواسطة" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "أنشئ في" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "الاسم المعروض" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "الذهاب للوحة الإعدادات" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "المُعرف" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"لتتمكن من طباعة عدة شيكات دفعة واحدة، يجب أن تنتمي هذه الشيكات لدفتر يومية " +"واحد." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "دفتر اليومية" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "قيد اليومية" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "آخر تعديل في" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "آخر تحديث بواسطة" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "آخر تحديث في" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "ترقيم يدوي" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "كعب الشيك متعدد الصفحات" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "رقم الشيك التالي" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "لا شيء" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "طريقة السداد" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "المدفوعات" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"يجب تحديد اختيار شيكات كإحدى طرق السداد للسداد بالشيكات إذا لم يكن قد تم " +"تسويته مسبقًا" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "برجاء إدخال رقم أول شيك مطبوع مسبقًا تود الطباعة عليه." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "طباعة" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "طباعة الشيك" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "طباعة الشيكات" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "طباعة عنوان حقل التاريخ" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "طباعة شيكات مُرقمة مسبقًا" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "الهامش الأيمن" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"قم باختيار تنسيق دفتر الشيكات الذي ستقوم بطباعة شيكاتك عليه.\n" +"لإلغاء تفعيل خاصية الطباعة، اختر 'لا شيء'." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "تم الإرسال" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "الرقم المسلسل للشيك المطبوع التالي." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "حقل تقني يُستخدم لتحديد ما إن كان خيار طباعة شيك مفعلًا كطريقة للدفع." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"رقم آخر شيك كان %s. لتجنب رفض الشيك من قبل البنك، يجب استخدام رقم أكبر." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"قيد اليومية المُختار تم ضبطه لطباعة أرقام الشيكات. إذا كانت شيكاتك المطبوعة " +"مسبقًا لها أرقام بالفعل أو إذا كان الترقيم الحالي خاطئًا، فيمكنك تغييره في " +"صفحة إعدادات دفتر اليومية." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"يسمح لك هذا الخيار بطباعة تفاصيل الشيك (كعب الشيك) على عدة صفحات إن لم " +"تكفيهم صفحة واحدة." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "سيسمح هذا بحفظ رقم الشيك المطابق على أمر الدفع." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "إزالة تحديد الرسالة كمُرسلة" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/az.po b/addons/account_check_printing/i18n/az.po new file mode 100644 index 00000000..83bb8590 --- /dev/null +++ b/addons/account_check_printing/i18n/az.po @@ -0,0 +1,385 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Language-Team: Azerbaijani (https://www.transifex.com/odoo/teams/41243/az/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: az\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:63 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__country_code +msgid "Company Country code" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +msgid "ID" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:84 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "None" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments__check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:81 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:94 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register Payments" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__country_code +msgid "" +"The ISO country code in two chars. \n" +"You can use this field for quick search." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA. " +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:116 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Apps, search for 'Checks " +"layout' and install one." +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check in middle" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check on bottom" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check on top" +msgstr "" diff --git a/addons/account_check_printing/i18n/bg.po b/addons/account_check_printing/i18n/bg.po new file mode 100644 index 00000000..f9a19f8f --- /dev/null +++ b/addons/account_check_printing/i18n/bg.po @@ -0,0 +1,450 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Rosen Vladimirov <vladimirov.rosen@gmail.com>, 2020 +# Igor Sheludko <igor.sheludko@gmail.com>, 2020 +# aleksandar ivanov, 2020 +# Albena Mincheva <albena_vicheva@abv.bg>, 2020 +# Maria Boyadjieva <marabo2000@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Maria Boyadjieva <marabo2000@gmail.com>, 2020\n" +"Language-Team: Bulgarian (https://www.transifex.com/odoo/teams/41243/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Проверете последователността на номерата" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Настройка полета на генерираните бележки за да пасне на настройките на Вашия" +" принтер." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Сумата с думи" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Откажи" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Отметнете номера" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Разпечатване на чек" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Избран метод за плащане при печат на чекове" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Последователност на отметки" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Отметнете тази опция, ако предварително отпечатаните Ви отметки не са " +"номерирани." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Чек за разпечатване" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Проверки" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Последователност при номерирането на чековете" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Чекове за разпечатване" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Чекове за разпечатване" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Компании" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Настройки конфигурация" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Контакт" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Създадено от" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Създадено на" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Име за показване" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Отидете в конфигурационния панел" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"За да отпечатвате няколко чека наведнъж, те трябва да принадлежат към един и" +" същ журнал." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Журнал" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Запис в журнал" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Последно променено на" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Последно обновено от" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Последно обновено на" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Механично номериране" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Следващ номер на чек" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Никакъв" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Метод за плащане" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Плащания" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Плащанията, подлежащи на разпечатване като чекове, трябва да са избрали " +"'Чек' като медод за плащане и вече не са обединени." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Моля въведете номер на първия предварително отпечатан чек, който сте на път " +"да отпечатате." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Печат" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Отпечатайте чек" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Отпечатайте чекове" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Отпечатайте предварително номерирани чекове" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Изпратен" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Пореден номер на следващия отпечатан чек" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Техническа характеристика, използвана, за да се разбере дали разпечатването " +"на чек е било позволено като метод на плащане." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Последният номер на чек беше %s. За да избегнете отхвърлянето на чека от " +"банката, можете да използвате единствено по-голям номер." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Избраният журнал е конфигуриран да отпечатва чекови номера. Ако " +"предварително отпечатаният Ви чеков документ вече притежава номера или ако " +"настоящото номериране е погрешно, можете да го промените в конфигурационната" +" страница на журнала." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Това ще позволи да запазвате номерата на плащанията на съответния чек." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Отмаркирайте изпратено" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/bn.po b/addons/account_check_printing/i18n/bn.po new file mode 100644 index 00000000..12f87672 --- /dev/null +++ b/addons/account_check_printing/i18n/bn.po @@ -0,0 +1,426 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Abu Zafar <azmikbal@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Abu Zafar <azmikbal@gmail.com>, 2021\n" +"Language-Team: Bengali (https://www.transifex.com/odoo/teams/41243/bn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "কথায় পরিমাণ" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "বাতিল" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "চেক নম্বর" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "আপনার প্রাক-মুদ্রিত চেকগুলি সংখ্যাযুক্ত না হলে এই বিকল্পটি চেক করুন।" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "কোম্পানি সমূহ " + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "রূপরেখা নির্ধারণ" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "যোগাযোগ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "দ্বারা সৃষ্টি" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "তৈরি" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "প্রদর্শন নাম" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "আইডি " + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "জার্নাল এন্ট্রি" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "সর্বশেষ সংশোধিত" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "সর্বশেষ আপডেট করেছেন" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "সর্বশেষ আপডেট হয়েছে" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "ম্যানুয়াল সংখ্যায়ন" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "কিছুই না" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/bs.po b/addons/account_check_printing/i18n/bs.po new file mode 100644 index 00000000..4cfeba8c --- /dev/null +++ b/addons/account_check_printing/i18n/bs.po @@ -0,0 +1,390 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2018 +# Boško Stojaković <bluesoft83@gmail.com>, 2018 +# Bole <bole@dajmi5.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Bole <bole@dajmi5.com>, 2018\n" +"Language-Team: Bosnian (https://www.transifex.com/odoo/teams/41243/bs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: bs\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:63 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Raspored čeka" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Kompanije" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__country_code +msgid "Company Country code" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:84 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Dnevnik knjiženja" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +msgid "Last Modified on" +msgstr "Zadnje mijenjano" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Zadnji ažurirao" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Zadnje ažurirano" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Sljedeći broj čeka" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "None" +msgstr "Ništa" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments__check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Plaćanja" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:81 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Ispis" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Štampaj ček" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:94 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register Payments" +msgstr "Registracija uplate" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__country_code +msgid "" +"The ISO country code in two chars. \n" +"You can use this field for quick search." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA. " +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:116 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Apps, search for 'Checks " +"layout' and install one." +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check in middle" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check on bottom" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check on top" +msgstr "" diff --git a/addons/account_check_printing/i18n/ca.po b/addons/account_check_printing/i18n/ca.po new file mode 100644 index 00000000..862e32d6 --- /dev/null +++ b/addons/account_check_printing/i18n/ca.po @@ -0,0 +1,443 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# RGB Consulting <odoo@rgbconsulting.com>, 2020 +# Quim - eccit <quim@eccit.com>, 2020 +# Manel Fernandez Ramirez <manelfera@outlook.com>, 2020 +# M Palau <mpalau@tda.ad>, 2020 +# Josep Anton Belchi, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Josep Anton Belchi, 2021\n" +"Language-Team: Catalan (https://www.transifex.com/odoo/teams/41243/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Seqüència de numeració de xecs" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Quantitat en paraules" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancel·la" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Disposició de xec" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Número de xec" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Impressió de xecs" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Seqüència de xecs" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Marqui aquesta opció si els seus xecs preimpresos no estan numerats." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Impressió de xecs" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Xecs" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Seqüència de numeració dels xecs." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Xec a imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Xecs a imprimir" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Empreses" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Configuració" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Contacte" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Creat per" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Creat el" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Nom mostrat" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Anar al panell de configuració " + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Per imprimir múltiples xecs d'un cop, han de pertànyer al mateix diari " +"bancari." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Diari" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Assentament comptable" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificació el " + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Última actualització per" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Última actualització el" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Numeració manual" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Núm. del pròxim xec" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Cap" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Forma de pagament" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Pagaments" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Els pagaments per imprimir com xecs han de tenir \"Xec\" seleccionant com " +"mètode de pagament i no estar conciliats." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "Si us plau, introdueixi el número del següent xec preimpressió." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Imprimir xec" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Imprimir xecs" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Imprimir xecs prenumerats" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Enviar" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Número de seqüència del següent xec imprès." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Camp tècnic utilitzat per saber si la impressió de xecs s'ha habilitat com a" +" mètode de pagament." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"L'últim número de xec va ser %s. Amb el fi d'evitar que un xec sigui " +"rebutjat pel banc, només es pot utilitzar un número major." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"El diari seleccionat està configurat per imprimir números de xec. Si els " +"seus xecs preimpresos ja tenen números o si la numeració actual és " +"incorrecta, poden canviar-la en la pàgina de configuració del diari." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Això permetrà guardar en els pagaments el número del xec corresponent." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Desmarcar enviats" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/ckb.po b/addons/account_check_printing/i18n/ckb.po new file mode 100644 index 00000000..ea33f43d --- /dev/null +++ b/addons/account_check_printing/i18n/ckb.po @@ -0,0 +1,426 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Haval Abdulkarim <haval.abdulkarim@gmail.com>, 2020\n" +"Language-Team: Central Kurdish (https://www.transifex.com/odoo/teams/41243/ckb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ckb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "پاشگەزبوونەوە" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "کۆمپانیاکان" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "شێوەپێدانی ڕێکخستنەکان" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "پەیوەندی" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "دروستکراوە لەلایەن" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "دروستکراوە لە" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "پیشاندانی ناو" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ناسنامە" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "تێنووسی یادنامە" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "دواین دەستکاری لە" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "دواین تازەکردنەوە لەلایەن" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "دواین تازەکردنەوە لە" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "هیچ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/cs.po b/addons/account_check_printing/i18n/cs.po new file mode 100644 index 00000000..700df0c2 --- /dev/null +++ b/addons/account_check_printing/i18n/cs.po @@ -0,0 +1,461 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Jan Horzinka <jan.horzinka@centrum.cz>, 2020 +# Michal Veselý <michal@veselyberanek.net>, 2020 +# trendspotter, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# karolína schusterová <karolina.schusterova@vdp.sk>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: karolína schusterová <karolina.schusterova@vdp.sk>, 2021\n" +"Language-Team: Czech (https://www.transifex.com/odoo/teams/41243/cs/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: cs\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr " : Zkontrolujte číselnou sekvenci" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Upravte okraje generovaných šeků tak, aby odpovídaly nastavení tiskárny." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Částka slovy" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Zrušit" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Zkontrolujte rozložení" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "levý okraj šeku" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "číslo šeku" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Tisk šeků" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Je vybrána tisková platební metoda" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Zkontrolujte správnou marži" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Zkontrolujte sekvenci" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Zkontrolujte ziskovost" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Šeková čísla se mohou skládat pouze z číslic" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Zaškrtněte tuto možnost, pokud předtištěné šeky nejsou očíslovány." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Zaškrtněte pro tisk" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Kontroly" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Kontroluje sekvenci číslování." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Kontroly k tisku" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Šeky k tisku" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Společnosti" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavení konfigurace" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Vytvořeno od" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Vytvořeno" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Zobrazované jméno" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Přejít na panel konfigurace" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Abyste mohli tisknout více šeků najednou, musí patřit do stejného bankovního" +" deníku." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Deník" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Položka deníku" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Naposled změněno" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Naposledy upraveno od" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Naposled upraveno" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Manuální číslování" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Vícestránkový kontrolní útržek" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Další kontrolní číslo" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "Číslo další kontroly by mělo obsahovat pouze čísla." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Nic" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Platební podmínky" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Platby" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"U plateb, které se mají tisknout jako šeky, musí být jako způsob platby " +"vybrána možnost „Šek“ a již nebyly odsouhlaseny" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Zadejte číslo první předtištěné kontroly, na kterou se chystáte tisknout." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Preferovaný způsob platby" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Preferovaná platební metoda při platbě tomuto prodejci. Slouží k filtrování " +"faktur dodavatele podle preferovaného způsobu platby k hromadné registraci " +"plateb. Případy použití: vytvořte bankovní soubory pro dávkové kabely, " +"zkontrolujte běhy." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Tisk" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Kontrola tisku" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Tiskové šeky" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Tisk štítku s datem" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Tisk předčíslovaných šeků" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Správná marže" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Vyberte formát odpovídající šekovému papíru, na který budete šeky tisknout.\n" +"Chcete-li deaktivovat funkci tisku, vyberte možnost Žádný." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Odesláno" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Pořadové číslo dalšího vytištěného šeku." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Při kontrole rozložení se něco pokazilo, vyberte prosím jiné rozložení v " +"nastavení fakturace / účtování a zkuste to znovu." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Technická funkce sloužící ke zjištění, zda byl jako způsob platby povolen " +"šekový tisk." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"Následující čísla jsou již použita:\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Číslo poslední kontroly bylo %s.Abyste zabránili odmítnutí šeku bankou, " +"můžete použít pouze větší počet." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Vybraný deník je nakonfigurován pro tisk kontrolních čísel. Pokud váš " +"předtištěný šekový papír již obsahuje čísla nebo pokud je aktuální číslování" +" nesprávné, můžete jej změnit na stránce konfigurace deníku." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Tato volba umožňuje tisknout podrobnosti o kontrole (stub) na více " +"stránkách, pokud se nevejdou na jednu stránku." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"Tato možnost umožňuje vytisknout štítek s datem na šeku podle CPA.\n" +"Toto deaktivujte, pokud předtištěný šek obsahuje štítek s datem." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "To umožní ušetřit na platbách číslo příslušného šeku." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Zrušeno označení" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Kontrola neplatnosti" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"Musíte zvolit rozložení kontroly. Chcete-li to provést, přejděte do " +"Nastavení fakturace / účetnictví, vyhledejte 'Rozvrh kontroly' a nastavte " +"jej." diff --git a/addons/account_check_printing/i18n/da.po b/addons/account_check_printing/i18n/da.po new file mode 100644 index 00000000..612a5c97 --- /dev/null +++ b/addons/account_check_printing/i18n/da.po @@ -0,0 +1,467 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Morten Schou <ms@msteknik.dk>, 2020 +# Jesper Carstensen <jc@danodoo.dk>, 2020 +# Jesper Carstensen <info@danodoo.dk>, 2020 +# Pernille Kristensen <pernillekristensen1994@gmail.com>, 2020 +# Sanne Kristensen <sanne@vkdata.dk>, 2020 +# lhmflexerp <lhm@flexerp.dk>, 2020 +# Mads Søndergaard, 2020 +# Mads Søndergaard <mads@vkdata.dk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Mads Søndergaard <mads@vkdata.dk>, 2020\n" +"Language-Team: Danish (https://www.transifex.com/odoo/teams/41243/da/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Tjek nummer sekvens" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Juster marginer på genererede checks for at tilpasse den din printers " +"indstillinger" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Antal ord" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Annullér" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Check Layout" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Check venstre margin" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Check nummer" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Check udskrivning" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Udskrevet check er valgt som betalingsmetode" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Check højre margin" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Check rækkefølge" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Check top margin" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Check numre kan kun bestå af tal" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Sæt kryds her hvis dine allerede printede checks ikke er nummererede." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Check der skal printes" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Kontrolpunkter" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Rækkefølge af check nummerering." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Checks der skal printes" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Checks der skal printes" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Virksomheder" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurer opsætning" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Oprettet af" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Oprettet den" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Vis navn" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Gå til konfigurations fanebladet" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"For at udskrive flere checks på en gang, skal de tilhøre den samme bank " +"journal." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Journal" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Postering" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Sidst ændret den" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Sidst opdateret af" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Sidst opdateret den" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Manuel nummerering" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Fler-siders check stubbe" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Næste checknummer" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "Næste check nummer bør kun indeholde tal." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Ingen" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Betalingsmetode" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Betalinger" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Betalinger der skal printes som checks skal have 'Check' valgt som betalings" +" metode, og må ikke allerede være afstemte" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Indtast venligst nummeret på den før forprintede check, som du skal til at " +"printe på." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Foretrukket Betalingsmetode" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Foretrukket betalingsmetode når denne leverandør betales. Dette anvendes til" +" at filtrere leverandørregninger ud fra foretrukket betalingsmetode, for at " +"registrere betalinger i partier. Brugs eksempler: opret bank filer for parti" +" overførsler, check kørsler." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Udskriv" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Udskriv check" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Udskriv checks" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Print datomarkering" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Udskriv allerede nummererede checks" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Højre margin" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Vælg formatet der svarer til det check papir du vil bruge til at printe dine checks.\n" +"for at slå print funktionen fra, vælg 'Ingen'" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Sendt" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Rækkefølge nummer for den næste udskrivende check. " + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Noget gik galt med Check Layout, vælg venligst et andet layout i " +"Fakturering/Regnskab Indstillinger og forsøg igen." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Teknisk funktion brugt til at vide hvorvidt check printning var slået til " +"som en betalings metode." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"De følgende tal er allerede brugt:\n" +" %s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Den seneste checknummer var %s. For at undgå at en check bliver afvist af " +"banken, kan du kun bruge et større nummer." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Den valgte journal er konfigureret til at printe checknumre. Hvis dit forud-" +"printet checkpapir allerede har numre, eller hvis den nuværende nummerering " +"er forkert, kan du ændre det på journal konfiguration siden." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Denne mulighed gør det muligt for dig at printe check detaljer (stubbe) på " +"flere sider, hvis de ikke kan være på ét ark." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"Denne indstilling gør det muligt for dig at printe dato mærkater på checken i overensstemmelse med CPA.\n" +"Deaktiver dette hvis dine forudprintede checks inkludere datomarkering." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Dette gør det muligt at gemme nummeret på den tilsvarende check i " +"betalinger." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Fjern markering af sendt" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Ugyldig Check" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"Du skal vælge et check layout. Dette gøres i Fakturering/Regnskab " +"Indstillinger, søg efter \"Check layout\", og angiv en." diff --git a/addons/account_check_printing/i18n/de.po b/addons/account_check_printing/i18n/de.po new file mode 100644 index 00000000..cfe50601 --- /dev/null +++ b/addons/account_check_printing/i18n/de.po @@ -0,0 +1,464 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Leon Grill <leg@odoo.com>, 2020 +# Andreas Schmidt <schmigo@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Andreas Schmidt <schmigo@gmail.com>, 2021\n" +"Language-Team: German (https://www.transifex.com/odoo/teams/41243/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Nummernkreis für Schecks" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Passen Sie die Ränder des erzeugten Schecks an, damit dieser mit den " +"Einstellungen Ihres Druckers übereinstimmt." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Betrag in Worten" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Abbrechen" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Scheck-Layout" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Linken Rand prüfen" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Schecknummer" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Scheckdruck" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Scheckdruck-Zahlungsweg ausgewählt" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Rechten Rand prüfen" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Scheck-Nummernfolge" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Oberen Rand prüfen" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Prüfnummern können nur aus Ziffern bestehen" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Wählen Sie diese Option, wenn Ihre vorab ausgedruckten Schecks nicht " +"nummeriert sind." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Auszudruckender Scheck" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Schecks" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Scheck-Nummernfolge" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Auszudruckende Schecks" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Auszudruckende Schecks" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Unternehmen" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguration " + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Erstellt von" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Erstellt am" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Anzeigename" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Benutzen Sie das Hauptmenü" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Zum Druck mehrerer Schecks, müssen diese zum gleichen Bankjournal gehören." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Journal" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Buchungssatz" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Zuletzt geändert am" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Zuletzt aktualisiert durch" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Zuletzt aktualisiert am" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Manuelle Nummerierungen" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Mehrseitiger Check Stub" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Nächste Schecknummer" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "Die nächste Schecknummer sollte nur Zahlen enthalten." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Keine" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Zahlungsmethode" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Zahlungen" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Zahlungen durch einen auszudruckenden Scheck müssen \"Scheck\" als " +"Zahlungsmethode haben und dürfen nicht bereits abgestimmt sein." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Bitte geben Sie die Nummer für den ersten vorab auszudruckenden Scheck ein." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Bevorzugte Zahlungsmethode" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Bevorzugte Zahlungsmethode beim Bezahlen dieses Lieferanten. Dies wird " +"verwendet, um Lieferantenrechnungen nach bevorzugter Zahlungsmethode zu " +"filtern, um Zahlungen in Massen zu registrieren. Anwendungsfälle: Erstellen " +"von Bankdateien für Stapelüberweisungen, Scheckläufe." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Drucken" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Druckausgabe Scheck" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Scheck drucken" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Datumsaufkleber drucken " + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Vorab nummerierten Scheck drucken." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Rechter Rand" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Wählen Sie das Format aus, das dem Kontrollpapier entspricht, auf dem Sie Ihre Schecks drucken möchten.\n" +"Um die Druckfunktion zu deaktivieren, wählen Sie \"Keine\"." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Gesendet" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Laufende Nummer für den nächsten Scheckdruck. " + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Beim Prüflayout ist etwas schief gelaufen, bitte wählen Sie ein anderes " +"Layout in den Einstellungen für die Rechnungsstellung/Buchhaltung und " +"versuchen Sie es erneut." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Technische Funktion zur Prüfung, ob Schecks als offizieller Zahlungsweg " +"aktiviert wurden." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"Die folgenden Nummern werden bereits verwendet:\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Die letzte Nummer für einen Scheck war %s. Um eine Ablehnung eines Schecks " +"seitens der Bank zu verhindern, müssen Se auf jeden Fall eine größere Nummer" +" wählen." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Das ausgewählte Journal wurde für Scheckdruck konfiguriert. Falls Ihr vorab " +"ausgedruckter Scheck bereits eine laufende Nummer hat, können Sie dies über " +"die Konfiguration Ihres Journals anpassen." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Mit dieser Option können Sie Scheckdetails (Stub) auf mehreren Seiten " +"drucken, wenn sie nicht auf eine einzige Seite passen." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"Mit dieser Option können Sie das Datumsetikett gemäß CPA auf den Scheck drucken.\n" +"Deaktivieren Sie dies, wenn Ihr vorgedruckter Scheck das Datumsetikett enthält." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Die Nummer der korrespondierenden Sckecks kann bei den Zahlungen gesichert " +"werden." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Als noch nicht gesendet markieren" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Gültigkeitsprüfung" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"Sie müssen ein Scheck-Layout wählen. Gehen Sie dazu in " +"Rechnungs-/Buchhaltungseinstellungen, suchen Sie nach 'Schecklayout' und " +"stellen Sie eines ein." diff --git a/addons/account_check_printing/i18n/el.po b/addons/account_check_printing/i18n/el.po new file mode 100644 index 00000000..cb458106 --- /dev/null +++ b/addons/account_check_printing/i18n/el.po @@ -0,0 +1,433 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Kostas Goutoudis <goutoudis@gmail.com>, 2020 +# George Tarasidis <george_tarasidis@yahoo.com>, 2020 +# Alexandros Kapetanios <alexandros@gnugr.org>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Alexandros Kapetanios <alexandros@gnugr.org>, 2021\n" +"Language-Team: Greek (https://www.transifex.com/odoo/teams/41243/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Ακολουθία Αρίθμησης Επιταγής" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Ποσό σε Λέξεις" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Ακύρωση" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Αριθμός Επιταγής" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Εκτύπωση Επιταγής" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Επιλεγμένη Μέθοδος Πληρωμής Εκυπωμένων Επιταγών" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Ακολουθία επιταγών." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Ενεργοποιήστε αυτήν την επιλογή εάν οι προεκτυπωμένες επιταγές δεν είναι " +"αριθμημένες." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Επιταγή προς εκτύπωση" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Με Επιταγές" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Ακολουθία αρίθμησης επιταγών." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Επιταγές προς Εκτύπωση" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Επιταγές προς εκτύπωση" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Εταιρίες" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Ρυθμίσεις διαμόρφωσης" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Επαφή" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Δημιουργήθηκε από" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Δημιουργήθηκε στις" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Εμφάνιση Ονόματος" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Μετάβαση στον πίνακα ελέγχου" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "Κωδικός" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Για να εκτυπώσετε πολλαπλές επιταγές με μία κίνηση, θα πρέπει να ανήκουν στο" +" ίδιο ημερολόγιο τράπεζας." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Ημερολόγιο" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Εγγραφή Ημερολογίου" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Τελευταία τροποποίηση στις" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Τελευταία Ενημέρωση από" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Τελευταία Ενημέρωση στις" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Χειροκίνητη Αρίθμηση" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Επόμενος Αριθμός Επιταγής" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Κανένα" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Μέθοδος Πληρωμής" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Συναλλαγές" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Εκτύπωση" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Εκτύπωση Επιταγής" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Εκτύπωση Επιταγών" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Εκτύπωση προ-αριθμημένων Επιταγών" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Εστάλη" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Ακολουθία αριθμού για την επόμενη εκτυπωμένη επιταγή." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Σήμανση ως μη Απεσταλμένη" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/en_AU.po b/addons/account_check_printing/i18n/en_AU.po new file mode 100644 index 00000000..dea7bdec --- /dev/null +++ b/addons/account_check_printing/i18n/en_AU.po @@ -0,0 +1,454 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Richard deMeester <richardd@willdooit.com>, 2021 +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2021-04-22 13:46+0000\n" +"Last-Translator: Richard deMeester <richardd@willdooit.com>\n" +"Language-Team: English (Australia) (http://www.transifex.com/odoo/odoo-9/language/en_AU/)\n" +"Language: en_AU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr " : Cheque Number Sequence" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Adjust the margins of generated cheques to make they fit your printer's " +"settings." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Cheque Layout" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Cheque Left Margin" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Cheque Number" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Cheque Printing" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Cheque Printing Payment Method Selected" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Cheque Right Margin" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Cheque Sequence" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Cheque Top Margin" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Cheque numbers can only consist of digits" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Cheque this option if your pre-printed checks are not numbered." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Cheque to print" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Cheques" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Cheques numbering sequence." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Cheques to Print" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Cheques to print" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"In order to print multiple cheques at once, they must belong to the same bank" +" journal." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Multi-Pages Cheque Stub" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Next Cheque Number" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "Next Cheque Number should only contains numbers." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Payments to print as a cheques must have 'Cheque' selected as payment method " +"and not have already been reconciled" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Please enter the number of the first pre-printed cheque that you are about to" +" print on." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, cheque runs." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Print Cheque" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Print Cheques" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Print Pre-numbered Cheques" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Select the format corresponding to the cheque paper you will be printing your cheques on.\n" +"In order to disable the printing feature, select 'None'." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Sequence number of the next printed cheque." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Something went wrong with Cheque Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Technical feature used to know whether cheque printing was enabled as payment" +" method." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"The last cheque number was %s. In order to avoid a cheque being rejected by " +"the bank, you can only use a greater number." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"The selected journal is configured to print cheque numbers. If your pre-" +"printed cheque paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"This option allows you to print cheque details (stub) on multiple pages if " +"they don't fit on a single page." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"This option allows you to print the date label on the cheque as per CPA.\n" +"Disable this if your pre-printed cheque includes the date label." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"This will allow to save on payments the number of the corresponding cheque." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Void Cheque" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"You have to choose a cheque layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Cheques layout' and set one." diff --git a/addons/account_check_printing/i18n/en_CA.po b/addons/account_check_printing/i18n/en_CA.po new file mode 100644 index 00000000..c6602587 --- /dev/null +++ b/addons/account_check_printing/i18n/en_CA.po @@ -0,0 +1,247 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 12.0alpha1+e\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-01-31 09:57+0000\n" +"PO-Revision-Date: 2018-01-31 09:57+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr " : Cheque Number Sequence" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "A cheque memo cannot exceed 60 characters." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company_account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company_account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company_account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings_account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings_account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings_account_check_printing_margin_top +msgid "Adjust the margins of generated checks to make it fit your printer's settings." +msgstr "Adjust the margins of generated cheques to make it fit your printer's settings." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company_account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings_account_check_printing_layout +msgid "Check Layout" +msgstr "Cheque Layout" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company_account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings_account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Cheque Left Margin" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "Cheque Number" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Cheque Printing" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Cheque Printing Payment Method Selected" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings_account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Cheque Right Margin" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "Cheque Sequence" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company_account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings_account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Cheque Top Margin" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Check this option if your pre-printed cheques are not numbered." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Cheque to print" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Cheques" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "Cheques To Print" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "Cheques numbering sequence." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "Cheque to Print" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Cheques to print" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "In order to print multiple checks at once, they must belong to the same bank journal." +msgstr "In order to print multiple cheques at once, they must belong to the same bank journal." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "Manual Numbering of cheque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company_account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings_account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Multi-Pages Cheque Stub" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "Next Cheque Number" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "Number of the check corresponding to this payment. If your pre-printed check are not already numbered, you can manage the numbering in the journal configuration page." +msgstr "Number of the cheque corresponding to this payment. If your pre-printed cheque are not already numbered, you can manage the numbering in the journal configuration page." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "Payments to print as a checks must have 'Check' selected as payment method and not have already been reconciled" +msgstr "Payments to print as a cheques must have 'Cheque' selected as payment method and not have already been reconciled" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Please enter the number of the first pre-printed check that you are about to print on." +msgstr "Please enter the number of the first pre-printed cheque that you are about to print on." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Print Cheque" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Print Cheques" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Print Pre-numbered Cheques" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company_account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings_account_check_printing_layout +msgid "Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "Select the format corresponding to the cheque paper you will be printing your cheques on.\n" +"In order to disable the printing feature, select 'None'." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "Sequence number of the next printed cheque." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Technical feature used to know whether check printing was enabled as payment method." +msgstr "Technical feature used to know whether cheque printing was enabled as payment method." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "The last check number was %s. In order to avoid a check being rejected by the bank, you can only use a greater number." +msgstr "The last cheque number was %s. In order to avoid a cheque being rejected by the bank, you can only use a greater number." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "The selected journal is configured to print check numbers. If your pre-printed check paper already has numbers or if the current numbering is wrong, you can change it in the journal configuration page." +msgstr "The selected journal is configured to print cheque numbers. If your pre-printed cheque paper already has numbers or if the current numbering is wrong, you can change it in the journal configuration page." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "There is no cheque layout configured.\n" +"Make sure the proper cheque printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company_account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings_account_check_printing_multi_stub +msgid "This option allows you to print check details (stub) on multiple pages if they don't fit on a single page." +msgstr "This option allows you to print cheque details (stub) on multiple pages if they don't fit on a single page." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company_account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings_account_check_printing_date_label +msgid "This option allows you to print the date label on the check as per CPA. Disable this if your pre-printed check includes the date label." +msgstr "This option allows you to print the date label on the cheque as per CPA. Disable this if your pre-printed cheque includes the date label." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "This will allow to save on payments the number of the corresponding check." +msgstr "This will allow to save on payments the number of the corresponding cheque." + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check in middle" +msgstr "cheque in middle" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check on bottom" +msgstr "cheque on bottom" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check on top" +msgstr "cheque on top" + diff --git a/addons/account_check_printing/i18n/en_GB.po b/addons/account_check_printing/i18n/en_GB.po new file mode 100644 index 00000000..49a3ea87 --- /dev/null +++ b/addons/account_check_printing/i18n/en_GB.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/odoo/teams/41243/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancel" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Created by" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Created on" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "Display Name" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Last Modified on" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Last Updated by" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Last Updated on" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Print" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/eo.po b/addons/account_check_printing/i18n/eo.po new file mode 100644 index 00000000..8d65fedc --- /dev/null +++ b/addons/account_check_printing/i18n/eo.po @@ -0,0 +1,422 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Language-Team: Esperanto (https://www.transifex.com/odoo/teams/41243/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/es.po b/addons/account_check_printing/i18n/es.po new file mode 100644 index 00000000..01f53976 --- /dev/null +++ b/addons/account_check_printing/i18n/es.po @@ -0,0 +1,457 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# José Cabrera Lozano <jose.cabrera@edukative.es>, 2021 +# Daniela Cervantes <dace@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n" +"Language-Team: Spanish (https://www.transifex.com/odoo/teams/41243/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Secuencia de numeración de cheques" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Ajusta los márgenes de los cheques generados para ajustarlos a tu impresora." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Cantidad en palabras" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Disposición del cheque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Verificar margen izquierdo" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Número de cheque" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Impresión de cheques" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Comprueba la impresión del método de pago seleccionado" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Verificar el margen derecho" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Secuencia de los cheques" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Verificar margen superior" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Los úmeros de cheque solo pueden consistir de dígitos" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Marca esta opción si tus cheques pre-impresos no están numerados." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Checar a imprimir" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Cheques" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Secuencia de numeración de los cheques." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Checar a imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Cheques a imprimir" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Compañías" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Opciones de configuración" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Contacto" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Ir al panel de configuración" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "Identificación" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Para poder imprimir múltiples cheques al mismo tiempo, todos deben " +"pertenecer al mismo diario bancario." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Diario" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Asiento contable" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Numeración manual" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Talonario de cheques" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Nº del próximo cheque" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "El siguiente número de verificación solo debe contener números." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Ninguno" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Método de pago" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Pagos" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Los pagos para imprimir como cheques deben tener \"Cheque\" seleccionado " +"como método de pago y no estar conciliados." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "Por favor introduce el número del siguiente cheque pre-impreso." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Método de pago preferido" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Método de pago preferido al pagar a este proveedor. Se utiliza para filtrar " +"las facturas de los proveedores por el método de pago preferido para " +"registrar pagos en masa. Casos de uso: crear archivos bancarios para " +"transferencias por lotes, verificar ejecuciones." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Imprimir cheque" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Imprimir cheques" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Imprimir etiqueta de fecha" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Imprimir cheques pre-numerados" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Margen derecho" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Seleccione el tamaño correspondiente al tamaño de cheque que va a imprimir.\n" +"Para desactivar la función de impresión, seleccione 'Ninguno'." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Enviado" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Número de secuencia del próximo cheque impreso." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Se produjo un error con el diseño del cheque, seleccione otro diseño en la " +"configuración de facturación/contabilidad y vuelva a intentarlo." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Campo técnico usado para saber si la impresión de cheques se habilitó como " +"método de pago." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"Los siguientes números están en uso:\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"El último número de cheque fue %s. Con el fin de evitar que un cheque sea " +"rechazado por el banco, sólo se puede utilizar un número mayor." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"El diario seleccionado está configurado para imprimir números de cheque. Si " +"sus cheques pre-impresos ya tienen números o si la numeración actual es " +"incorrecta, puedes cambiarla en la página de configuración del diario." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Esta opción te permite imprimir los detalles de verificación (stub) en " +"varias páginas si no caben en una sola página." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"Esta opción te permite imprimir la etiqueta de fecha en el cheque según CPA.\n" +"Desactiva esta opción si tu cheque preimpreso incluye la etiqueta de fecha." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Esto permitirá guardar en los pagos el número del cheque correspondiente." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Quitar la marca de enviado" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Cheque vacío" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"Tienes que elegir un diseño de cheque. Para esto, ve a configuración de " +"facturación/contabilidad, busca 'Diseño de cheques' y configura uno." diff --git a/addons/account_check_printing/i18n/es_BO.po b/addons/account_check_printing/i18n/es_BO.po new file mode 100644 index 00000000..cbdff8d9 --- /dev/null +++ b/addons/account_check_printing/i18n/es_BO.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Bolivia) (https://www.transifex.com/odoo/teams/41243/es_BO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_BO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/es_CL.po b/addons/account_check_printing/i18n/es_CL.po new file mode 100644 index 00000000..c08842b3 --- /dev/null +++ b/addons/account_check_printing/i18n/es_CL.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Chile) (https://www.transifex.com/odoo/teams/41243/es_CL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/es_CO.po b/addons/account_check_printing/i18n/es_CO.po new file mode 100644 index 00000000..d88207c2 --- /dev/null +++ b/addons/account_check_printing/i18n/es_CO.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Colombia) (https://www.transifex.com/odoo/teams/41243/es_CO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Creado" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "Nombre Público" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Última Modificación el" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Actualizado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Actualizado" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/es_CR.po b/addons/account_check_printing/i18n/es_CR.po new file mode 100644 index 00000000..9223e582 --- /dev/null +++ b/addons/account_check_printing/i18n/es_CR.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Costa Rica) (https://www.transifex.com/odoo/teams/41243/es_CR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_CR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/es_DO.po b/addons/account_check_printing/i18n/es_DO.po new file mode 100644 index 00000000..e1c1869b --- /dev/null +++ b/addons/account_check_printing/i18n/es_DO.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Dominican Republic) (https://www.transifex.com/odoo/teams/41243/es_DO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_DO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID (identificación)" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Última modificación en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/es_EC.po b/addons/account_check_printing/i18n/es_EC.po new file mode 100644 index 00000000..560d6fcd --- /dev/null +++ b/addons/account_check_printing/i18n/es_EC.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Ecuador) (https://www.transifex.com/odoo/teams/41243/es_EC/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_EC\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Creado por:" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Creado" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Fecha de modificación" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Ultima Actualización por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Actualizado en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/es_MX.po b/addons/account_check_printing/i18n/es_MX.po new file mode 100644 index 00000000..cf0b6a9a --- /dev/null +++ b/addons/account_check_printing/i18n/es_MX.po @@ -0,0 +1,456 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Cécile Collart <cco@odoo.com>, 2021 +# Daniela Cervantes <dace@odoo.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Daniela Cervantes <dace@odoo.com>, 2021\n" +"Language-Team: Spanish (Mexico) (https://www.transifex.com/odoo/teams/41243/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Secuencia de numeración de cheques" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Ajuste los márgenes de los cheques generados para ajustarlos a su impresora." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Cantidad en palabras" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Disposición del cheque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Verificar margen izquierdo" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Número de cheque" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Impresión de cheques" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Compruebe la impresión del método de pago seleccionado" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Verificar el margen derecho" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Secuencia de los cheques" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Verificar margen superior" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Los números de cheque solo pueden consistir de dígitos" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Marque esta opción si sus cheques pre-impresos no están numerados." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Checar a imprimir" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Cheques" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Secuencia de numeración de los cheques." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Checar a imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Cheques a imprimir" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Opciones de configuración" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Contacto" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Ir al panel de configuración" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "Identificación" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Para poder imprimir múltiples cheques al mismo tiempo, todos deben " +"pertenecer al mismo diario bancario." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Diario" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Asiento contable" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Última actualización por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Última actualización el" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Numeración manual" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Talonario de cheques" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Nº del próximo cheque" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "El siguiente número de verificación solo debe contener números." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Ninguno" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Método de pago" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Pagos" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Los pagos para imprimir como cheques deben tener \"Cheque\" seleccionado " +"como método de pago y no estar conciliados." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "Por favor introduzca el número del siguiente cheque pre-impreso." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Método de pago preferido" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Método de pago preferido al pagar a este proveedor. Se utiliza para filtrar " +"las facturas de los proveedores por el método de pago preferido para " +"registrar pagos en masa. Casos de uso: crear archivos bancarios para " +"transferencias por lotes, verificar ejecuciones." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Imprimir cheque" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Imprimir cheques" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Imprimir etiqueta de fecha" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Imprimir cheques pre-numerados" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Margen derecho" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Seleccione el tamaño correspondiente al tamaño de cheque que va a imprimir.\n" +"Para desactivar la función de impresión, seleccione 'Ninguno'." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Enviado" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Número de secuencia del próximo cheque impreso." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Se produjo un error con el diseño del cheque, seleccione otro diseño en la " +"configuración de facturación/contabilidad y vuelva a intentarlo." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Campo técnico usado para saber si la impresión de cheques se habilitó como " +"método de pago." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"Los siguientes números están en uso:\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"El último número de cheque fue %s. Con el fin de evitar que un cheque sea " +"rechazado por el banco, sólo se puede utilizar un número mayor." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"El diario seleccionado está configurado para imprimir números de cheque. Si " +"sus cheques pre-impresos ya tienen números o si la numeración actual es " +"incorrecta, puede cambiarla en la página de configuración del diario." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Esta opción te permite imprimir los detalles de verificación (stub) en " +"varias páginas si no caben en una sola página." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"Esta opción le permite imprimir la etiqueta de fecha en el cheque según CPA.\n" +"Desactive esta opción si su cheque preimpreso incluye la etiqueta de fecha." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Esto permitirá guardar en los pagos el número del cheque correspondiente." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Quitar la marca de enviado" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Cheque vacío" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"Tiene que elegir un diseño de cheque. Para esto, vaya a configuración de " +"facturación/contabilidad, busque 'Diseño de cheques' y configure uno." diff --git a/addons/account_check_printing/i18n/es_PA.po b/addons/account_check_printing/i18n/es_PA.po new file mode 100644 index 00000000..c9dcd799 --- /dev/null +++ b/addons/account_check_printing/i18n/es_PA.po @@ -0,0 +1,273 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-09-07 15:54+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Spanish (Panama) (http://www.transifex.com/odoo/odoo-9/" +"language/es_PA/)\n" +"Language: es_PA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_journal.py:56 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:35 +#: code:addons/account_check_printing/account_payment.py:72 +#, python-format +msgid " and %s/100" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:81 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check printing payment method selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_journal_dashboard.py:23 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:101 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank " +"journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check " +"are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:98 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to " +"print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:114 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment " +"method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_journal.py:25 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:135 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its " +"configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "or" +msgstr "o" diff --git a/addons/account_check_printing/i18n/es_PE.po b/addons/account_check_printing/i18n/es_PE.po new file mode 100644 index 00000000..439ad457 --- /dev/null +++ b/addons/account_check_printing/i18n/es_PE.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Peru) (https://www.transifex.com/odoo/teams/41243/es_PE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "Nombre a Mostrar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Ultima Modificación en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Actualizado última vez por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Ultima Actualización" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/es_PY.po b/addons/account_check_printing/i18n/es_PY.po new file mode 100644 index 00000000..ef848671 --- /dev/null +++ b/addons/account_check_printing/i18n/es_PY.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Paraguay) (https://www.transifex.com/odoo/teams/41243/es_PY/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_PY\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Ultima actualización por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Ultima actualización en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/es_VE.po b/addons/account_check_printing/i18n/es_VE.po new file mode 100644 index 00000000..c54d9813 --- /dev/null +++ b/addons/account_check_printing/i18n/es_VE.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Spanish (Venezuela) (https://www.transifex.com/odoo/teams/41243/es_VE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es_VE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Creado en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "Mostrar nombre" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Modificada por última vez" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Última actualización realizada por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Ultima actualizacion en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/et.po b/addons/account_check_printing/i18n/et.po new file mode 100644 index 00000000..decb2774 --- /dev/null +++ b/addons/account_check_printing/i18n/et.po @@ -0,0 +1,437 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Rivo Zängov <eraser@eraser.ee>, 2020 +# Martin Trigaux, 2020 +# Arma Gedonsky <armagedonsky@hot.ee>, 2020 +# Egon Raamat <egon@avalah.ee>, 2020 +# Eneli Õigus <enelioigus@gmail.com>, 2020 +# Piia Paurson <piia@avalah.ee>, 2020 +# atriine <triine@avalah.ee>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: atriine <triine@avalah.ee>, 2021\n" +"Language-Team: Estonian (https://www.transifex.com/odoo/teams/41243/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": kontrolli järjestuse numbrit" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Summa sõnadega" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Tühista" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Tšeki number" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Tšeki printimine" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Tšeki printimise maksemeetod on valitud" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Tšeki järjestus" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Vali see, kui teie eelprinditud tšekid ei ole nummerdatud." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Tšekk printimiseks" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Tšekid" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Tšekkide numbrite järjestus." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Tšekid printimiseks" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Printmist ootavad tšekid" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Ettevõtted" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Seadistused" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Loonud" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Loodud" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Kuva nimi" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Mine seadistuste paneelile" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Selleks, et printida mitu tšeki korraga, peavad need kuuluma samasse " +"pangaandmikku." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Andmik" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Andmiku kanne" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Viimati muudetud (millal)" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Viimati uuendatud (kelle poolt)" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Viimati uuendatud" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Manuaalne nummerdamine" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Järgmise tšeki number" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Pole" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Maksemeetod" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Maksed" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "Selleks, et saaks maksed trükkida kui..." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Palun sisesta esimese eelprinditud tšeki number, mida soovite printiga." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Prindi" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Prindi tšekk" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Prindi tšekk" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Prindi eelnevalt nummerdatud tšekid" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Saadetud" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Järjestuse number järgmisel prinditaval tšekil." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "Pole vaja tõlkida, ei kasutata eestis" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Viimase tšeki number %s. Selleks, et vältida tšeki tagasilükkamist panga " +"poolt, kasuta kindlasti suuremat numbrit." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "Eestis ei kasutata." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "See võimaldab maksetele juurde salvestada vastava tšeki numbri." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Tühista märgistus \"Saadetud\"" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/eu.po b/addons/account_check_printing/i18n/eu.po new file mode 100644 index 00000000..f84a94f8 --- /dev/null +++ b/addons/account_check_printing/i18n/eu.po @@ -0,0 +1,434 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2021 +# Esther Martín Menéndez <esthermartin001@gmail.com>, 2021 +# Gorka Toledo <gorka.toledo@gmail.com>, 2021 +# Eneko <eastigarraga@codesyntax.com>, 2021 +# Mikel Lizarralde <mikellizarralde@gmail.com>, 2021 +# 61590936fa9bf290362ee306eeabf363_944dd10 <a8bfd5a0b49b9c8455f33fc521764cc3_680674>, 2021 +# Iñaki Ibarrola <inakiibarrola@yahoo.es>, 2021 +# Victor Laskurain <blaskurain@binovo.es>, 2021 +# Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Maialen Rodriguez <maialenrodriguez98@gmail.com>, 2021\n" +"Language-Team: Basque (https://www.transifex.com/odoo/teams/41243/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Zenbaki Sekuentzia Egiaztatu" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Hizkien kopurua" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Ezeztatu" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Zenbakia Egiaztatu" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Sekuentzia Egiaztatu" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Txekeak" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Enpresak" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurazio ezarpenak" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontaktua" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Nork sortua" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Noiz sortua" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Izena erakutsi" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Zoaz konfigurazio panelera" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Egunkaria" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Egunkari-sarrera" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Azken aldaketa" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Azkenengoz eguneratu zuena" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Azken eguneraketa noiz" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Eskuzko zenbaketa" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Datorren zenbakia egiaztatu" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Hutsa" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Ordainketa metodoa " + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Ordainketak" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Inprimatu" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Bidalia" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/fa.po b/addons/account_check_printing/i18n/fa.po new file mode 100644 index 00000000..1e691827 --- /dev/null +++ b/addons/account_check_printing/i18n/fa.po @@ -0,0 +1,444 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Hamid Darabi, 2020 +# elaheh pourrezaie <elaheh.pourrezaie@hotmail.com>, 2020 +# Hamed Mohammadi <hamed@dehongi.com>, 2020 +# Sepehr Khoshnood <sepehr.kho@gmail.com>, 2020 +# saeed raesi <saeed.raesi2020@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: saeed raesi <saeed.raesi2020@gmail.com>, 2021\n" +"Language-Team: Persian (https://www.transifex.com/odoo/teams/41243/fa/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fa\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "\\: کنترل توالی شماره" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "حاشیه چک های ایجاد شده را متناسب با تنظیمات چاپگر خود تنظیم کنید." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "مقدار به حروف" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "لغو" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "قالب چک" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "حاشیه چپ چک" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "شماره چک" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "چاپ چک" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "روش پرداخت پرینت برای چک انتخاب شده است" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "حاشیه راست چک" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "توالی چک" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "حاشیه بالا چک" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "اعداد وارد شده در چک فقط می توانند رقم باشند" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"اگر چک های از قبل چاپ شده شما شماره گذاری نشده است ، این گزینه را علامت " +"بزنید." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "چک برای پرینت" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "چکها" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "توالی شماره گذاری چک ها" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "چکهای برای پرینت" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "چکهای برای پرینت" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "شرکتها" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "تنظیمات پیکربندی" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "مخاطب" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "ایجاد توسط" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "ایجاد شده در" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "نام نمایشی" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "برو به صفحه پیکربندی" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "شناسه" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"برای چاپ همزمان چند فقره چک ، آنها باید به یک دفتر بانکی تعلق داشته باشند." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "دفتر" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "ثبت سند روزنامه" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "آخرین تغییر در" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "آخرین به روز رسانی توسط" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "آخرین به روز رسانی در" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "شماره دهی دستی" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "ته چک چند صفحه ای" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "شماره چک بعدی" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "شماره چک بعدی فقط باید شامل اعداد باشد." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "هیچکدام" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "روش پرداخت" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "پرداختها" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"پرداخت های چاپی به عنوان چک باید \"چک\" به عنوان روش پرداخت انتخاب شده باشد " +"و قبلاً مغایرت گیری نشده باشد" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"لطفاً شماره اولین چک از قبل چاپ شده را که می خواهید روی آن چاپ کنید وارد " +"کنید." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "روش پرداخت ترجیحی" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"روش پرداخت ترجیحی هنگام پرداخت این فروشنده. این برای فیلتر کردن صورتحساب های" +" فروشنده با روش پرداخت ترجیحی برای ثبت پرداخت به صورت انبوه استفاده می شود. " +"از موارد استفاده کنید: پرونده های بانکی را برای سیم های دسته ای ایجاد کنید ،" +" بررسی کنید." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "چاپ" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "چاپ چک" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "چاپ چکها" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "چاپ برچسب تاریخ" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "چاپ چکهای از پیش شمارهگذاری شده" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "حاشیه راست" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"قالب مربوط به برگه چک را که روی آن چاپ می کنید ، انتخاب کنید.\n" +"برای غیرفعال کردن ویژگی چاپ ، \"هیچکدام\" را انتخاب کنید." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "ارسال شد" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "شماره ترتیب چک چاپی بعدی." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "ارسال نشده" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/fi.po b/addons/account_check_printing/i18n/fi.po new file mode 100644 index 00000000..5c149381 --- /dev/null +++ b/addons/account_check_printing/i18n/fi.po @@ -0,0 +1,448 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Eino Mäkitalo <eino.makitalo@netitbe.fi>, 2020 +# Martin Trigaux, 2020 +# Kari Lindgren <kari.lindgren@emsystems.fi>, 2020 +# Miku Laitinen <miku.laitinen@gmail.com>, 2020 +# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2020 +# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2020 +# Marko Happonen <marko.happonen@sprintit.fi>, 2020 +# Tuomas Lyyra <tuomas.lyyra@legenda.fi>, 2020 +# Jussi Heikkilä <jussi.heikkila@panimo.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Jussi Heikkilä <jussi.heikkila@panimo.com>, 2020\n" +"Language-Team: Finnish (https://www.transifex.com/odoo/teams/41243/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr " : Shekkinumeron järjestys" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Määrä kirjoitettuna." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Peruuta" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Shekkinumero" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Shekkien tulostus" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Shekkijärjestys" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Valitse tämä, jos esipainetut shekinne eivät ole numeroituja." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Tulostettava shekki" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Shekit" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Shekkien numerointijärjestys" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Tulostettavat shekit" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Tulostettavat shekit" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Yritykset" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Konfiguraatioasetukset" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontakti" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Luonut" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Luotu" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Näyttönimi" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Mene asetusvalikkoon" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "Tunniste (ID)" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Voidaksesi tulostaa useamman shekin kerralla niiden on kuuluttava samaan " +"päiväkirjaan." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Päiväkirja" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Päiväkirjan kirjaus" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Viimeksi muokattu" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Viimeksi päivitetty" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Viimeksi päivitetty" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Manuaalinen numerointi" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Seuraava shekkinumero" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Ei mitään" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Maksutapa" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Maksut" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Maksut, jotka haluat maksaa tulostettavina shekkeinä, vaatii että 'Shekki' " +"on valittuna maksutapana ja maksut eivät saa olla täsmäytettyjä. " + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Syötä ensimmäisen valmiiiksi numeroidun shekin numero, jota olet " +"tulostamassa." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Tulosta" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Tulosta shekki" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Tulosta shekit" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Tulosta esinumeroidut shekit" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Lähetetty" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Seuraavan tulostettavan shekin järjestysnumero" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Tekninen ominaisuus, joka tietää onko shekkien tulostus maksutapana " +"käytössä." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Viimesimmän shekin numero on %s. Jotta pankki ei hylkäisi shekkiäsi, voit " +"käyttää ainoastaan tätä suurempia numeroita." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Tämä päiväkirja on asetettu tulostamaan shekkien numeroita. Jos sinulla on " +"käytössä valmiiksi numeroidut shekit ja nykyinen numerointi on pielessä, " +"voit muuttaa numeroinnin päiväkirjan konfigurointisivuilla." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Tämä mahdollistaa shekin numeron tallennuksen sitä vastaavaan maksuun." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Poistä lähetys-merkintä" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/fo.po b/addons/account_check_printing/i18n/fo.po new file mode 100644 index 00000000..9bbac650 --- /dev/null +++ b/addons/account_check_printing/i18n/fo.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Faroese (https://www.transifex.com/odoo/teams/41243/fo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Strika" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Byrjað av" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Byrjað tann" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "Vís navn" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Seinast rættað tann" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Seinast dagført av" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Seinast dagført tann" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/fr.po b/addons/account_check_printing/i18n/fr.po new file mode 100644 index 00000000..2c4ca483 --- /dev/null +++ b/addons/account_check_printing/i18n/fr.po @@ -0,0 +1,472 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Florian Laboureix <fll@odoo.com>, 2020 +# Moka Tourisme <hello@mokatourisme.fr>, 2020 +# Martin Trigaux, 2020 +# Aurélien Pillevesse <aurelienpillevesse@hotmail.fr>, 2020 +# Cécile Collart <cco@odoo.com>, 2020 +# Alain van de Werve <avw@openerp.com>, 2020 +# Guillaume Piens <gup@odoo.com>, 2020 +# Gilles Mangin <gilles.mangin@phidias.fr>, 2020 +# Fernanda Marques <fem@odoo.com>, 2020 +# Arnaud Willem <contact@arnaud-willem.eu>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Arnaud Willem <contact@arnaud-willem.eu>, 2020\n" +"Language-Team: French (https://www.transifex.com/odoo/teams/41243/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr " : Séquence du numéro de chèque" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Ajuster les marges des chèques générés aux paramètres de votre imprimante." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Montant en toutes lettres" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Annuler" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Format du chèque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Marge de gauche du chèque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Numéro de chèque" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Impression chèque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Mode de paiement choisi pour l'impression des chèques" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Marge de droite du chèque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Séquence chèque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Marge supérieure du chèque" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Le numéro de chèque ne peut être constitué que de chiffres" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Cochez cette option si vos chèques pré-imprimés ne sont pas numérotés." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Cochez pour imprimer" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Chèques" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Séquence de numérotation des chèques." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Chèques à imprimer" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Chèques à imprimer" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Sociétés" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Paramètres de config" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Contact" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Aller sur le panneau de configuration" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Afin d'imprimer plusieurs chèques à la fois, ils doivent appartenir au même " +"journal bancaire." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Journal" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Pièce comptable" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Numérotation manuelle" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Stub sur plusieurs pages" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Numéro de chèque suivant" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "Prochain numéro de chèque doit contenir" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Aucun" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Moyen de paiement" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Paiements" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Les paiements à imprimer en tant que chèques doivent avoir \"Chèque\" de " +"sélectionner comme méthode de paiement et ne doivent pas être déjà lettrés" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Veuillez entrer le numéro du premier chèque pré-imprimé sur lequel vous êtes" +" sur le point d'imprimer." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Mode de paiement préféré" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Mode de paiement préféré pour ce fournisseur. Ceci est utilisé pour trier " +"les factures fournisseurs par mode de paiement et enregistrer des paiements " +"en masse. Cas d'utilisation : création de fichiers de virement bancaires, " +"impression de chèques." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimer" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Imprimer un chèque" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Imprimer les chèques" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Imprimer l'étiquette de date" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Imprimer les chèques pré-numérotés" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Marge de Droite" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Choisissez le format de vos chèques.\n" +"Pour désactiver la fonctionnalité d'impression, choisissez \"Aucun\"." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Envoyé" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Numéro de séquence du prochain chèque imprimé." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Une erreur s'est produite lors de la mise en page du chèque, merci de " +"sélectionner une autre mise en page dans les paramètre Facturation / " +"Comptabilité et de réessayer." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Fonction technique utilisée afin de savoir si l'impression du chèque a été " +"activée comme méthode de paiement." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"Les numéros suivants sont déjà utilisés :\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Le dernier numéro de chèque était %s. Afin d'éviter qu'un chèque ne soit " +"refusé par la banque, vous ne pouvez utiliser qu'un numéro plus grand." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Le journal sélectionné est configuré pour imprimer les numéros de chèques. " +"Si votre chèque pré-imprimé a déjà un numéro ou si la numérotation existante" +" est mauvaise, vous pouvez la changer dans la page de configuration du " +"journal." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Cette option permet d'imprimer les éléments (talons) sur plusieurs pages si " +"ceux-ci ne tiennent pas sur une page." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"Cette option vous permet d'imprimer un champ de date sur le chèque, selon le" +" CPA. Elle peut être déactivée si les chèques pré-imprimés le prévoient " +"déjà." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Ceci permettra de sauvegarder sur les paiements le numéro du chèque " +"correspondant. " + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Décochez ceux qui ont été envoyés" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Chèque annulé" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"Vous devez sélectionner une mise en page pour vos chèques. Pour faire cette " +"sélection, allez dans les paramètres Facturation / Comptabilité, et " +"choisissez-en une dans le réglage \"Mise en page des chèques\"." diff --git a/addons/account_check_printing/i18n/fr_BE.po b/addons/account_check_printing/i18n/fr_BE.po new file mode 100644 index 00000000..c798ec0f --- /dev/null +++ b/addons/account_check_printing/i18n/fr_BE.po @@ -0,0 +1,273 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-09-07 15:53+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: French (Belgium) (http://www.transifex.com/odoo/odoo-9/" +"language/fr_BE/)\n" +"Language: fr_BE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_journal.py:56 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:35 +#: code:addons/account_check_printing/account_payment.py:72 +#, python-format +msgid " and %s/100" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:81 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check printing payment method selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_journal_dashboard.py:23 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:101 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank " +"journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Derniere fois mis à jour par" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Dernière mis à jour le" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check " +"are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:98 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to " +"print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:114 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment " +"method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_journal.py:25 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:135 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its " +"configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "or" +msgstr "" diff --git a/addons/account_check_printing/i18n/fr_CA.po b/addons/account_check_printing/i18n/fr_CA.po new file mode 100644 index 00000000..b53363f4 --- /dev/null +++ b/addons/account_check_printing/i18n/fr_CA.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: French (Canada) (https://www.transifex.com/odoo/teams/41243/fr_CA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr_CA\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Annuler" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Créé par" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Créé le" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "Nom affiché" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "Identifiant" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Dernière modification le" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Dernière mise à jour par" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Dernière mise à jour le" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimer" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/gl.po b/addons/account_check_printing/i18n/gl.po new file mode 100644 index 00000000..402f51de --- /dev/null +++ b/addons/account_check_printing/i18n/gl.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Galician (https://www.transifex.com/odoo/teams/41243/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Creado o" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Última actualización de" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/gu.po b/addons/account_check_printing/i18n/gu.po new file mode 100644 index 00000000..2708e372 --- /dev/null +++ b/addons/account_check_printing/i18n/gu.po @@ -0,0 +1,391 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2018 +# Turkesh Patel <turkesh4friends@gmail.com>, 2018 +# Dharmraj Jhala <dja@openerp.com>, 2018 +# Divya Pandya <dia@odoo.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Divya Pandya <dia@odoo.com>, 2018\n" +"Language-Team: Gujarati (https://www.transifex.com/odoo/teams/41243/gu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: gu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:63 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "રદ કરો" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "કંપનીઓ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__country_code +msgid "Company Country code" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "બનાવનાર" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +msgid "Display Name" +msgstr "પ્રદર્શન નામ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +msgid "ID" +msgstr "ઓળખ" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:84 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "રોજનામું" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "None" +msgstr "કશું નંહિ" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments__check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "ચૂકવણીઓ" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:81 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "છાપો" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:94 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register Payments" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__country_code +msgid "" +"The ISO country code in two chars. \n" +"You can use this field for quick search." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA. " +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:116 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Apps, search for 'Checks " +"layout' and install one." +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check in middle" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check on bottom" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check on top" +msgstr "" diff --git a/addons/account_check_printing/i18n/he.po b/addons/account_check_printing/i18n/he.po new file mode 100644 index 00000000..5024e1f4 --- /dev/null +++ b/addons/account_check_printing/i18n/he.po @@ -0,0 +1,435 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Moshe Flam <pashute@gmail.com>, 2020 +# Yihya Hugirat <hugirat@gmail.com>, 2020 +# שהאב חוסיין <shhab89@gmail.com>, 2020 +# דודי מלכה <Dudimalka6@gmail.com>, 2020 +# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2020 +# Amit Spilman <amit@laylinetech.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Amit Spilman <amit@laylinetech.com>, 2020\n" +"Language-Team: Hebrew (https://www.transifex.com/odoo/teams/41243/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr " : מספר שיק" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "סכום במילים" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "בטל" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "שוליים שמאליים של השיק" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "מספר המחאה" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "הדפסת שיק" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "שוליים ימניים של שיק" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "רצף מספרי של שיקים" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "שוליים עליונים של שיק" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "סמן אפשרות זו אם ההמחאות שהודפסו מראש אינן ממוספרות." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "שיק להדפסה" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "שיקים" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "הרצף המספרי של שיקים" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "שיקים להדפסה" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "שיקים להדפסה" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "חברות" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "הגדר הגדרות" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "צור קשר" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "נוצר ע\"י" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "נוצר ב-" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "שם תצוגה" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "לך לפאנל ההגדרות" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "מזהה" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "כדי להדפיס שיקים מרובים בבת אחת, עליהם להיות שייכים לאותו יומן בנק." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "יומן" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "פקודת יומן" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "שונה לאחרונה ב - " + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "עודכן לאחרונה ע\"י" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "עדכון אחרון ב" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "מספור ידני" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "מספר השיק הבא" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "מספר השיק הבא צריך להכיל מספרים בלבד." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "ללא" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "אמצעי תשלום" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "תשלומים" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "בבקשה להקליד את מספר השיק המודפס שאתה רוצה להדפיס עלוי" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "הדפס" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "הדפס שיק" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "הדפס שיקים" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "הדפס תווית תאריך" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "הדפס שיקים ממוספרים מראש" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "שוליים ימניים" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "נשלח" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "מספר רץ של השיק המודפס הבא" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "תכונה טכנית המשמשת לדעת אם הדפסת השיקים מופעלת כאמצעי תשלום." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"מספר השיק האחרון היה %s. על מנת למנוע את דחיית השיק על ידי הבנק, עליך לבחור " +"מספר גבוה יותר." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"יומן זה הותאם כך שידפיס מספרי שיקים. אם קיימים כבר מספרים על נייר ההדפסה או " +"אם המספור כעת אינו נכון, אפשר לשנות זאת בהגדרות היומן." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "מאפשר לרשום את מספר השיק בשורת התשלום." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "הורד סימון כנשלח" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/hi.po b/addons/account_check_printing/i18n/hi.po new file mode 100644 index 00000000..34f8fd6d --- /dev/null +++ b/addons/account_check_printing/i18n/hi.po @@ -0,0 +1,426 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Martin Trigaux, 2021\n" +"Language-Team: Hindi (https://www.transifex.com/odoo/teams/41243/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "रद्द" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "प्रिंट" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/hr.po b/addons/account_check_printing/i18n/hr.po new file mode 100644 index 00000000..b542fc17 --- /dev/null +++ b/addons/account_check_printing/i18n/hr.po @@ -0,0 +1,434 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Bole <bole@dajmi5.com>, 2020 +# Vladimir Olujić <olujic.vladimir@storm.hr>, 2020 +# Karolina Tonković <karolina.tonkovic@storm.hr>, 2020 +# Tina Milas, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Tina Milas, 2020\n" +"Language-Team: Croatian (https://www.transifex.com/odoo/teams/41243/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Provjerite brojvni krug" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Iznos slovima" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Odustani" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Broj čeka" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Ispis čekova" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Brojevni krug čekova" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Ček za ispis" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Kontrole" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Brojevni krug čekova" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Čekovi za ispis" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Čekovi za ispis" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Tvrtke" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Postavke" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Kreirao" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Kreirano" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Naziv" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Idi na ploču za konfiguriranje" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Kako bi mogli ispisati više čekova odjednom, oni moraju biti u istom " +"bankovnom dnevniku." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Temeljnica" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Zadnja promjena" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Promijenio" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Vrijeme promjene" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Ručno numeriranje" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Sljedeći broj čeka" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Ništa" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Način plaćanja" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Plaćanja" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Ispis" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Ispiši ček" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Ispiši čekove" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Ispiši pred-numerirane čekove" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Poslano" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Slijedni broj na sljedećem ispisanom čeku" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Zadnji broj čeka bio je %s. Kako Vam banka ne bi odbacila ček, možete samo " +"koristiti veći broj." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Odznači poslano" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/hu.po b/addons/account_check_printing/i18n/hu.po new file mode 100644 index 00000000..eef6dbf6 --- /dev/null +++ b/addons/account_check_printing/i18n/hu.po @@ -0,0 +1,453 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2021 +# krnkris, 2021 +# Tamás Németh <ntomasz81@gmail.com>, 2021 +# gezza <geza.nagy@oregional.hu>, 2021 +# Ákos Nagy <akos.nagy@oregional.hu>, 2021 +# A . <tiboreu@protonmail.com>, 2021 +# Zsolt Godó <zsolttokio@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Zsolt Godó <zsolttokio@gmail.com>, 2021\n" +"Language-Team: Hungarian (https://www.transifex.com/odoo/teams/41243/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr " : Csekk szám sorrendje" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"a létrehozott csekkek margóinak igazítása a printer beállításoknak " +"megflelően." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Összeg szavakkal" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Visszavonás" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Csekk elrendezése" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Csekk szám" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Csekk nyomtatás" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Csekk fizetési mód nyomtatás kiválasztva" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Csekk sorrend" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Válassza ezt a lehetőséget ha az előre kinyomtatott csekkjei nincsenek " +"sorszámozva." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Nyomtatásra váró csekk" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Ellenőrzések" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Csekkek sorszámozási sorrendje" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Nyomtatásra váró csekkek" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Nyomtatásra váró csekkek" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Vállalatok" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Beállítások módosítása" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kapcsolat" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Létrehozta" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Létrehozva" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Név megjelenítése" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Menjen a beállítások panelhez" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "Azonosító" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Több csekk egyszeri kötegelt nyomtatásához a csekkeknek azonos banki " +"naplóhoz kell tartozniuk." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Napló" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Könyvelési tétel" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Legutóbb módosítva" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Frissítette" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Frissítve " + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Kézi sorszámozás" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Több-oldalas csekk szelvény" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Következő csekk száma" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Nincs" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Fizetési mód" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Vevői befizetések" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Csekkel történő kifizetéshez a kifizetés módjának 'Csekk' kell legyen, és " +"még nem szabad lekönyveltetnek lennie" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "Kérem adja meg az első, elő-nyomtatásra szánt csekk számát." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Nyomtatás" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Csekk nyomtatása" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Csekkek nyomtatása" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Előre számozott csekkek nyomtatása" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Válassza a csekk papírral megegyező formátumot, melyre a csekket nyomtatni fogja.\n" +"A nyomtatási tulajdonság kikapcsolásához válassza az 'Nincs' -et." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Elküldött" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "A következő nyomtatandó csekk sorszáma." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Műszaki tulajdonság annak ismertetésére, hogy a csekk nyomtatás fizetési " +"módként került beállításra." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Az utolsó csekkszám ez volt %s. Annak elkerülésére, hogy a bank ne elfogadja" +" a csekket, csak nagyobb számot haználhat." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"A kiválasztott napló a csekkszámok nyomtatására használja. Ha az előre " +"nyomtatott csekkek papírja már tartalmaz számokat, vagy ha a jelenlegi " +"számozás nem megfelelő, Akkor azt megváltoztathatja a napló beállításai " +"oldalán." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Ez az opció lehetővé teszi a csekk részletek (szelvény) kinyomtatását több " +"oldalra, ha nem fér rá egyre." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Ez lehetővé teszi a kifizetéseken rögzíteni az idevonatkozó csekk számait." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Jelöletlen elküldve" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/id.po b/addons/account_check_printing/i18n/id.po new file mode 100644 index 00000000..9214a2e9 --- /dev/null +++ b/addons/account_check_printing/i18n/id.po @@ -0,0 +1,448 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# William Surya Permana <zarambie_game@yahoo.com>, 2020 +# Martin Trigaux, 2020 +# Wahyu Setiawan <wahyusetiaaa@gmail.com>, 2020 +# pnyet <david@zeromail.us>, 2020 +# Andhitia Rama <andhitia.r@gmail.com>, 2020 +# Bonny Useful <bonny.useful@gmail.com>, 2020 +# rahman hakim <alif_rahman76@yahoo.com>, 2020 +# Ryanto The <ry.the77@gmail.com>, 2020 +# Ikhsanul Wirsa <iwirsa02@outlook.co.id>, 2020 +# whenweresober <gulmugurzu@yevme.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: whenweresober <gulmugurzu@yevme.com>, 2020\n" +"Language-Team: Indonesian (https://www.transifex.com/odoo/teams/41243/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Nomor Urut Cek" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Jumlah dalam kata" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Batal" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Periksa tata letak" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Nomor cek" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Mencetak cek" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Metode Pembayaran Cetak Cek Dipilih" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "rangkaian cek" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Centang opsi jika cek Anda yang belum dicetak tidak bernomor." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Cek yang akan dicetak" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Cek" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Rangkaian penomoran cek" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Cek yang akan dicetak" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Cek yang akan dicetak" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Perusahaan" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Pengaturan Konfigurasi" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontak" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Dibuat oleh" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Dibuat pada" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Nama Tampilan" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Ke panel konfigurasi" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Untuk mencetak banyak cek dalam sekali cetak, cek-cek tersebut harus berada " +"dalam jurnal bank yang sama." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Jurnal" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Entri Jurnal" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Terakhir diubah pada" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Terakhir diperbarui oleh" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Terakhir diperbarui pada" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Penomoran manual" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Nomor Cek berikutnya" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Tidak Ada" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Metode Pembayaran" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Pembayaran" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Pembayaran yang akan dicetak sebagai cek harus memastikan 'Cek' dipilih " +"sebagai metode pembayaran dan belum pernah direkonsiliasi" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "Mohon masukkan nomor cek belum tercetak yang ingin Anda cetak." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Cetak" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Cetak Cek" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Cetak Cek" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Cetak Cek yang Belum Bernomor" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Terkirim" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Nomor rangkaian dari cek yang hendak dicetak selanjutnya." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Fitur teknis yang digunakan untuk mengetahui apakah pencetakan cek " +"diaktifkan sebagai metode pembayaran." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Nomor cek terakhir adalah %s. Untuk menghindari cek ditolak oleh bank, Anda " +"hanya dapat menggunakan nomor yang lebih besar." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Jurnal yang dipilih diatur untuk mencetak nomor cek. Jika lembaran cek belum" +" tercetak Anda memiliki nomor atau jika penomoran saat ini salah, Anda dapat" +" mengubahnya pada halaman pengaturan jurnal." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Ini akan memperbolehkan Anda untuk menyimpan nomor cek berkenaan pada " +"pembayaran." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Hilangkan Tanda Terkirim" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/is.po b/addons/account_check_printing/i18n/is.po new file mode 100644 index 00000000..476cc8d8 --- /dev/null +++ b/addons/account_check_printing/i18n/is.po @@ -0,0 +1,393 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2018 +# Birgir Steinarsson <biggboss83@gmail.com>, 2018 +# Bjorn Ingvarsson <boi@exigo.is>, 2018 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-08-24 09:15+0000\n" +"Last-Translator: Bjorn Ingvarsson <boi@exigo.is>, 2018\n" +"Language-Team: Icelandic (https://www.transifex.com/odoo/teams/41243/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:63 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Hætta við" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Fyrirtæki" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__country_code +msgid "Company Country code" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Búið til af" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Stofnað þann" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +msgid "Display Name" +msgstr "Nafn" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +msgid "ID" +msgstr "Auðkenni" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:84 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Færslubók" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +msgid "Last Modified on" +msgstr "Síðast breytt þann" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Síðast uppfært af" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Síðast uppfært þann" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "None" +msgstr "Ekkert" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments__check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Greiðslur" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:81 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Prenta" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:94 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register Payments" +msgstr "Register Payments" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__country_code +msgid "" +"The ISO country code in two chars. \n" +"You can use this field for quick search." +msgstr "" +"The ISO country code in two chars. \n" +"You can use this field for quick search." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA. " +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:116 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Apps, search for 'Checks " +"layout' and install one." +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check in middle" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check on bottom" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check on top" +msgstr "" diff --git a/addons/account_check_printing/i18n/it.po b/addons/account_check_printing/i18n/it.po new file mode 100644 index 00000000..b2f23301 --- /dev/null +++ b/addons/account_check_printing/i18n/it.po @@ -0,0 +1,457 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Paolo Valier, 2020 +# Francesco Arillotta <frarillotta@gmail.com>, 2020 +# Léonie Bouchat <lbo@odoo.com>, 2020 +# Federico Castellano <castellano.federico@outlook.com>, 2020 +# Sergio Zanchetta <primes2h@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2021\n" +"Language-Team: Italian (https://www.transifex.com/odoo/teams/41243/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": sequenza numero assegno" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Regola i margini degli assegni generati per adattarli alle impostazioni " +"della stampante." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Importo in lettere" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Annulla" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Struttura assegno" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Margine sinistro assegno" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Numero assegno" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Stampa assegno" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Metodo di pagamento di stampa degli assegni selezionato" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Margine destro assegno" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Sequenza assegno" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Margine superiore assegno" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Selezionare l'opzione se gli assegni prestampati non sono numerati." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Assegno da stampare" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Assegni" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Sequenza di numerazione assegni. " + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Assegni da stampare" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Assegni da stampare" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Aziende" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Impostazioni di configurazione" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Contatto" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Creato da" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Data creazione" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Nome visualizzato" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Vai al pannello di configurazione" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Per stampare insieme assegni multipli, questi devono appartenere allo stesso" +" registro banca." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Registro" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Registrazione contabile" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Ultima modifica il" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Ultimo aggiornamento di" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Ultimo aggiornamento il" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Numerazione manuale" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Stub su più pagine" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Numero prossimo assegno" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Nessuna" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Metodo di pagamento" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Pagamenti" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"I pagamenti da stampare come assegni devono avere il metodo di pagamento " +"\"Assegno\" selezionato e non devono già essere riconciliati" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Inserisci il numero del primo assegno prestampato sul quale stai per " +"stampare." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Metodo di pagamento preferito" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Metodo preferito per il pagamento del fornitore. Usato per filtrare le " +"fatture fornitore in base al metodo preferito per registrare pagamenti " +"massivi. Casi d'uso: creazione file bancari per bonifici raggruppati, " +"processi di verifica." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Stampa" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Stampa assegno" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Stampa assegni" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Stampare etichetta data" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Stampare assegni prenumerati" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Margine destro" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Selezionare il formato corrispondente alla carta da usare per stampare gli assegni.\n" +"Per disattivare la funzionalità di stampa, scegliere \"Nessuna\"." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Inviata" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Numero di sequenza del prossimo assegno stampato." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Funzionalità tecnica utilizzata per sapere se la stampa degli assegni è " +"stata abilitata come metodo di pagamento." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"L'ultimo numero di assegno era %s. Per evitare che un assegno venga " +"rifiutato dalla banca, è possibile utilizzare solo un numero più grande." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Il registro selezionato è configurato per stampare i numeri di assegno. Se " +"l'assegno prestampato ha già un numero o se la numerazione esistente è " +"sbagliata, è possibile cambiarla nella pagina di configurazione del " +"registro." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Questa opzione ti permette di stampare i dettagli dell'assegno (matrice) su " +"più pagine se non entrano in una sola pagina." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Ciò consentirà di salvare sui pagamenti il numero dell'assegno " +"corrispondente. " + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Deseleziona inviato" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/ja.po b/addons/account_check_printing/i18n/ja.po new file mode 100644 index 00000000..268b34f6 --- /dev/null +++ b/addons/account_check_printing/i18n/ja.po @@ -0,0 +1,439 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Shunho Kin <s-kin@shonan-innovation.co.jp>, 2020 +# Martin Trigaux, 2020 +# Yoshi Tashiro <tashiro@roomsfor.hk>, 2020 +# 高木正勝 <masakatsu.takagi@pro-spire.co.jp>, 2020 +# Noma Yuki, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Noma Yuki, 2020\n" +"Language-Team: Japanese (https://www.transifex.com/odoo/teams/41243/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ":番号順をチェック" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "プリンタの設定に合うように生成された小切手の余白を調整します。" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "金額の文字表記" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "取消" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "小切手のレイアウト" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "小切手の左マージン" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "小切手の番号" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "小切手の印刷" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "小切手印刷決済方法が選択済" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "小切手の右マージン" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "小切手のシーケンス" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "小切手の上余白" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "小切手番号は数字のみが使えます。" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "印刷済の小切手が番号付けされていない場合は、このオプションをチェックしてください。" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "印刷対象の小切手" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "小切手" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "小切手の番号シーケンス" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "印刷する小切手" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "印刷する小切手" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "会社" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "コンフィグ設定" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "連絡先" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "作成者" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "作成日" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "表示名" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "設定パネルに移動" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "一度に複数の小切手を印刷するためには、同じ銀行の台帳に属している必要があります。" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "仕訳帳" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "仕訳" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "最終更新日" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "最終更新者" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "最終更新日" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "手動番号割当" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "マルチページをチェックするスタブ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "次の小切手番号" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "次の小切手番号は数字だけであるべきです。" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "なし" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "支払方法" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "支払" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "小切手を支払い方法として選択する場合は、支払い方法に'小切手'を選択していると共に、未消込みである必要があります。" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "印刷したい最初の印刷済み小切手の番号を入力してください。" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "優先お支払い方法" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"このベンダーを支払う際に支払い方法を好適。これは、質量の支払いを登録するために好適な支払方法によってフィルタベンダー紙幣に使用されます。ユースケースは:バッチワイヤ、チェックを実行するために銀行のファイルを作成します。" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "印刷" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "小切手印刷" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "印刷チェック" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "印刷日付ラベル" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "前の番号のチェックを印刷" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "右マージン" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"あなたの小切手に印刷される小切手用紙に対応するフォーマットを選択します。\n" +"印刷機能を無効にするためには、'なし'を選択。" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "送信済" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "次に印刷された小切手のシーケンス番号。" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "チェックレイアウトにて何か問題が起きました、請求書発行/会計設定で別のレイアウトを選択して、もう一度お試しください。" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "小切手印刷が支払い方法として有効であったかどうかを知るために使用される機能です。" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"次の番号は、すでに使用されています:\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "最後のチェックの数は%sでした。銀行によって却下された小切手の利用を回避するために、より大きな番号を使用することができます。" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"選択された台帳は、小切手番号を印刷するように構成されています。印刷済みの小切手用紙は、既に番号を持っているか、現在の番号が間違っている場合は、ジャーナルの設定ページで変更できます。" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "このオプションは、それらが単一ページに収まらない場合は、複数ページのチェックの詳細情報(スタブ)を印刷することができます。" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"このオプションにより、CPAごとに小切手へ日付ラベルを印刷することができます。\n" +"印刷済の小切手台紙に日付ラベルが含まれている場合、無効にしてください。" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "これは、支払いに対応する小切手の数を節約することができます。" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "送付済みを選択解除" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "無効な小切手" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"あなたが小切手のレイアウトを選択する必要があります。このため、'小切手のレイアウト'とセット1を検索し、請求書発行/会計セッティングに行きます。" diff --git a/addons/account_check_printing/i18n/ka.po b/addons/account_check_printing/i18n/ka.po new file mode 100644 index 00000000..72b053e8 --- /dev/null +++ b/addons/account_check_printing/i18n/ka.po @@ -0,0 +1,431 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Davit Matchakhelidze <david.machakhelidze@gmail.com>, 2021 +# Mari Khomeriki <mari.khomeriki@maxinai.com>, 2021 +# Saba Khmaladze <skhmaladze@uglt.org>, 2021 +# Martin Trigaux, 2021 +# Temur, 2021 +# Giorgi Melitauri <gmelitauri@live.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Giorgi Melitauri <gmelitauri@live.com>, 2021\n" +"Language-Team: Georgian (https://www.transifex.com/odoo/teams/41243/ka/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ka\n" +"Plural-Forms: nplurals=2; plural=(n!=1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "გაუქმება" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "კომპანიები" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "კონფიგურაციის პარამეტრები" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "კონტაქტი" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "შემქმნელი" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "შექმნის თარიღი" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "სახელი" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "იდენტიფიკატორი/ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "ჟურნალი" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "ბოლოს განახლებულია" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "ბოლოს განაახლა" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "ბოლოს განახლდა" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "არცერთი" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "გაგზავნილი" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/kab.po b/addons/account_check_printing/i18n/kab.po new file mode 100644 index 00000000..91c0502a --- /dev/null +++ b/addons/account_check_printing/i18n/kab.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Kabyle (https://www.transifex.com/odoo/teams/41243/kab/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: kab\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Sefsex" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Yerna-t" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Yerna di" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "Asulay" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Aleqqem aneggaru di" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Aleqqem aneggaru sɣuṛ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Aleqqem aneggaru di" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Siggez" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/km.po b/addons/account_check_printing/i18n/km.po new file mode 100644 index 00000000..754cc10b --- /dev/null +++ b/addons/account_check_printing/i18n/km.po @@ -0,0 +1,442 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Sengtha Chay <sengtha@gmail.com>, 2020 +# Lux Sok <sok.lux@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2020\n" +"Language-Team: Khmer (https://www.transifex.com/odoo/teams/41243/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "ពិនិត្យមើតួលេខស្នើរ" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"កែតម្រូវរឹមនៃការត្រួតពិនិត្យដែលបានបង្កើតដើម្បីឱ្យវាសមនឹងការកំណត់នៃម៉ាស៊ីនបោះពុម្ពរបស់អ្នក។" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "ចំនួនពាក្យ" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "លុបចោល" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "ពិនិត្យមើលប្លង់" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "ការពិនិត្យមើលរឹមតួអក្សរខាងឆ្វេង" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "ការពិនិត្យមើលតួលេខ" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "ពិនិត្យមើលកំពុងព្រីនចេញ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "ការពិនិត្យមើលពេលព្រីនចេញ សម្រាប់ការជ្រើសរើសរើយុទ្ឋសាស្រ្ត" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "ការពិនិត្យមើលរឹមខាងស្តាំ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "ការពិនិត្យមើលផលបូកស្មើគ្នា" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "ការពិនិត្យមើលរឹមបន្ទាប់ខាងលើ" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"ត្រូវពិនិត្យមើលការជម្រើសនេះប្រសិនបើការត្រួតពិនិត្យដែលបានបោះពុម្ពមុនរបស់អ្នកមិនត្រូវបានបង់លេខរៀង។" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "ពិនិត្យមើលការបោះពុម្ព" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "ការត្រួតពិនិត្យ" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "ពិនិត្យមើលលេខស្មើរ" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "ពិនិត្យមើលការបោះពុម្ព" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "ពិនិត្យមើលការបោះពុម្ពចេញ" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "ក្រុមហ៊ុន" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "កំណត់រចនាសម្ព័ន្ធ" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "ទំនាក់ទំនង" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "បង្កើតដោយ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "បង្កើតនៅ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "ឈ្មោះសំរាប់បង្ហាញ" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "ចូលទៅផ្ទាំងការតំឡើង" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "អត្តសញ្ញាណ" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"ក្នុងគោលបំណងដើម្បីបោះពុម្ពការត្រួតពិនិត្យច្រើនក្នុងពេលតែមួយពួកគេត្រូវតែស្ថិតនៅក្នុងទស្សនាវដ្តីធនាគារដូចគ្នា។" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "ទិនានុប្បវត្តិ" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "ការចុះទិន្នានុប្បរត្ត" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "ផ្លាស់ប្តូរចុងក្រោយ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "លេខរៀង" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "ពិនិត្យពហុទំព័រ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "លេខត្រួតពិនិត្យបន្ទាប់" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "គ្មាន" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "យុទ្ឋសាស្រ្តបង់ប្រាក់" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "ការបង់ប្រាក់" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"ការទូទាត់ដើម្បីបោះពុម្ពដូចជាការត្រួតពិនិត្យមួយត្រូវតែមាន 'ពិនិត្យ' " +"ដែលបានជ្រើសជាវិធីសាស្រ្តទូទាត់និងមិនត្រូវបានគេផ្សះផ្សាគ្នារួចទៅហើយ" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "សូមបញ្ចូលលេខនៃការពិនិត្យដែលបានបោះពុម្ពដំបូងដែលអ្នកត្រៀមនឹងបោះពុម្ព។" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "បោះពុម្ព" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "ការត្រួតពិនិត្យការបោះពុម្ព" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "ការពិនិត្យមើលការបោះពុម្ពចេញ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "ការពិនិត្យមើលកាលបរិច្ឆេទនិងទម្រង់" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "ការពិនិត្យមើលលើលេខដែលត្រួវបោះពុម្ព" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "រឹមខាងស្តំា" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"ជ្រើសទ្រង់ទ្រាយដែលត្រូវគ្នានឹងក្រដាសពិនិត្យដែលអ្នកនឹងបោះពុម្ពការត្រួតពិនិត្យរបស់អ្នក។" +" ដើម្បីបិទលក្ខណៈពិសេសការបោះពុម្ពសូមជ្រើស 'គ្មាន' ។" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "បានផ្ងើរ" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "ចំនួនលំដាប់នៃការពិនិត្យបោះពុម្ពបន្ទាប់។" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"លក្ខណៈបច្ចេកទេសត្រូវបានបើកដំណើរការក្នុងកាត្រូតពិនិត្យសំរាប់ការបោះពុម្ពក្នុងវិធីសាស្រ្តបង់ប្រាក់" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"លេខត្រួតពិនិត្យចុងក្រោយគឺ%sដើម្បីជៀសវាងការត្រួតពិនិត្យដែលត្រូវបានបដិសេធដោយធនាគារអ្នកអាចប្រើបានតែលេខធំជាង។" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"ទិនានុប្បវត្តិដែលបានជ្រើសត្រូវបានកំណត់រចនាសម្ព័ន្ធដើម្បីបោះពុម្ពលេខត្រួតពិនិត្យ។" +" " +"ប្រសិនបើក្រដាសពិនិត្យមុនរបស់អ្នកមានលេខឬលេខរៀងបច្ចុប្បន្នអ្នកអាចប្តូរវានៅក្នុងទំព័រកំណត់រចនាសម្ព័ន្ធទិនានុប្បវត្តិ។" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"ជម្រើសនេះអនុញ្ញាតឱ្យអ្នកបោះពុម្ពពត៌មានលំអិតត្រួតពិនិត្យ (stub) " +"នៅលើទំព័រច្រើនប្រសិនបើវាមិនសមនឹងទំព័រតែមួយ។" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"នេះនឹងអនុញ្ញាតឱ្យសន្សំលើចំនួនការទូទាត់តាមចំនួននៃការពិនិត្យដែលត្រូវគ្នា។" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "សញ្ញាសម្គាល់មិនបានផ្ញើ" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/ko.po b/addons/account_check_printing/i18n/ko.po new file mode 100644 index 00000000..ef530036 --- /dev/null +++ b/addons/account_check_printing/i18n/ko.po @@ -0,0 +1,429 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# JH CHOI <hwangtog@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: JH CHOI <hwangtog@gmail.com>, 2020\n" +"Language-Team: Korean (https://www.transifex.com/odoo/teams/41243/ko/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr " : 번호 순서 확인" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "생성된 수표의 여백을 프린터의 설정과 일치하도록 조정하십시오" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "글로 쓴 금액" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "취소" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "수표 모양" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "수표 왼쪽 여백" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "수표 번호" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "수표 인쇄하기" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "선택한 결제 방식으로 수표 인쇄하기" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "수표 오른쪽 여백" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "수표 순서" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "수표 위쪽 여백" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "미리 인쇄된 수표에 번호가 없는 경우 이 옵션을 선택하십시오." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "수표 인쇄" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "검사" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "수표 번호 부여 순서입니다." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "인쇄할 수표" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "인쇄할 수표" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "회사들" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "설정 구성" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "연락처" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "작성자" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "작성일" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "이름 표시" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "구성 패널로 이동하기" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "한 번에 여러 수표를 인쇄하려면 은행 계좌가 동일해야 합니다." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "분개장" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "분개" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "최근 수정" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "최근 갱신한 사람" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "최근 갱신 날짜" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "수동으로 번호 부여" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "여러 매용 수표 스텁 확인" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "다음 수표 번호" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "다음 수표 번호는 숫자만 포함해야 합니다." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "없음" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "지급 방법" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "지급금" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "수표로 지불하려면 '수표'를 선택해야 하지만 아직 조정되지 않았습니다." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "인쇄할 첫 번째 미리 인쇄된 수표 번호를 입력하십시오." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "인쇄" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "수표 인쇄" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "수표 인쇄" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "날짜 꼬리표 인쇄" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "번호가 사전에 매겨진 수표 인쇄" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "오른쪽 여백" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "수표 용지에 인쇄 할 형식을 선택하십시오. 인쇄 기능을 사용하지 않으려면 '없음'을 선택하십시오." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "전송됨" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "다음에 인쇄된 수표의 일련 번호" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "수표 인쇄가 수표로 사용 가능한지 확인하는 데 사용되는 기술 기능입니다." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "마지막 수표 번호는 %s. 수표가 은행에서 거절된 경우 약간 큰 번호를 사용할 수 있습니다." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"선택한 분개장은 수표 번호를 인쇄하도록 구성되어 있습니다. 미리 인쇄된 수표에 이미 번호가 있거나 현재 번호가 잘못되어 있으면 분개장 " +"구성 페이지에서 수정할 수 있습니다." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "이 옵션을 사용하면 여러 페이지가 한 페이지에 들어 가지 않는 경우 체크 세부 사항(스텁)을 인쇄 할 수 있습니다." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "이렇게 하면 지불 수표 금액을 절약 할 수 있습니다." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "전송 취소 표시" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/lb.po b/addons/account_check_printing/i18n/lb.po new file mode 100644 index 00000000..57ccb5eb --- /dev/null +++ b/addons/account_check_printing/i18n/lb.po @@ -0,0 +1,386 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~12.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2019-09-23 11:32+0000\n" +"PO-Revision-Date: 2019-08-26 09:08+0000\n" +"Language-Team: Luxembourgish (https://www.transifex.com/odoo/teams/41243/lb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_reconciliation_widget +msgid "Account Reconciliation widget" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__country_code +msgid "Company Country code" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +msgid "ID" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment_register +msgid "Register Payment" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Reset Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__country_code +msgid "" +"The ISO country code in two chars. \n" +"You can use this field for quick search." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA. " +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Apps, search for 'Checks " +"layout' and install one." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__action_print_check_middle +msgid "check in middle" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__action_print_check_bottom +msgid "check on bottom" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__action_print_check_top +msgid "check on top" +msgstr "" diff --git a/addons/account_check_printing/i18n/lo.po b/addons/account_check_printing/i18n/lo.po new file mode 100644 index 00000000..03d4b4be --- /dev/null +++ b/addons/account_check_printing/i18n/lo.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Lao (https://www.transifex.com/odoo/teams/41243/lo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "ຍົກເລີອກ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "ພິມ" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/lt.po b/addons/account_check_printing/i18n/lt.po new file mode 100644 index 00000000..d84a5572 --- /dev/null +++ b/addons/account_check_printing/i18n/lt.po @@ -0,0 +1,451 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2021 +# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2021 +# Audrius Palenskis <audrius.palenskis@gmail.com>, 2021 +# Rytis Štreimikis <r.streimikis@hotmail.lt>, 2021 +# digitouch UAB <digitouchagencyeur@gmail.com>, 2021 +# Linas Versada <linaskrisiukenas@gmail.com>, 2021 +# grupoda2 <dmitrijus.ivanovas@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: grupoda2 <dmitrijus.ivanovas@gmail.com>, 2021\n" +"Language-Team: Lithuanian (https://www.transifex.com/odoo/teams/41243/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Kvito numerio eiliškumas" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Nustatykite sugeneruotų čekių paraštes, kad jos tiktų prie jūsų spausdintuvo" +" nustatymų." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Suma žodžiais" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Atšaukti" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Kvito išdėstymas" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Kairė kvito paraštė" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Kvito numeris" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Kvito spausdinimas" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Kvito spausdinimo mokėjimo būdas pasirinktas" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Dešinė kvito paraštė" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Kvito eiliškumas" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Viršutinė kvito paraštė" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Pažymėkite, jei jūsų iš anksto atspausdinti kvitai nėra numeruoti." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Kvitas spausdinimui" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Kvitai" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Kvitų numeravimo eiliškumas." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Kvitai spausdinimui" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Kvitai spausdinimui" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Įmonės" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigūracijos nustatymai" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontaktas" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Sukūrė" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Sukurta" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Rodomas pavadinimas" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Eiti į nustatymų skydelį" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Norint atspausdinti daugiau nei vieną kvitą vienu metu, jie turi priklausyti" +" tam pačiam bankiniam žurnalui." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Žurnalas" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Žurnalo įrašas" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Paskutinį kartą keista" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Paskutinį kartą atnaujino" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Paskutinį kartą atnaujinta" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Rankinis numeravimas" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Kelių puslapių kvito šaknelė" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Kito kvito numeris" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Nieko" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Mokėjimo būdas" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Mokėjimai" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Mokėjimai, kuriuos spausdinsite kaip kvitus, turi turėti pažymėtą mokėjimo " +"būdą \"Kvitas\" ir jis neturi būti sudengtas" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Įveskite pirmojo iš anksto atspausdinto kvito, kurį rengiatės spausdinti, " +"numerį." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Spausdinti" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Spausdinti kvitą" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Spausdinti kvitus" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Spausdinti datos etiketę" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Spausdinti iš anksto sunumeruotus kvitus" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Dešinė paraštė" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Pasirinkite formatą, atitinkantį popierių, ant kurio spausdinsite savo kvitus.\n" +"Norėdami išjungti šią funkciją, pasirinkite \"nieko\"." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Išsiųsta" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Sekos numeris turi būti kito atspausdinto kvito." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Techninė funkcija, naudojama sužinoti, ar kvitų spausdinimas buvo įjungtas " +"kaip mokėjimo būdas." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Paskutinio kvito numeris buvo %s. Norėdami išvengti banko čekio atmetimo, " +"galite naudoti tik didesnį numerį." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Pasirinktas žurnalas yra nustatytas kvitų spausdinimui. Jei jūsų iš anksto " +"atspausdinti kvitai jau turi numerius ar jie yra neteisingi, galite juos " +"pakeisti žurnalo nustatymų puslapyje." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Šis pasirinkimas leidžia jums spausdinti čekio informaciją (šaknelę) " +"keliuose puslapiuose, jei ji netelpa viename." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "Tai leis mokėjimuose išsaugoti susijusio kvito numerį." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Atžymėti išsiųstus" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/lv.po b/addons/account_check_printing/i18n/lv.po new file mode 100644 index 00000000..ff7c4697 --- /dev/null +++ b/addons/account_check_printing/i18n/lv.po @@ -0,0 +1,429 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Arnis Putniņš <arnis@allegro.lv>, 2020 +# ievaputnina <ievai.putninai@gmail.com>, 2020 +# Konstantins Zabogonskis <inculin4ik@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Konstantins Zabogonskis <inculin4ik@gmail.com>, 2020\n" +"Language-Team: Latvian (https://www.transifex.com/odoo/teams/41243/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Daudzums Vārdos" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Atcelt" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Parbaudīt Izkārtojumu" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Parbaudīt Numuru" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Pārbaudes" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Uzņēmumi" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurācijas iestatījumi" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontakts" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Izveidoja" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Izveidots" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Attēlotais nosaukums" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Go to the configuration panel" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Reģistrs" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Grāmatojumi" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Pēdējoreiz modificēts" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Pēdējoreiz atjaunoja" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Pēdējoreiz atjaunots" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Nav" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Apmakses Metode" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Maksājumi" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Drukāt" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Labā Piemale" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Nosūtīts" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/mk.po b/addons/account_check_printing/i18n/mk.po new file mode 100644 index 00000000..1240a8f7 --- /dev/null +++ b/addons/account_check_printing/i18n/mk.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Macedonian (https://www.transifex.com/odoo/teams/41243/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Откажи" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Креирано од" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Креирано на" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "Прикажи име" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Последна промена на" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Последно ажурирање од" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Последно ажурирање на" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Печати" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/ml_IN.po b/addons/account_check_printing/i18n/ml_IN.po new file mode 100644 index 00000000..4b613505 --- /dev/null +++ b/addons/account_check_printing/i18n/ml_IN.po @@ -0,0 +1,273 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2015-08-25 10:09+0000\n" +"Last-Translator: <>\n" +"Language-Team: Malayalam (India) (http://www.transifex.com/odoo/odoo-9/" +"language/ml_IN/)\n" +"Language: ml_IN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_journal.py:56 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:35 +#: code:addons/account_check_printing/account_payment.py:72 +#, python-format +msgid " and %s/100" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:81 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check printing payment method selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_journal_dashboard.py:23 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "രൂപപ്പെടുത്തിയത്" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "നിർമിച്ച ദിവസം" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:101 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank " +"journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്ത ദിവസം" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check " +"are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:98 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to " +"print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:114 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment " +"method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_journal.py:25 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:135 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its " +"configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "or" +msgstr "" diff --git a/addons/account_check_printing/i18n/mn.po b/addons/account_check_printing/i18n/mn.po new file mode 100644 index 00000000..b42c73b7 --- /dev/null +++ b/addons/account_check_printing/i18n/mn.po @@ -0,0 +1,451 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2020 +# Martin Trigaux, 2020 +# Khishigbat Ganbold <khishigbat@asterisk-tech.mn>, 2020 +# Батболд <batbold.ts@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Батболд <batbold.ts@gmail.com>, 2020\n" +"Language-Team: Mongolian (https://www.transifex.com/odoo/teams/41243/mn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: mn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr " : Чекийн дугаарлалт" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Бэлтгэгдсэн чекийг хэвлэгчийн цаасны хэмжээнд нийцүүлэн хэмжээг тохируулна " +"уу." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Дүн үгээр" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Цуцлах" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Чекийн зохиомж" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Чекийн зүүн захлалт" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Чекийн дугаар" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Чек хэвлэлт" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Төлбөрийн журналыг чек хэвлэх байдлаар ашиглах эсэх" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Чекийн баруун захлалт" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Чекийн дугаарлалт" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Чекийн дээд захлалт" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Хэрэв урьдчилж хэвлэж буй чек тань дугаарлагдаагүй байхыг хүсвэл үүнийг " +"сонго." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Хэвлэвэл зохих чек" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Чекүүд" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Чекийн дугаарлалтын дүрэм." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Хэвлэвэл зохих чек" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Хэвлэвэл зохих чек" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Компаниуд" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Тохиргооны тохируулга" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Харилцах хаяг" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Үүсгэсэн этгээд" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Үүсгэсэн огноо" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Дэлгэрэнгүй нэр" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Тохиргооны самбар руу очно уу" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Олон чекийг нэгэн зэрэг хэвлэхийн тулд тэдгээр нь ижил банкны журналд " +"хөтлөгдсөн байх ёстой." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Журнал" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Ажил гүйлгээ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Сүүлд зассан огноо" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Сүүлд зассан этгээд" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Сүүлд зассан огноо" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Гараар дугаарлах" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Олон хуудсаар хэвлэх" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Чекийн дараагийн дугаар" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "Чек-н дугаар зөвхөн тоо агуулах ёстой." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Байхгүй" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Төлбөрийн арга" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Төлбөрүүд" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Чек болгож хэвлэх төлбөр нь 'Чек' төлбөрийн арга сонгогдсон байх ёстой " +"бөгөөд тулгагдаагүй байх ёстой" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Таны хэвлэх гэж байгаа урьдчилан хэвлэсэн чекийн дугаарыг эхлээд оруулна уу." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Хэвлэх" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Чек хэвлэх" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Чек хэвлэх" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Огноон дардас хэвлэх" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Урьдчилан дугаарласан чекийг хэвлэх" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Баруун захлалт" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Та өөрийн чекийг хэвлэхэд зориулж цаасны загвар форматыг сонгоно уу.\n" +"Хэвлэх боломжыг идэвхигүй болгохыг тулд 'Байхгүй' утгыг сонгоно." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Илгээгдсэн" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Дараагийн удаа хэвлэгдэх чекийн дугаар." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Төлбөрийн аргад чек хэвлэхийг зөвшөөрсөн эсэхийг мэдэхэд хэрэглэдэг " +"техникийн талбар." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Сүүлийн чекийн дугаар нь %s байсан. Банкнаас няцаагдахаас сэргийлж та энэхүү" +" дугаарыг нэмэгдүүлж ашиглавал зохино." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Сонгосон журналь нь чекийн дугаар хэвлэхээр тохируулагдсан. Хэрэв таны " +"урьдчилан хэвлэсэн чекийн цаас нь дугаартай эсвэл одоогийн дугаарлалт нь " +"буруу байсан бол журналийн тохиргоонд өөрчлөх боломжтой." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Үүнийг сонгосноор хэрэв чекийн мэдээлэл нэг хуудсанд багтахааргүй бол олон " +"хуудсанд цувруулан хэвлэх боломжтой болно." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Энэ нь танд төлбөрийн чекэнд урьдчилсан дугаар оноож хадгалах боломжыг " +"олгоно." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Илгээгээгүй болгож тэмдэглэх" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/nb.po b/addons/account_check_printing/i18n/nb.po new file mode 100644 index 00000000..6e90ad22 --- /dev/null +++ b/addons/account_check_printing/i18n/nb.po @@ -0,0 +1,429 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Marius Stedjan <marius@stedjan.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Marius Stedjan <marius@stedjan.com>, 2020\n" +"Language-Team: Norwegian Bokmål (https://www.transifex.com/odoo/teams/41243/nb/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nb\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": sjekknummersekvens" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Beløp med ord" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Avbryt" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Sjekknummer" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Utskrift av sjekker" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Kryss av for dette valget hvis dine forhåndsskrevne sjekker ikke er " +"nummererte." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Sjekk til utskrift" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Kontroller" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Sjekker nummereringssekvensen." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Sjekker å skrive ut" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Sjekker å skrive ut" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Firmaer" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurasjonsinnstillinger" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Opprettet av" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Opprettet" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Visningsnavn" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Gå til konfigurasjonspanelet" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Journal" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Journalregistrering" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Sist endret" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Sist oppdatert av" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Sist oppdatert" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Manuell nummerering" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Neste sjekknummer" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Ingen" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Betalingsmetode" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Betalinger" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Skriv ut" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Skriv ut sjekk" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Skriv ut sjekker" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Skriv ut forhåndsnummererte sjekker" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Sendt" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/ne.po b/addons/account_check_printing/i18n/ne.po new file mode 100644 index 00000000..e4b7761a --- /dev/null +++ b/addons/account_check_printing/i18n/ne.po @@ -0,0 +1,272 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Nepali (https://www.transifex.com/odoo/teams/41243/ne/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ne\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/nl.po b/addons/account_check_printing/i18n/nl.po new file mode 100644 index 00000000..583442d4 --- /dev/null +++ b/addons/account_check_printing/i18n/nl.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Yenthe Van Ginneken <yenthespam@gmail.com>, 2020 +# Erwin van der Ploeg <erwin@odooexperts.nl>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Erwin van der Ploeg <erwin@odooexperts.nl>, 2020\n" +"Language-Team: Dutch (https://www.transifex.com/odoo/teams/41243/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Controleer nummerreeks" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Pas de marges van de cheque aan zodat ze passen met uw printerinstellingen. " + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Aantal in woorden" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Cheque opmaak" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Controleer linkermarge" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Controleer nummer" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Cheque afdrukken" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Cheque afdrukken betaaalmethode geselecteerd" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Controleer rechtermarge" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Controleer reeks" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Controleer boven marge" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Chequenummers kunnen alleen uit cijfers bestaan" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Vink deze optie aan als uw her-afgedrukte cheques niet genummerd zijn." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Cheque om af te drukken" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Cheques" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Cheques nummering reeks." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Cheques om af te drukken" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Cheques om af te drukken" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Bedrijven" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Configuratie instellingen" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Contact" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Ga naar het configuratiepaneel" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Om meerdere cheques tegelijk af te drukken moeten ze behoren tot hetzelfde " +"bankdagboek." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Dagboek" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Boeking" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Handmatige nummering" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Multi-pagina cheque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Volgende cheque nummer" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "Het volgende cheque nummer zou alleen cijfers moeten bevatten." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Geen" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Betalingsmethode" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Betalingen" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Betalingen om af te drukken als cheques moeten 'Cheque' geselecteerd hebben " +"als betaaalmethode en moeten al afgeletterd zijn" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Geef aub het nummer in van de eerste voorgedrukte cheque die u gaat " +"afdrukken." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Voorkeursbetaalmethode" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Voorkeursbetaalmethode bij het betalen van deze leverancier. Dit wordt " +"gebruikt om facturen van leveranciers te filteren op de gewenste " +"betalingsmethode om massale betalingen te registreren. Gebruiksscenario's: " +"maak bankbestanden voor batchoverboekingen, controleer runs." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Afdrukken" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Cheque afdrukken" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Cheques afdrukken" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Afdrukdatum label" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Her-nummerde cheques afdrukken" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Rechtermarge" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Selecteer het formaat dat overeenkomt met het cheque papier dat u gebruikt om uw cheque's af te drukken.\n" +"Om deze afdrukoptie te de-activeren selecteert u 'Geen'." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Verzonden" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Reeksnummer van de volgende afgedrukte cheque." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Er is iets misgegaan met de lay-out controleren, selecteer een andere lay-" +"out in de instellingen voor facturering/boekhouding en probeer het opnieuw." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Technische optie gebruikt om te weten of cheque afdrukken is opgezet als " +"betalinsgmethode." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"De volgende nummers worden al gebruikt:\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"De laatste cheque nummer was %s. Om er voor te zorgen dat een cheque niet " +"geweigerd wordt door de bank kan u enkel een groter nummer gebruiken." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Het geselecteerde dagboek is geconfigureerd om chequenummers af te drukken. " +"Als uw voorgedrukt papier al nummers bevat of als het huidige nummer fout is" +" kan u dit wijzigen op de dagboek configuratie pagina." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Deze optie staat u toe om chequegegevens (stub) af te drukken op meerdere " +"pagina's indien deze niet passen op één pagina." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"Met deze optie kunt u het datumetiket op de cheque afdrukken volgens CPA.\n" +"Schakel dit uit als uw voorgedrukte cheque het datumlabel bevat." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Dit staat u toe om ook de referte van de cheque die correspondeert toe te " +"voegen." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Demarkeer verzonden" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Ongeldige cheque" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"U moet een cheque-indeling kiezen. Ga hiervoor naar " +"Facturering/Boekhoudinstellingen, zoek naar 'Cheque-indeling' en stel er een" +" in." diff --git a/addons/account_check_printing/i18n/nl_BE.po b/addons/account_check_printing/i18n/nl_BE.po new file mode 100644 index 00000000..87947e2b --- /dev/null +++ b/addons/account_check_printing/i18n/nl_BE.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Dutch (Belgium) (https://www.transifex.com/odoo/teams/41243/nl_BE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: nl_BE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Annuleren" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "Schermnaam" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigd op" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Laatst bijgewerkt door" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Laatst bijgewerkt op" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Afdrukken" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/pl.po b/addons/account_check_printing/i18n/pl.po new file mode 100644 index 00000000..5383e28b --- /dev/null +++ b/addons/account_check_printing/i18n/pl.po @@ -0,0 +1,456 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Dariusz Żbikowski <darek@krokus.com.pl>, 2020 +# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2020 +# Tomasz Leppich <t.leppich@gmail.com>, 2020 +# Piotr Szlązak <szlazakpiotr@gmail.com>, 2020 +# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2020 +# Paweł Michoń <michon.pawel@wp.pl>, 2020 +# Andrzej Donczew <a.donczew@hadron.eu.com>, 2020 +# Piotr Cierkosz <piotr.w.cierkosz@gmail.com>, 2020 +# Paweł Wodyński <pw@myodoo.pl>, 2020 +# Maksym <ms@myodoo.pl>, 2020 +# Piotr Strębski <strebski@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2021\n" +"Language-Team: Polish (https://www.transifex.com/odoo/teams/41243/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Kolejność numerów czeków" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Regulacja marginesów generowanych do kontroli, aby dopasować twoje " +"ustawienia drukarki." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Kwota słownie" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Anuluj" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "sprawdzić układ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Sprawdź lewy margines" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Numer czeku" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Drukowanie czeku" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Sprawdź wybraną metodę drukowania płatności" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Sprawdź prawy margines" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Kolejność czeku" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Sprawdź górny margines" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Zaznacz tę opcję, jeśli twoje wstępnie wydrukowane czeki nie są " +"ponumerowane." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Zaznacz do druku" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Czeki" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Kolejność numeracji czeków." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Czeki do druku" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Czeki do druku" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Firmy" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Ustawienia konfiguracji" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Utworzona przez" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Utworzono" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Nazwa wyświetlana" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Przejdź do panelu konfiguracji" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"W celu wydrukowania za jednym razem kilku czeków, muszą one należeć do tego " +"samego dziennika bankowego." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Dziennik" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Zapis dziennika" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Data ostatniej modyfikacji" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Ostatnio aktualizowane przez" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Data ostatniej aktualizacji" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Ręczne numerowanie" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Numer następnego czeku" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Brak" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Metoda płatności" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Wpłaty" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Płatności drukowane jako czeki muszą mieć zaznaczony \"Czek\" jako metoda " +"płatności i nie mogły zostać pogodzone" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Wpisz numer pierwszego wstępnie wydrukowanego czeku, który chcesz " +"wydrukować." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Drukuj" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Drukuj czek" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Drukuj czeki" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Drukuj przenumerowane czeki" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Prawy margines" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Wysłane" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Kolejny numer następnie wydrukowanego czeku" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Funkcja techniczna używana aby wiedzieć, czy wydruk czeku był włączony jako " +"metoda płatności." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Ostatnim numerem czeku był %s. W celu uniknięcia odrzucenia czeku przez bank" +" użyj wyższego numeru." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Wybrany dziennik jest skonfigurowany, aby drukować numery czeków. Jeżeli " +"wstępnie wydrukowane czeki mają numery lub aktualna numeracja jest zła, " +"możesz zmienić ją na stronie konfiguracyjnej dziennika." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Ta opcja pozwala na drukowanie sprawdzonych szczegółów (pośredniczących) na " +"wielu stronach, jeśli nie pasują na tej pojedynczej stronie." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "To pozwoli zapisać na płatnościach numer właściwego czeku." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Odznacz wysłane" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/pt.po b/addons/account_check_printing/i18n/pt.po new file mode 100644 index 00000000..6156e283 --- /dev/null +++ b/addons/account_check_printing/i18n/pt.po @@ -0,0 +1,448 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# 425fe09b3064b9f906f637fff94056ae_a00ea56 <0fa3588fa89906bfcb3a354600956e0e_308047>, 2020 +# Ricardo Correia <rcorreiavv@gmail.com>, 2020 +# Manuela Silva <manuelarodsilva@gmail.com>, 2020 +# Pedro Castro Silva <pedrocs@exo.pt>, 2020 +# Nuno Silva <nuno.silva@arxi.pt>, 2020 +# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2020 +# Pedro Filipe <pedro2.10@hotmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Pedro Filipe <pedro2.10@hotmail.com>, 2020\n" +"Language-Team: Portuguese (https://www.transifex.com/odoo/teams/41243/pt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Sequência de Número do Cheque" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Montante em Palavras" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Esboço do Cheque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Margem Esquerda do Cheque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Número do Cheque" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Impressão de Cheque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Margem Direita do Cheque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Sequência de Cheque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Margem do Topo do Cheque" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Selecione esta opção se os seus cheques pré-impressos não estão numerados." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Cheque para imprimir" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Cheques" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Sequência numérica dos cheques." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Cheques para Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Cheques para imprimir" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Configurações" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Contacto" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Nome" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Ir para o painel de configuração" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Para poder imprimir vários cheques de uma vez só, estes devem pertencer ao " +"mesmo diário bancário." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Diário" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Lançamento de Diário" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última Modificação em" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Última Atualização por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Última Atualização em" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Numeração Manual" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Número de Cheque Seguinte" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Nenhum(a)" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Método de Pagamento" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Pagamentos" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Os pagamentos a imprimir como um cheque devem ter selecionado 'Cheque' como " +"método de pagamento e não terem sido já reconciliados." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Por favor, insira o número do primeiro cheque pré-impresso que está prestes " +"a imprimir." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Imprimir Cheque" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Imprimir Cheques" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Imprimir Cheques Já Numerados" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Margem Direita" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Enviado" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Número sequencial do próximo cheque impresso." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Caraterística técnica utilizada para saber se a impressão de cheques estava " +"ativada como método de pagamento." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"O último número de cheque foi %s. Para evitar que o seu banco o rejeite, só " +"pode utilizar um número superior a este." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"O diário selecionado está configurado para imprimir os números do cheque. Se" +" os seus cheques pré-impressos já estão numerados ou se a numeração atual " +"estiver errada, pode alterá-la na página de configuração do diário." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Isto irá permitir guardar nos pagamentos o número do cheque correspondente." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Enviar não selecionados" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/pt_BR.po b/addons/account_check_printing/i18n/pt_BR.po new file mode 100644 index 00000000..ccc0e590 --- /dev/null +++ b/addons/account_check_printing/i18n/pt_BR.po @@ -0,0 +1,458 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Rodrigo de Almeida Sottomaior Macedo <rmsolucoeseminformatica@protonmail.com>, 2020 +# Martin Trigaux, 2020 +# Mateus Lopes <mateus1@gmail.com>, 2020 +# falexandresilva <falexandresilva@gmail.com>, 2020 +# grazziano <gra.negocia@gmail.com>, 2020 +# André Augusto Firmino Cordeiro <a.cordeito@gmail.com>, 2020 +# Diego Bittencourt <diegomb86@gmail.com>, 2020 +# Éder Brito <britoederr@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Éder Brito <britoederr@gmail.com>, 2021\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/odoo/teams/41243/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Sequência Numérica de Cheque" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Ajuste as margens de cheques gerados para combinar com as definições da " +"impressora." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Valor por extenso" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Modelo de Cheque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Número do Cheque" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Impressão de Cheque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Verifique a impressão do método de pagamento selecionada" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Sequência de Cheque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Marque esta opção se seus cheques pré-impressos não são numerados." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Cheque para imprimir" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Verificar" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Sequência de numeração de cheques." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Cheques para Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Cheques para Imprimir" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Empresas" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Definições de Configuração" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Contato" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Criado por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Criado em" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Nome exibido" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Vá para o painel de configuração" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"A fim de imprimir vários cheques de uma vez, eles devem pertencer ao mesmo " +"diário bancário." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Diário" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Lançamento de Diário" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Última modificação em" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Última atualização por" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Última atualização em" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Numeração Manual" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Canhotos de Cheque Multi-páginas" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Próximo Número de Cheque" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Nenhum" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Método de Pagamento" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Pagamentos" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Pagamentos para imprimir como cheques devem ter 'Cheque' selecionado como " +"método de pagamento e não ter sido reconciliados" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Por favor, insira o número do primeiro cheque pré-impresso que você está " +"prestes a imprimir." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Imprimir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Imprimir Cheque" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Imprimir Cheque" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Imprimir Cheques Pré-numerados" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Selecione o formato correspondente ao papel de cheque que irá imprimir seus cheques.\n" +"Para desativar o recurso de impressão, selecione 'Nenhum'." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Enviado" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Número de sequênciado próximo cheque impresso." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Algo parece incorreto com o Layout de Cheque, selecione outro layout em " +"Contabilidade/Definições de Contabilidade e tente novamente." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Característica técnica utilizada para saber se a impressão de cheque foi " +"habilitada como método de pagamento." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"O último número do cheque foi %s. A fim de evitar que um cheque seja " +"rejeitado pelo banco, você só pode usar um número maior." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"O diário selecionado está configurado para imprimir números de cheque. Se o " +"seu papel de cheque pré-impresso já tem números ou se a numeração atual está" +" errada, você pode mudá-la na página de configuração de diário." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Esta opção permite que você imprima detalhes do cheque (rascunho) em várias " +"páginas, se eles não se encaixarem em uma única página." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Isso permitirá salvar em pagamentos o número do cheque correspondente." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Desmarcar Enviados" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"Você deve escolher um layout de cheque. Para isso, vá em " +"Contabilidade/Definições de Contabilidade, pesquise 'Layout de cheques' e " +"defina um." diff --git a/addons/account_check_printing/i18n/ro.po b/addons/account_check_printing/i18n/ro.po new file mode 100644 index 00000000..3ecf015d --- /dev/null +++ b/addons/account_check_printing/i18n/ro.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Fekete Mihai <mihai.fekete@forestandbiomass.ro>, 2020 +# Dorin Hongu <dhongu@gmail.com>, 2020 +# Foldi Robert <foldirobert@nexterp.ro>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Foldi Robert <foldirobert@nexterp.ro>, 2020\n" +"Language-Team: Romanian (https://www.transifex.com/odoo/teams/41243/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr " : Secvență numerotare cecuri" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Reglați marginile verificărilor generate pentru a se potrivi cu setările " +"imprimantei." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Valoarea în cuvinte" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Anulează" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Aspect Cec" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Verificare Margine Stânga" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Număr cec" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Tipărire cec" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Verificați tipărirea metodei de plată selectate" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Verificare Margine Dreapta" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Secvență cec" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Verificare Margine Top" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Numerele de cecuri pot fi constituite doar din cifre" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Bifează această opțiune dacă cecurile preimprimate nu sunt numerotate" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Cec de tipărit" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Verificări" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Secvență numerotare cecuri." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Cecuri de tipărit" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Cecuri de tipărit" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Companii" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Setări de configurare" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Contact" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Creat de" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Creat în" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Nume afișat" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Du-te la panoul de configurare" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Pentru a tipări mai multe cecuri simultan, acestea trebuie să aparțină " +"aceluiași jurnal bancar." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Jurnal" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Notă contabilă" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Ultima modificare la" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Ultima actualizare făcută de" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Ultima actualizare pe" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Numerotare manuală" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Stub de verificare cu mai multe pagini" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Numărul Cecului Urmator" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "Următorul număr de cec trebuie să conțină numai numere." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Fără" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Metoda de plată" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Plăți" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Plățile de tipărit ca cecuri trebuie să aibă selectat 'Check' ca metodă de " +"plată și să nu fi fost deja reconciliate" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Vă rugăm să introduceți numărul primului cec pre-tipărit pe care urmează să " +"imprimați." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Metodă de plată preferată" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Metoda de plată preferată la plata acestui furnizor. Aceasta este utilizată " +"pentru a filtra facturile furnizorului prin metoda de plată preferată pentru" +" a înregistra plățile în masă. Utilizați cazuri: creați fișiere bancare " +"pentru firele lot, cecuri." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Tipăriți" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Tipăriți Cec" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Tipăriți Cecuri" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Imprimare etichetă dată" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Tipăriți cecuri numerotate în prealabil" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Magine Dreapta" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Selectați formatul corespunzător hârtiei de cec pe care veți imprima cecurile.\n" +"Pentru a dezactiva caracteristica de imprimare, selectați 'None'." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Trimis" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Numărul secvenței pentru următoarele cecuri tipărite." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"A apărut o eroare la aspectul cecului, selectați un alt aspect din setările " +"de facturare / contabilitate și încercați din nou." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Funcție tehnică folosită pentru a ști dacă tipărirea cecului a fost activată" +" ca metodă de plată." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"Următoarele numere sunt deja utilizate:\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Ultimul număr de cec a fost%s. Pentru a evita ca un cec să fie respins de " +"bancă, puteți utiliza doar un număr mai mare." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Jurnalul selectat este configurat pentru a imprima numerele de cec. Dacă " +"hârtia dvs. de cec preimprimat are deja numere sau dacă numerotarea curentă " +"este greșită, o puteți modifica în pagina de configurare a jurnalului." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Această opțiune vă permite să imprimați detalii de cec (stub) pe mai multe " +"pagini dacă acestea nu se potrivesc pe o singură pagină." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"Această opțiune vă permite să imprimați eticheta de dată pe cec conform CPA.\n" +"Dezactivați acest lucru dacă cecul dvs. pre-tipărit include eticheta datei." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"Acest lucru va permite să economisiți la plăți numărul cecului " +"corespunzător." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Debifare Trimis" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Cec Nul" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"Trebuie să alegeți un aspect de cec. Pentru aceasta, accesați Setări de " +"facturare / contabilitate, căutați 'Checks Layout' și setați unul." diff --git a/addons/account_check_printing/i18n/ru.po b/addons/account_check_printing/i18n/ru.po new file mode 100644 index 00000000..9f010d85 --- /dev/null +++ b/addons/account_check_printing/i18n/ru.po @@ -0,0 +1,463 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Ivan Yelizariev // IEL <yelizariev@itpp.dev>, 2020 +# sergeiruzkiicode <sergei.ruzki@icode.by>, 2020 +# Irina Fedulova <istartlin@gmail.com>, 2020 +# ILMIR <karamov@it-projects.info>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: ILMIR <karamov@it-projects.info>, 2021\n" +"Language-Team: Russian (https://www.transifex.com/odoo/teams/41243/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Проверьте порядковый номер" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Выровнить поля генерируемого чека, в соответсвии с настройками Вашего " +"принтера" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Сумма прописью" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Отменить" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Макет чека" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Левое поле чеке" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Номер чека" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Проверьте печать" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Метод оплаты печатным чеком выбрано" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Правое поле чеке" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Проверьте последовательность" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Верхнее поле чеке" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Номера чеков могут состоять только из цифр" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Проверьте эту опцию, если ваши предварительно напечатанные чеки не " +"пронумерованы." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Напечатать чек" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Проверки" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Последовательность нумерации чеков." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Напечатать Чеки" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Напечатать чеки" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Компании" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Конфигурационные настройки" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Контакт" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Создал" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Создан" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Отображаемое имя" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Перейти к панели конфигурации" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "Идентификатор" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Для того, чтобы распечатать несколько чеков одновременно, они должны " +"принадлежать одному банковскому журналу." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Журнал" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Запись журнала" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Последнее изменение" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Последний раз обновил" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Последнее обновление" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Ручная нумерация" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Мультистраничный корешок чека" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Номер следующего чека. " + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "Номер следующего чека должен содержать только цифры." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Ничего" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Метод оплаты" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Платежи" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Платежи к печати в виде чеков должны иметь способ оплаты 'Чек' и не должны " +"быть уже согласованы" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Пожалуйста, введите сперва номер предпечатного чека, который вы собираетесь " +"напечатать." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Предпочтительный способ оплаты" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Предпочтительный способ оплаты при оплате этому поставщику. Это используется" +" для фильтрации счетов поставщиков по предпочтительному способу оплаты для " +"массовой регистрации платежей. Варианты использования: создание банковских " +"файлов для пакетных переводов, проведение чеков." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Печать" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Напечатать чек" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Напечатать чеки" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Метка даты печати" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Напечатать предпросмотренные чеки" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "правое поле" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Выберите формат, соответствующий бумаге чека, на которой Вы будете печатать.\n" +"Для того, чтобы выключить функцию печати, выберите 'None'." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Отправлено" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Порядковый номер для следующего напечатанного чека." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Что-то пошло не так с макетом чека, выберите другой макет в настройках " +"выставления счетов / бух учета и повторите попытку." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Техническая характеристика используется, чтобы узнать, была ли печать чека " +"включена в качестве метода оплаты." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"Следующие числа уже используются :\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Последний номер чека был %s. Для того, чтобы избежать отклонение чека " +"банком, вы можете использовать только большее число." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Выбранный журнал настроен на печать номера чеков. Если заранее отпечатанные " +"бумажные чеки уже имеют номера или если текущая нумерация ошибочна, вы " +"можете изменить ее на странице конфигурации журнала." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Эта опция позволяет Вам напечатать подробности чека (корешок) на нескольких " +"страницах, если они не вмещаются на одной странице." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"Эта опция позволяет вам печатать метку с датой на чеке в соответствии с CPA.\n" +"Отключите этот параметр, если на предварительно распечатанном чеке есть метка с датой." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "Это позволит сэкономить на количестве платежей соответствующего чека." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Снять отметку Отправлено" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Недействительный чек" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"Вы должны выбрать макет чека. Для этого перейдите в «Настройки выставления " +"счетов / бух учета», найдите «Макет чеков» и установите его." diff --git a/addons/account_check_printing/i18n/si.po b/addons/account_check_printing/i18n/si.po new file mode 100644 index 00000000..79a23a28 --- /dev/null +++ b/addons/account_check_printing/i18n/si.po @@ -0,0 +1,422 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Language-Team: Sinhala (https://www.transifex.com/odoo/teams/41243/si/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/sk.po b/addons/account_check_printing/i18n/sk.po new file mode 100644 index 00000000..2d700088 --- /dev/null +++ b/addons/account_check_printing/i18n/sk.po @@ -0,0 +1,462 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2020 +# gebri <gebri@inmail.sk>, 2020 +# Jan Prokop, 2020 +# Rastislav Brencic <rastislav.brencic@azet.sk>, 2020 +# karolína schusterová <karolina.schusterova@vdp.sk>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: karolína schusterová <karolina.schusterova@vdp.sk>, 2020\n" +"Language-Team: Slovak (https://www.transifex.com/odoo/teams/41243/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Číselná sekvencia dokladu" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Suma slovom" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Zrušené" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Skontrolujte rozloženie" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Skontrolujte ľavú hranicu" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Číslo dokladu" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Tlač dokladu" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Skontrolovať tlač vybraný spôsob platby" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Skontrolujte pravý okraj" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Sekvencia dokladu" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Skontrolujte hornú maržu" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Kontrolné čísla sa môžu skladať iba z číslic" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Zaškrtinte túto možnosť ak vaše predtlačené doklady nie sú číslované." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Doklady na tlačenie" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Doklady" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Číselná sekvencia dokladov." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Doklady na tlačenie" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Doklady na tlačenie" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Spoločnosti" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Nastavenia konfigurácie" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Vytvoril" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Vytvorené" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Zobrazovaný názov" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Ísť na panel konfigurácie" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Pre tlač viacerých dokladov zároveň, musia patriť do rovnakej účtovnej " +"knihy." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Účtovný denník" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Vstup účtovnej knihy" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Posledná úprava" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Naposledy upravoval" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Naposledy upravované" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Manuálne číslovanie" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Kontrola viacerých stránok" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Nasledujúce číslo dokladu" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "Číslo nasledujúcej kontroly by malo obsahovať iba čísla." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Žiadne" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Metóda platby" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Platby" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Platby na vytlačenie ako šeky musia mať zvolené 'Šek'ako platobnú metódu a " +"nem§žu už byť zladené" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Prosím zadajte číslo prvého predtlačeného šeku na ktorý sa chystáte tlačiť." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Preferovaný spôsob platby" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Preferovaný spôsob platby pri platbe tomuto predajcovi. Používa sa na " +"filtrovanie faktúr dodávateľov podľa preferovaného spôsobu platby na " +"hromadnú registráciu platieb. Prípady použitia: vytvorte bankové súbory pre " +"dávkové káble, skontrolujte behy." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Tlač" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Vytlačiť šek" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Vytlačiť šeky" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Vytlačiť štítok s dátumom" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Vytlačiť predčíslované šeky" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Správna marža" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Poslané" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Sekvenčné číslo nasledujúceho vytlačeného šeku." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Pri kontrole rozloženia sa vyskytla chyba. Vyberte iné rozloženie v " +"nastaveniach fakturácie / účtovníctva a skúste to znova." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Techniká funkcia používaná na zistenie či tlač šekov bola povolená ako " +"spôsob platby." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"Nasledujúce čísla sú už použité:\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Posledné číslo šeku bolo %s. Aby sa predišlo zamietnutiu šeku bankou, môžete" +" použiť iba vyššie číslo." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Zvolená účtovná kniha je nakonfiguovaná na tlač čísiel šekov. Ak váš " +"predtlačený šekový papier už čísla má, alebo ak je súčasné číslovanie zlé, " +"môžete to zmeniť na stránke konfigurácií účtovnej knihy." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"Táto možnosť vám umožňuje vytlačiť štítok s dátumom na šek podľa CPA.\n" +"Toto vypnite, ak vaša predtlačená kontrola obsahuje štítok s dátumom." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "Toto umožní ušetriť na platbách číslo zodpovedajúceho šeku." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Odznačenie poslané" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Kontrola neplatnosti" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"Musíte zvoliť rozloženie kontroly. Prejdite na to do časti Nastavenia " +"fakturácie / účtovníctva, vyhľadajte položku „Kontroly rozloženia“ a jednu z" +" nich nastavte." diff --git a/addons/account_check_printing/i18n/sl.po b/addons/account_check_printing/i18n/sl.po new file mode 100644 index 00000000..93d271c3 --- /dev/null +++ b/addons/account_check_printing/i18n/sl.po @@ -0,0 +1,434 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2021 +# Matjaz Mozetic <m.mozetic@matmoz.si>, 2021 +# Vida Potočnik <vida.potocnik@mentis.si>, 2021 +# Dejan Sraka <dejan.sraka@picolabs.si>, 2021 +# laznikd <laznik@mentis.si>, 2021 +# matjaz k <matjaz@mentis.si>, 2021 +# Boris Kodelja <boris@hbs.si>, 2021 +# Grega Vavtar <grega@hbs.si>, 2021 +# Tadej Lupšina <tadej@hbs.si>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Tadej Lupšina <tadej@hbs.si>, 2021\n" +"Language-Team: Slovenian (https://www.transifex.com/odoo/teams/41243/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr " : Preverite zaporedje števil" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Znesek v besedah" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Prekliči" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Preverite postavitev" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Preveri levi rob" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Čeki" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Čeki za tisk" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Čeki za tisk" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Podjetja" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Uredi nastavitve" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Stik" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Ustvaril" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Ustvarjeno" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Prikazani naziv" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Pojdi na nastavitveno nadzorno ploščo." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Dnevnik" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Temeljnica" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Zadnjič spremenjeno" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Zadnji posodobil" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Zadnjič posodobljeno" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Naslednja kontrolna številka" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Ni prenosa" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Način plačila" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Plačila" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Tiskanje" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Print Check" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Natisni čeke" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Poslano" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/sq.po b/addons/account_check_printing/i18n/sq.po new file mode 100644 index 00000000..348ac0a2 --- /dev/null +++ b/addons/account_check_printing/i18n/sq.po @@ -0,0 +1,275 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux <mat@odoo.com>, 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Last-Translator: Martin Trigaux <mat@odoo.com>, 2017\n" +"Language-Team: Albanian (https://www.transifex.com/odoo/teams/41243/sq/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Anullo" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "Krijuar nga" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "Krijuar me" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "Emri i paraqitur" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "Modifikimi i fundit në" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "Modifikuar per here te fundit nga" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "Modifikuar per here te fundit me" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Print" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/sr.po b/addons/account_check_printing/i18n/sr.po new file mode 100644 index 00000000..45b96ac2 --- /dev/null +++ b/addons/account_check_printing/i18n/sr.po @@ -0,0 +1,389 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2018 +# Slobodan Simić <slsimic@gmail.com>, 2018 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~11.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-09-21 13:17+0000\n" +"PO-Revision-Date: 2018-09-21 13:17+0000\n" +"Last-Translator: Slobodan Simić <slsimic@gmail.com>, 2018\n" +"Language-Team: Serbian (https://www.transifex.com/odoo/teams/41243/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:63 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_chart_template +msgid "Account Chart Template" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Otkaži" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Kompanije" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__country_code +msgid "Company Country code" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Kreiran" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:84 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Извештај" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "None" +msgstr "Ništa" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments__check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Placanja" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:81 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Štampaj" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:94 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register Payments" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__country_code +msgid "" +"The ISO country code in two chars. \n" +"You can use this field for quick search." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA. " +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:116 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Apps, search for 'Checks " +"layout' and install one." +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check in middle" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check on bottom" +msgstr "" + +#. module: account_check_printing +#: selection:res.company,account_check_printing_layout:0 +msgid "check on top" +msgstr "" diff --git a/addons/account_check_printing/i18n/sr@latin.po b/addons/account_check_printing/i18n/sr@latin.po new file mode 100644 index 00000000..08e44dea --- /dev/null +++ b/addons/account_check_printing/i18n/sr@latin.po @@ -0,0 +1,272 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.saas~18\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-09-20 09:53+0000\n" +"PO-Revision-Date: 2017-09-20 09:53+0000\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/odoo/teams/41243/sr%40latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:58 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:69 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:97 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:89 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_bank_journal_form_inherited_check_printing +msgid "Manual Numbering of check" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check" +" are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:86 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:99 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:26 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:121 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_wizard_multi_charts_accounts +msgid "wizard.multi.charts.accounts" +msgstr "" diff --git a/addons/account_check_printing/i18n/sv.po b/addons/account_check_printing/i18n/sv.po new file mode 100644 index 00000000..33d1b208 --- /dev/null +++ b/addons/account_check_printing/i18n/sv.po @@ -0,0 +1,435 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Kristoffer Grundström <lovaren@gmail.com>, 2021 +# Martin Trigaux, 2021 +# Anders Wallenquist <anders.wallenquist@vertel.se>, 2021 +# Christelle Wehbe <libanon_cristelle@hotmail.com>, 2021 +# Haojun Zou <apollo_zhj@msn.com>, 2021 +# Martin Wilderoth <martin.wilderoth@linserv.se>, 2021 +# Patrik Lermon <patrik.lermon@gmail.com>, 2021 +# Kim Asplund <kim.asplund@gmail.com>, 2021 +# Jakob Krabbe <jakob.krabbe@vertel.se>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Jakob Krabbe <jakob.krabbe@vertel.se>, 2021\n" +"Language-Team: Swedish (https://www.transifex.com/odoo/teams/41243/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "Kontrollera nummersekvens" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Summa i ord" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Avbryt" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Kontrollera Nummer" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Välj det här alternativet om dina för-printade checkar inte är numrerade." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Bolag" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Konfigurationsinställningar" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Kontakt" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Skapad av" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Skapad den" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Visningsnamn" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Gå till konfigurationspanelen" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Journal" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Verifikat" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Senast redigerad" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Senast uppdaterad av" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Senast uppdaterad" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Manuell Numrering" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Inga" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Betalningsmetod" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Betalningar" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Skriv ut" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Skriv ut check" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Skickat" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/ta.po b/addons/account_check_printing/i18n/ta.po new file mode 100644 index 00000000..d861f056 --- /dev/null +++ b/addons/account_check_printing/i18n/ta.po @@ -0,0 +1,274 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Odoo 9.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-08-18 14:07+0000\n" +"PO-Revision-Date: 2016-02-05 09:53+0000\n" +"Last-Translator: Martin Trigaux\n" +"Language-Team: Tamil (http://www.transifex.com/odoo/odoo-9/language/ta/)\n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_journal.py:56 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:35 +#: code:addons/account_check_printing/account_payment.py:72 +#, python-format +msgid " and %s/100" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:81 +#, python-format +msgid "A check memo cannot exceed 60 characters." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_amount_in_words +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "ரத்து" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_number +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "Check printing payment method selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +msgid "Checks To Print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_journal_dashboard.py:23 +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_uid +msgid "Created by" +msgstr "உருவாக்கியவர்" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_create_date +msgid "Created on" +msgstr "" +"உருவாக்கப்பட்ட \n" +"தேதி" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_display_name +msgid "Display Name" +msgstr "காட்சி பெயர்" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:101 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank " +"journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks___last_update +msgid "Last Modified on" +msgstr "கடைசியாக திருத்திய" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_uid +msgid "Last Updated by" +msgstr "கடைசியாக புதுப்பிக்கப்பட்டது" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_write_date +msgid "Last Updated on" +msgstr "கடைசியாக புதுப்பிக்கப்பட்டது" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment_check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_register_payments_check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal_check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks_next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_register_payments_check_number +msgid "" +"Number of the check corresponding to this payment. If your pre-printed check " +"are not already numbered, you can manage the numbering in the journal " +"configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:98 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to " +"print on." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:114 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_register_payments +msgid "Register payments on multiple invoices" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal_check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment " +"method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_journal.py:25 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment_check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/account_payment.py:135 +#, python-format +msgid "" +"There is no check layout configured.\n" +"Make sure the proper check printing module is installed and its " +"configuration (in company settings > 'Configuration' tab) is correct." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "or" +msgstr "" diff --git a/addons/account_check_printing/i18n/th.po b/addons/account_check_printing/i18n/th.po new file mode 100644 index 00000000..a38e183d --- /dev/null +++ b/addons/account_check_printing/i18n/th.po @@ -0,0 +1,428 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Khwunchai Jaengsawang <khwunchai.j@ku.th>, 2020 +# Odoo Thaidev <odoothaidev@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Odoo Thaidev <odoothaidev@gmail.com>, 2020\n" +"Language-Team: Thai (https://www.transifex.com/odoo/teams/41243/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "จํานวนเงินเป็นตัวอักษร" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "ยกเลิก" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "เช็ค" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "บริษัท" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "การตั้งค่า" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "ติดต่อ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "สร้างโดย" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "สร้างเมื่อ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "ชื่อที่ใช้แสดง" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "ไปยังหน้าการตั้งค่า" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "รหัส" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "สมุดรายวัน" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "รายการบันทึกบัญชี" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "แก้ไขครั้งสุดท้ายเมื่อ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "อัพเดทครั้งสุดท้ายโดย" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "อัพเดทครั้งสุดท้ายเมื่อ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "ไม่มี" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "วิธีการชำระเงิน" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "การชำระ" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "พิมพ์" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "พิมพ์เช็ค" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "พิมพ์เช็ค" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "พิมพ์ป้ายวันที่" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "ส่งแล้ว" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/tr.po b/addons/account_check_printing/i18n/tr.po new file mode 100644 index 00000000..a7aad3e4 --- /dev/null +++ b/addons/account_check_printing/i18n/tr.po @@ -0,0 +1,468 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Ayhan KIZILTAN <akiziltan76@hotmail.com>, 2020 +# Martin Trigaux, 2020 +# Levent Karakaş <levent@mektup.at>, 2020 +# Murat Kaplan <muratk@projetgrup.com>, 2020 +# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2020 +# Ulaş Sarıkaya <hasanulassarikaya@gmail.com>, 2020 +# Alexander B. <road2monstercat@gmail.com>, 2020 +# Umur Akın <umura@projetgrup.com>, 2020 +# Yedigen, 2020 +# abc Def <hdogan1974@gmail.com>, 2020 +# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Nadir Gazioglu <nadirgazioglu@gmail.com>, 2021\n" +"Language-Team: Turkish (https://www.transifex.com/odoo/teams/41243/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "Çek Sıra No" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Oluşturulan çeklerin kenar boşluklarını yazıcınızın ayarlarına uydurmak için" +" ayarlayın." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Yazı ile Tutar" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "İptal et" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Çek yerleşimi" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Sol Kenar Boşluğu Kontrol Et" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Çek No" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Çek Yazdırma" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Çek Yazdırma Ödeme Metodu Seçildi" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Sağ Kenar Boşluğu Kontrol Et" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Çek Sırano" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Üst Kenar Boşluğunu Kontrol Et" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Check numbers can only consist of digits" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Numara verilmeden önce çekleri ön çıktı olarak izlemek isterseniz bunu seçin" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Yazdırılacak Çek" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Kontroller" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Çek Sıralama numarası" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Yazdırılacak çekler" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Yazdırılacak Çekler" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Şirketler" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Yapılandırma Ayarları" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Temas" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Oluşturan" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Oluşturulma" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Görünüm Adı" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Yapılandırma paneline git" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Aynı anda birden çok çek yazdırmak için, aynı banka yevmiyesine ait olmaları" +" gerekir." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Yevmiye" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Yevmiye Kaydı" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Son Düzenleme" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Son Güncelleyen" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Son Güncelleme" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Elle Numaralandırma" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Çok sayfalı çek koçanı" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Sonraki Çek No" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "Sonraki Kontrol Numarası sadece rakamları içermelidir." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Hiçbiri" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Ödeme Yöntemi" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Ödemeler" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Çek olarak yazdırılacak ödemelerin ödeme yöntemi olarak 'Çek' seçilmiş " +"olmalı ve daha önce uzlaştırılmış olması gerekir" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Lütfen üzerine basmak üzere olduğunuz ilk önceden yazdırılmış çekin " +"numarasını girin." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Preferred Payment Method" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Yazdır" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Çeki Yazdır" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Çekleri Yazdır" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Tarih Etiketini Yazdır" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Önizleme İçin Yazdır" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Sağ Kenar Boşluğu" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Çeklerinizi yazdıracağınız çek kağıdına karşılık gelen formatı seçin.\n" +"Yazdırma özelliklerini devre dışı bırakmak için, 'Hiçbiri' seçeneğini seçin." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Gönderildi" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Bir sonraki basılan kontrolün sıra numarası." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Ödeme metodu olarak çek baskı işleminin etkin olup olmadığını bilmek için " +"kullanılan teknik özellik." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"The following numbers are already used:\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Son kontrol numarası %s idi. Bir çekin banka tarafından reddedilmesini " +"önlemek için yalnızca daha büyük bir sayı kullanabilirsiniz." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Seçilen yevmiye kontrol numaralarını basacak şekilde yapılandırılmıştır. " +"Önceden basılmış çek kağıtlarınızın numaraları zaten varsa veya geçerli " +"numaralandırma yanlışsa, yevmiye yapılandırma sayfasından " +"değiştirebilirsiniz." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Eğer çek detaylarınız (makbuz koçanları) tek bir sayfaya sığmıyorsa, bu " +"seçenek, bu detayları bir çok sayfaya yazdırmanıza izin verir." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "Bu, ödemelerin ilgili kontrol sayısını kaydetmesine olanak tanır." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Gönderilen İşaretini Kaldır" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Void Check" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." diff --git a/addons/account_check_printing/i18n/uk.po b/addons/account_check_printing/i18n/uk.po new file mode 100644 index 00000000..a05be873 --- /dev/null +++ b/addons/account_check_printing/i18n/uk.po @@ -0,0 +1,459 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Alina Lisnenko <alinasemeniuk1@gmail.com>, 2020\n" +"Language-Team: Ukrainian (https://www.transifex.com/odoo/teams/41243/uk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: uk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Порядковий Номер Чеку" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Відрегулюйте поля створених чеків, щоби вони відповідали налаштуванням " +"принтера." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Сума словами" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Скасувати" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Шаблон чеку" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Ліве поле чеку" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Номер чеку" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Друк чеку" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Метод оплати друкованим чеком вибрано" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Праве поле чеку" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Порядковий номер чеку" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Верхнє поле чеку" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Номери чеків можуть містити лише цифри" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" +"Виберіть цю опцію, якщо ваші попередньо надруковані чеки не пронумеровані" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "Роздрукувати чек" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Чеки" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Порядковий номер чеків" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Роздрукувати чеки" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Роздрукувати чеки" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Компанії" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Налаштування" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Контакт" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Створено" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Створено" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Відобразити назву" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Перейти до панелі налаштувань" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"Щоб роздрукувати кілька чеків за раз, вони мають належати єдиному " +"банківському журналу. " + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Журнал" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Запис у журналі" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Останні зміни" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Востаннє оновив" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Останнє оновлення" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Ручна нумерація" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Корінець чеку з кількома сторінками" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Наступний номер чеку" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "Наступний номер чеку повинен містити лише цифри." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Немає" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Спосіб оплати" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Платежі" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Платежі, які потрібно роздрукувати у вигляді чеку, повинні мати спосіб " +"оплати 'Чек' і не повинні бути узгодженими" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Будь ласка, оберіть номер першого чеку для друку, на якому ви збираєтеся " +"роздрукувати." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Переважний метод оплати" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Переважний метод оплати під час оплати цьому постачальнику. Він " +"використовується для фільтру рахунків постачальників за переважним методом " +"оплати в загальному. Використовуйте випадки: створювати банківські файли для" +" групових з'єднань, перевіряйте запуски." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "Друк" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Надрукувати чек" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Надрукувати чеки" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Мітка дати друку" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Друк попередньо пронумерованих чеків" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Праве поле" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Виберіть формат, відповідний паперовому чеку, який ви будете друкувати.\n" +"Щоб вимкнути функцію друку, виберіть \"Нічого\"." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Надіслано" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Послідовність номера наступного друкованого чеку" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Щось пішло не так із шаблоном чеків, оберіть інший шаблон у налаштуваннях " +"Виставлення рахунків/Бухобліку та спробуйте знову." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Технічна функція використовується для того, щоб дізнатись, чи увімкнено друк" +" чеку як спосіб оплати." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"Наступні номери вже використовуються:\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"Останній номер чеку був%s. Щоб уникнути відхилення чеку банком, ви можете " +"використовувати лише більший номер." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"Вибраний журнал налаштовано на друк номерів чеків. Якщо у вашому попередньо " +"надрукованому чеку вже є цифри або якщо поточна нумерація неправильна, її " +"можна змінити на сторінці налаштування журналу." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"Ця опція дозволяє друкувати деталі чеку (корінці) на кількох сторінках, якщо" +" вони не вкладаються в одну сторінку." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"Ця функція дозволяє вам друкувати мітки дати на чеках як CPA.\n" +"Вимкніть її, якщо ви попередньо надрукували чеки включно з міткою дати." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "Це дозволить зберегти номер відповідного чеку на платежах." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Скасувати позначку надіслано" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Порожній чек" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"Вам необхідно обрати шаблон чеку. Для цього перейдіть у налаштування " +"Виставлення рахунків/Бухобліку, знайдіть 'Шаблони чеків' та встановіть його." diff --git a/addons/account_check_printing/i18n/ur.po b/addons/account_check_printing/i18n/ur.po new file mode 100644 index 00000000..3cee9f05 --- /dev/null +++ b/addons/account_check_printing/i18n/ur.po @@ -0,0 +1,422 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Language-Team: Urdu (https://www.transifex.com/odoo/teams/41243/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/i18n/vi.po b/addons/account_check_printing/i18n/vi.po new file mode 100644 index 00000000..d8a9d91d --- /dev/null +++ b/addons/account_check_printing/i18n/vi.po @@ -0,0 +1,461 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Nancy Momoland <thanhnguyen.icsc@gmail.com>, 2020 +# Dang Hanh <hanh.dtm@komit-consulting.com>, 2020 +# Duy BQ <duybq86@gmail.com>, 2020 +# Uyen Vo <uyen@trobz.com>, 2020 +# Trần Hà <tranthuha13590@gmail.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: Trần Hà <tranthuha13590@gmail.com>, 2021\n" +"Language-Team: Vietnamese (https://www.transifex.com/odoo/teams/41243/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr ": Kiểm tra số liên tục" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "Tổng tiền bằng chữ" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "Hủy" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "Kiểm tra Layout" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "Kiểm tra Lề trái" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "Kiểm tra Số" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "Kiểm tra Máy in" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "Kiểm tra in Phương thức thanh toán đã chọn" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "Kiểm tra Lề phải" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "Kiểm tra Thứ tự" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "Kiểm tra Lề trên" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "Check numbers can only consist of digits" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "Kiểm tra tùy chọn này nếu séc in sẵn của bạn không được đánh số." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "In thử" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "Séc" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "Checks numbering sequence." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "Checks to Print" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "Checks to print" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "Công ty" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "Thiết lập cấu hình" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "Liên hệ" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "Tạo bởi" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "Thời điểm tạo" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "Tên hiển thị" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "Đi tới bảng cấu hình" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "Sổ nhật ký" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "Bút toán sổ nhật ký" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "Sửa lần cuối vào" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "Cập nhật lần cuối bởi" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "Cập nhật lần cuối vào" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "Đánh số thủ công" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "Multi-Pages Check Stub" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "Next Check Number" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "Next Check Number should only contains numbers." + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "Không dùng" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "Phương thức thanh toán" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "Thanh toán" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "Preferred Payment Method" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "In" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "Print Check" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "Print Checks" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "Print Date Label" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "Print Pre-numbered Checks" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "Right Margin" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "Đã gửi" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "Sequence number of the next printed check." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "" +"Technical feature used to know whether check printing was enabled as payment" +" method." + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"The following numbers are already used:\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "" +"This will allow to save on payments the number of the corresponding check." + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "Unmark Sent" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "Void Check" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." diff --git a/addons/account_check_printing/i18n/zh_CN.po b/addons/account_check_printing/i18n/zh_CN.po new file mode 100644 index 00000000..eb619768 --- /dev/null +++ b/addons/account_check_printing/i18n/zh_CN.po @@ -0,0 +1,441 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# Martin Trigaux, 2020 +# guohuadeng <guohuadeng@hotmail.com>, 2020 +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# Felix Yuen <fyu@odoo.com>, 2020 +# inspur qiuguodong <qiuguodong@inspur.com>, 2020 +# 开源智造OSCG-老杨 <yangxunbo@163.com>, 2020 +# Felix Yang - Elico Corp <felixyangsh@aliyun.com>, 2020 +# 稀饭~~ <wangwhai@qq.com>, 2020 +# Jeffery CHEN Fan <jeffery9@gmail.com>, 2021 +# liAnGjiA <liangjia@qq.com>, 2021 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: liAnGjiA <liangjia@qq.com>, 2021\n" +"Language-Team: Chinese (China) (https://www.transifex.com/odoo/teams/41243/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr " : 支票编号序列" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "调整生成的检查页的边距以使其符合打印机的设置" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "大写金额" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "取消" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "支票布局" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "检查左边距" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "支票号码" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "支票打印" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "检查已选择的打印付款方式" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "检查右边距" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "支票序列" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "检查上边距" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "支票号码只能由数字组成" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "如果你的预先印制支票是没有编号的请勾选此选项。" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "待打印支票" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "检查单" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "支票编号序列。" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "待打印支票" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "待打印支票" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "公司" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "配置设置" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "联系人" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "创建人" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "至配置面板" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "为了一次打印多张支票,它们必须是相同的银行账户。" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "日记账" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "日记账分录" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "最后修改日" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "最后更新人" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "最后更新时间" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "手动编号" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "多页支票存根" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "下一个支票号码" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "下一个支票号码应该只包含数字。" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "无" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "付款方式" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "支付" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "以支票方式付款要必须选择'支票'并且未被核对" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "请输入您要打印的第一张预先打印的支票的号码。" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "首选付款方式" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "向此供应商付款时的首选付款方式。这用于按首选付款方式筛选供应商帐单,以批量登记付款。用例:为批处理线创建银行文件,检查运行情况。" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "打印" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "打印支票" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "打印支票" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "打印数据标签" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "打印预印制支票" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "右边距" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"选择你将要打印的适合支票纸张的格式\n" +"为了禁用打印功能,请选择'没有'" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "已发送" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "下个打印支票的序列编号" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "检查布局出现问题,请在开票/记帐设置中选择其他布局,然后重试。" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "用于检查支票打印是否作为付款方式启用的技术特征。" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" +"已使用以下数字:\n" +"%s" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "最后一张支票号码是%s。以防支票被银行拒收,你可以用一个稍大一点的号码" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "选择的日记账配置上了打印支票号码。如果预先印制支票已经有号码或者当前的号码是错误的,你可以在日记账配置页面修改" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "如果一页不能打印完,该选项能让你在多页面打印支票明细(存根)" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" +"此选项允许您根据 CPA 在支票上打印日期标签。\n" +"如果预打印的检查包含日期标签,请禁用此选项。" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "这能够让你节约相应的付款支票数量" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "无标记送出" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "作废支票" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "您必须选择检查布局。为此,请进入开票/记帐设置,搜索\"检查布局\"并设置一个。" diff --git a/addons/account_check_printing/i18n/zh_TW.po b/addons/account_check_printing/i18n/zh_TW.po new file mode 100644 index 00000000..88d66cb9 --- /dev/null +++ b/addons/account_check_printing/i18n/zh_TW.po @@ -0,0 +1,428 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_check_printing +# +# Translators: +# 敬雲 林 <chingyun@yuanchih-consult.com>, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server saas~13.5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2020-09-01 07:28+0000\n" +"PO-Revision-Date: 2020-09-07 08:09+0000\n" +"Last-Translator: 敬雲 林 <chingyun@yuanchih-consult.com>, 2020\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/odoo/teams/41243/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid " : Check Number Sequence" +msgstr " : 支票編號序列" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_left +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_right +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "" +"Adjust the margins of generated checks to make it fit your printer's " +"settings." +msgstr "調整生成的支票的邊距, 使其適合您的印表機設置。" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_amount_in_words +msgid "Amount in Words" +msgstr "金額大寫" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Cancel" +msgstr "取消" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "Check Layout" +msgstr "支票格式" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_left +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_left +msgid "Check Left Margin" +msgstr "支票左邊距" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_number +msgid "Check Number" +msgstr "支票號碼" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_journal_form_inherited +msgid "Check Printing" +msgstr "支票列印" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "Check Printing Payment Method Selected" +msgstr "已選擇之支票列印付款方式" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_right +msgid "Check Right Margin" +msgstr "支票右邊距" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_sequence_id +msgid "Check Sequence" +msgstr "支票序列" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_top +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_margin_top +msgid "Check Top Margin" +msgstr "支票上邊距" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Check numbers can only consist of digits" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Check this option if your pre-printed checks are not numbered." +msgstr "勾選此選項,如果您的預先印製支票是沒有編號的。" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Check to print" +msgstr "待列印支票" + +#. module: account_check_printing +#: model:account.payment.method,name:account_check_printing.account_payment_method_check +msgid "Checks" +msgstr "支票" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_sequence_id +msgid "Checks numbering sequence." +msgstr "支票編號序列。" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_payment_check_printing_search +#, python-format +msgid "Checks to Print" +msgstr "待列印支票" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.account_journal_dashboard_kanban_view_inherited +msgid "Checks to print" +msgstr "待列印支票" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_company +msgid "Companies" +msgstr "公司" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_config_settings +msgid "Config Settings" +msgstr "配置設定" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_res_partner +msgid "Contact" +msgstr "聯繫人" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_uid +msgid "Created by" +msgstr "創立者" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__create_date +msgid "Created on" +msgstr "建立於" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__display_name +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__display_name +msgid "Display Name" +msgstr "顯示名稱" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "Go to the configuration panel" +msgstr "至配置面板" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__id +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__id +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__id +msgid "ID" +msgstr "ID" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"In order to print multiple checks at once, they must belong to the same bank" +" journal." +msgstr "為了一次列印多張支票,它們必須為相同的銀行帳戶。" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_journal +msgid "Journal" +msgstr "日記帳" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_move +msgid "Journal Entry" +msgstr "日記帳分錄" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_move____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_company____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings____last_update +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner____last_update +msgid "Last Modified on" +msgstr "最後修改於" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_uid +msgid "Last Updated by" +msgstr "最後更新者" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__write_date +msgid "Last Updated on" +msgstr "最後更新於" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_manual_sequencing +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__check_manual_sequencing +msgid "Manual Numbering" +msgstr "手動編號" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "Multi-Pages Check Stub" +msgstr "多頁支票存根" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_journal__check_next_number +#: model:ir.model.fields,field_description:account_check_printing.field_print_prenumbered_checks__next_check_number +msgid "Next Check Number" +msgstr "下一個支票號碼" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#: code:addons/account_check_printing/wizard/print_prenumbered_checks.py:0 +#, python-format +msgid "Next Check Number should only contains numbers." +msgstr "下一個支票號碼應僅包含數字" + +#. module: account_check_printing +#: model:ir.model.fields.selection,name:account_check_printing.selection__res_company__account_check_printing_layout__disabled +msgid "None" +msgstr "無" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_res_users__property_payment_method_id +msgid "Payment Method" +msgstr "付款方法" + +#. module: account_check_printing +#: model:ir.model,name:account_check_printing.model_account_payment +msgid "Payments" +msgstr "付款" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Payments to print as a checks must have 'Check' selected as payment method " +"and not have already been reconciled" +msgstr "要列印為支票的付款必須選擇'支票'為付款方式並且尚未被調節" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"Please enter the number of the first pre-printed check that you are about to" +" print on." +msgstr "請輸入您將首次預先印製的支票的號碼。" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_account_bank_statement_line__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_move__preferred_payment_method_id +#: model:ir.model.fields,field_description:account_check_printing.field_account_payment__preferred_payment_method_id +msgid "Preferred Payment Method" +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_partner__property_payment_method_id +#: model:ir.model.fields,help:account_check_printing.field_res_users__property_payment_method_id +msgid "" +"Preferred payment method when paying this vendor. This is used to filter " +"vendor bills by preferred payment method to register payments in mass. Use " +"cases: create bank files for batch wires, check runs." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "Print" +msgstr "列印" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Print Check" +msgstr "列印支票" + +#. module: account_check_printing +#: model:ir.actions.server,name:account_check_printing.action_account_print_checks +msgid "Print Checks" +msgstr "列印支票" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,field_description:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "Print Date Label" +msgstr "列印日期標籤" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#: model:ir.model,name:account_check_printing.model_print_prenumbered_checks +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +#, python-format +msgid "Print Pre-numbered Checks" +msgstr "列印預先印製支票" + +#. module: account_check_printing +#: model:ir.model.fields,field_description:account_check_printing.field_res_company__account_check_printing_margin_right +msgid "Right Margin" +msgstr "右邊距" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_layout +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_layout +msgid "" +"Select the format corresponding to the check paper you will be printing your checks on.\n" +"In order to disable the printing feature, select 'None'." +msgstr "" +"選擇與要列印支票的支票紙對應的格式。\n" +"為了禁用列印功能, 請選擇 \"無\"。" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Sent" +msgstr "已發送" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_next_number +msgid "Sequence number of the next printed check." +msgstr "下個列印支票的序列編號。" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"Something went wrong with Check Layout, please select another layout in " +"Invoicing/Accounting Settings and try again." +msgstr "" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_journal__check_printing_payment_method_selected +msgid "" +"Technical feature used to know whether check printing was enabled as payment" +" method." +msgstr "從技術特徵可以知道是否可將列印支票作為付款方式。" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"The following numbers are already used:\n" +"%s" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_journal.py:0 +#, python-format +msgid "" +"The last check number was %s. In order to avoid a check being rejected by " +"the bank, you can only use a greater number." +msgstr "最後一張支票號碼是%s。以防發票被銀行拒收,您僅可以適用一個稍大的號碼。" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_account_payment__check_number +msgid "" +"The selected journal is configured to print check numbers. If your pre-" +"printed check paper already has numbers or if the current numbering is " +"wrong, you can change it in the journal configuration page." +msgstr "所選的帳簿已配置成列印支票編號。如果您的預先列印支票紙張已有了編號或目前編號是錯誤的,您可在帳簿界面去更改設定。" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_multi_stub +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_multi_stub +msgid "" +"This option allows you to print check details (stub) on multiple pages if " +"they don't fit on a single page." +msgstr "此選項允許您在多個頁面上列印支票詳細資訊 (存根) (如果它們不適合單個頁面)。" + +#. module: account_check_printing +#: model:ir.model.fields,help:account_check_printing.field_res_company__account_check_printing_date_label +#: model:ir.model.fields,help:account_check_printing.field_res_config_settings__account_check_printing_date_label +msgid "" +"This option allows you to print the date label on the check as per CPA.\n" +"Disable this if your pre-printed check includes the date label." +msgstr "" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.print_pre_numbered_checks_view +msgid "" +"This will allow to save on payments the number of the corresponding check." +msgstr "這能夠讓您節約相應的付款支票數量。" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Unmark Sent" +msgstr "無標記送出" + +#. module: account_check_printing +#: model_terms:ir.ui.view,arch_db:account_check_printing.view_account_payment_form_inherited +msgid "Void Check" +msgstr "" + +#. module: account_check_printing +#: code:addons/account_check_printing/models/account_payment.py:0 +#, python-format +msgid "" +"You have to choose a check layout. For this, go in Invoicing/Accounting " +"Settings, search for 'Checks layout' and set one." +msgstr "" diff --git a/addons/account_check_printing/models/__init__.py b/addons/account_check_printing/models/__init__.py new file mode 100644 index 00000000..7341412a --- /dev/null +++ b/addons/account_check_printing/models/__init__.py @@ -0,0 +1,9 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import account_journal +from . import account_move +from . import account_payment +from . import res_company +from . import res_config_settings +from . import res_partner diff --git a/addons/account_check_printing/models/account_journal.py b/addons/account_check_printing/models/account_journal.py new file mode 100644 index 00000000..004293a1 --- /dev/null +++ b/addons/account_check_printing/models/account_journal.py @@ -0,0 +1,138 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import re +from odoo import models, fields, api, _ +from odoo.exceptions import ValidationError + +class AccountJournal(models.Model): + _inherit = "account.journal" + + check_manual_sequencing = fields.Boolean( + string='Manual Numbering', + default=False, + help="Check this option if your pre-printed checks are not numbered.", + ) + check_sequence_id = fields.Many2one( + comodel_name='ir.sequence', + string='Check Sequence', + readonly=True, + copy=False, + help="Checks numbering sequence.", + ) + check_next_number = fields.Char( + string='Next Check Number', + compute='_compute_check_next_number', + inverse='_inverse_check_next_number', + help="Sequence number of the next printed check.", + ) + check_printing_payment_method_selected = fields.Boolean( + compute='_compute_check_printing_payment_method_selected', + help="Technical feature used to know whether check printing was enabled as payment method.", + ) + + @api.depends('check_manual_sequencing') + def _compute_check_next_number(self): + for journal in self: + sequence = journal.check_sequence_id + if sequence: + journal.check_next_number = sequence.get_next_char(sequence.number_next_actual) + else: + journal.check_next_number = 1 + + def _inverse_check_next_number(self): + for journal in self: + if journal.check_next_number and not re.match(r'^[0-9]+$', journal.check_next_number): + raise ValidationError(_('Next Check Number should only contains numbers.')) + if int(journal.check_next_number) < journal.check_sequence_id.number_next_actual: + raise ValidationError(_( + "The last check number was %s. In order to avoid a check being rejected " + "by the bank, you can only use a greater number.", + journal.check_sequence_id.number_next_actual + )) + if journal.check_sequence_id: + journal.check_sequence_id.sudo().number_next_actual = int(journal.check_next_number) + journal.check_sequence_id.sudo().padding = len(journal.check_next_number) + + @api.depends('type') + def _compute_outbound_payment_method_ids(self): + super()._compute_outbound_payment_method_ids() + for journal in self: + if journal.type == 'cash': + check_method = self.env.ref('account_check_printing.account_payment_method_check') + journal.outbound_payment_method_ids -= check_method + + @api.depends('outbound_payment_method_ids') + def _compute_check_printing_payment_method_selected(self): + for journal in self: + journal.check_printing_payment_method_selected = any( + pm.code == 'check_printing' + for pm in journal.outbound_payment_method_ids + ) + + @api.model + def create(self, vals): + rec = super(AccountJournal, self).create(vals) + if not rec.check_sequence_id: + rec._create_check_sequence() + return rec + + @api.returns('self', lambda value: value.id) + def copy(self, default=None): + rec = super(AccountJournal, self).copy(default) + rec._create_check_sequence() + return rec + + def _create_check_sequence(self): + """ Create a check sequence for the journal """ + for journal in self: + journal.check_sequence_id = self.env['ir.sequence'].sudo().create({ + 'name': journal.name + _(" : Check Number Sequence"), + 'implementation': 'no_gap', + 'padding': 5, + 'number_increment': 1, + 'company_id': journal.company_id.id, + }) + + def _default_outbound_payment_methods(self): + methods = super(AccountJournal, self)._default_outbound_payment_methods() + return methods + self.env.ref('account_check_printing.account_payment_method_check') + + @api.model + def _enable_check_printing_on_bank_journals(self): + """ Enables check printing payment method and add a check sequence on bank journals. + Called upon module installation via data file. + """ + check_method = self.env.ref('account_check_printing.account_payment_method_check') + for bank_journal in self.search([('type', '=', 'bank')]): + bank_journal._create_check_sequence() + bank_journal.outbound_payment_method_ids += check_method + + def get_journal_dashboard_datas(self): + domain_checks_to_print = [ + ('journal_id', '=', self.id), + ('payment_method_id.code', '=', 'check_printing'), + ('state', '=', 'posted'), + ('is_move_sent','=', False), + ] + return dict( + super(AccountJournal, self).get_journal_dashboard_datas(), + num_checks_to_print=self.env['account.payment'].search_count(domain_checks_to_print), + ) + + def action_checks_to_print(self): + check_method = self.env.ref('account_check_printing.account_payment_method_check') + return { + 'name': _('Checks to Print'), + 'type': 'ir.actions.act_window', + 'view_mode': 'list,form,graph', + 'res_model': 'account.payment', + 'context': dict( + self.env.context, + search_default_checks_to_send=1, + journal_id=self.id, + default_journal_id=self.id, + default_payment_type='outbound', + default_payment_method_id=check_method.id, + ), + } diff --git a/addons/account_check_printing/models/account_move.py b/addons/account_check_printing/models/account_move.py new file mode 100644 index 00000000..c5c8dcb6 --- /dev/null +++ b/addons/account_check_printing/models/account_move.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + + +from odoo import models, fields, api + + +class AccountMove(models.Model): + _inherit = 'account.move' + + preferred_payment_method_id = fields.Many2one( + string="Preferred Payment Method", + comodel_name='account.payment.method', + compute='_compute_preferred_payment_method_idd', + store=True, + ) + + @api.depends('partner_id') + def _compute_preferred_payment_method_idd(self): + for move in self: + partner = move.partner_id + # take the payment method corresponding to the move's company + move.preferred_payment_method_id = partner.with_company(move.company_id).property_payment_method_id diff --git a/addons/account_check_printing/models/account_payment.py b/addons/account_check_printing/models/account_payment.py new file mode 100644 index 00000000..f8c3a9c4 --- /dev/null +++ b/addons/account_check_printing/models/account_payment.py @@ -0,0 +1,321 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import models, fields, api, _ +from odoo.exceptions import UserError, ValidationError, RedirectWarning +from odoo.tools.misc import formatLang, format_date + +INV_LINES_PER_STUB = 9 + + +class AccountPaymentRegister(models.TransientModel): + _inherit = "account.payment.register" + + @api.depends('payment_type', 'journal_id', 'partner_id') + def _compute_payment_method_id(self): + super()._compute_payment_method_id() + for record in self: + preferred = record.partner_id.with_company(record.company_id).property_payment_method_id + if record.payment_type == 'outbound' and preferred in record.journal_id.outbound_payment_method_ids: + record.payment_method_id = preferred + +class AccountPayment(models.Model): + _inherit = "account.payment" + + check_amount_in_words = fields.Char( + string="Amount in Words", + store=True, + compute='_compute_check_amount_in_words', + ) + check_manual_sequencing = fields.Boolean(related='journal_id.check_manual_sequencing') + check_number = fields.Char( + string="Check Number", + store=True, + readonly=True, + copy=False, + compute='_compute_check_number', + inverse='_inverse_check_number', + help="The selected journal is configured to print check numbers. If your pre-printed check paper already has numbers " + "or if the current numbering is wrong, you can change it in the journal configuration page.", + ) + + @api.constrains('check_number', 'journal_id') + def _constrains_check_number(self): + if not self: + return + try: + self.mapped(lambda p: str(int(p.check_number))) + except ValueError: + raise ValidationError(_('Check numbers can only consist of digits')) + self.flush() + self.env.cr.execute(""" + SELECT payment.check_number, move.journal_id + FROM account_payment payment + JOIN account_move move ON move.id = payment.move_id + JOIN account_journal journal ON journal.id = move.journal_id, + account_payment other_payment + JOIN account_move other_move ON other_move.id = other_payment.move_id + WHERE payment.check_number::INTEGER = other_payment.check_number::INTEGER + AND move.journal_id = other_move.journal_id + AND payment.id != other_payment.id + AND payment.id IN %(ids)s + AND move.state = 'posted' + AND other_move.state = 'posted' + """, { + 'ids': tuple(self.ids), + }) + res = self.env.cr.dictfetchall() + if res: + raise ValidationError(_( + 'The following numbers are already used:\n%s', + '\n'.join(_( + '%(number)s in journal %(journal)s', + number=r['check_number'], + journal=self.env['account.journal'].browse(r['journal_id']).display_name, + ) for r in res) + )) + + @api.depends('payment_method_id', 'currency_id', 'amount') + def _compute_check_amount_in_words(self): + for pay in self: + if pay.currency_id: + pay.check_amount_in_words = pay.currency_id.amount_to_text(pay.amount) + else: + pay.check_amount_in_words = False + + @api.depends('journal_id', 'payment_method_code') + def _compute_check_number(self): + for pay in self: + if pay.journal_id.check_manual_sequencing and pay.payment_method_code == 'check_printing': + sequence = pay.journal_id.check_sequence_id + pay.check_number = sequence.get_next_char(sequence.number_next_actual) + else: + pay.check_number = False + + def _inverse_check_number(self): + for payment in self: + if payment.check_number: + sequence = payment.journal_id.check_sequence_id.sudo() + sequence.padding = len(payment.check_number) + + @api.depends('payment_type', 'journal_id', 'partner_id') + def _compute_payment_method_id(self): + super()._compute_payment_method_id() + for record in self: + preferred = record.partner_id.with_company(record.company_id).property_payment_method_id + if record.payment_type == 'outbound' and preferred in record.journal_id.outbound_payment_method_ids: + record.payment_method_id = preferred + + def action_post(self): + res = super(AccountPayment, self).action_post() + payment_method_check = self.env.ref('account_check_printing.account_payment_method_check') + for payment in self.filtered(lambda p: p.payment_method_id == payment_method_check and p.check_manual_sequencing): + sequence = payment.journal_id.check_sequence_id + payment.check_number = sequence.next_by_id() + return res + + def print_checks(self): + """ Check that the recordset is valid, set the payments state to sent and call print_checks() """ + # Since this method can be called via a client_action_multi, we need to make sure the received records are what we expect + self = self.filtered(lambda r: r.payment_method_id.code == 'check_printing' and r.state != 'reconciled') + + if len(self) == 0: + raise UserError(_("Payments to print as a checks must have 'Check' selected as payment method and " + "not have already been reconciled")) + if any(payment.journal_id != self[0].journal_id for payment in self): + raise UserError(_("In order to print multiple checks at once, they must belong to the same bank journal.")) + + if not self[0].journal_id.check_manual_sequencing: + # The wizard asks for the number printed on the first pre-printed check + # so payments are attributed the number of the check the'll be printed on. + self.env.cr.execute(""" + SELECT payment.id + FROM account_payment payment + JOIN account_move move ON movE.id = payment.move_id + WHERE journal_id = %(journal_id)s + AND check_number IS NOT NULL + ORDER BY check_number::INTEGER DESC + LIMIT 1 + """, { + 'journal_id': self.journal_id.id, + }) + last_printed_check = self.browse(self.env.cr.fetchone()) + number_len = len(last_printed_check.check_number or "") + next_check_number = '%0{}d'.format(number_len) % (int(last_printed_check.check_number) + 1) + + return { + 'name': _('Print Pre-numbered Checks'), + 'type': 'ir.actions.act_window', + 'res_model': 'print.prenumbered.checks', + 'view_mode': 'form', + 'target': 'new', + 'context': { + 'payment_ids': self.ids, + 'default_next_check_number': next_check_number, + } + } + else: + self.filtered(lambda r: r.state == 'draft').action_post() + return self.do_print_checks() + + def action_unmark_sent(self): + self.write({'is_move_sent': False}) + + def action_void_check(self): + self.action_draft() + self.action_cancel() + + def do_print_checks(self): + check_layout = self.company_id.account_check_printing_layout + redirect_action = self.env.ref('account.action_account_config') + if not check_layout or check_layout == 'disabled': + msg = _("You have to choose a check layout. For this, go in Invoicing/Accounting Settings, search for 'Checks layout' and set one.") + raise RedirectWarning(msg, redirect_action.id, _('Go to the configuration panel')) + report_action = self.env.ref(check_layout, False) + if not report_action: + msg = _("Something went wrong with Check Layout, please select another layout in Invoicing/Accounting Settings and try again.") + raise RedirectWarning(msg, redirect_action.id, _('Go to the configuration panel')) + self.write({'is_move_sent': True}) + return report_action.report_action(self) + + ####################### + #CHECK PRINTING METHODS + ####################### + def _check_fill_line(self, amount_str): + return amount_str and (amount_str + ' ').ljust(200, '*') or '' + + def _check_build_page_info(self, i, p): + multi_stub = self.company_id.account_check_printing_multi_stub + return { + 'sequence_number': self.check_number, + 'manual_sequencing': self.journal_id.check_manual_sequencing, + 'date': format_date(self.env, self.date), + 'partner_id': self.partner_id, + 'partner_name': self.partner_id.name, + 'currency': self.currency_id, + 'state': self.state, + 'amount': formatLang(self.env, self.amount, currency_obj=self.currency_id) if i == 0 else 'VOID', + 'amount_in_word': self._check_fill_line(self.check_amount_in_words) if i == 0 else 'VOID', + 'memo': self.ref, + 'stub_cropped': not multi_stub and len(self.move_id._get_reconciled_invoices()) > INV_LINES_PER_STUB, + # If the payment does not reference an invoice, there is no stub line to display + 'stub_lines': p, + } + + def _check_get_pages(self): + """ Returns the data structure used by the template : a list of dicts containing what to print on pages. + """ + stub_pages = self._check_make_stub_pages() or [False] + pages = [] + for i, p in enumerate(stub_pages): + pages.append(self._check_build_page_info(i, p)) + return pages + + def _check_make_stub_pages(self): + """ The stub is the summary of paid invoices. It may spill on several pages, in which case only the check on + first page is valid. This function returns a list of stub lines per page. + """ + self.ensure_one() + + def prepare_vals(invoice, partials): + number = ' - '.join([invoice.name, invoice.ref] if invoice.ref else [invoice.name]) + + if invoice.is_outbound(): + invoice_sign = 1 + partial_field = 'debit_amount_currency' + else: + invoice_sign = -1 + partial_field = 'credit_amount_currency' + + if invoice.currency_id.is_zero(invoice.amount_residual): + amount_residual_str = '-' + else: + amount_residual_str = formatLang(self.env, invoice_sign * invoice.amount_residual, currency_obj=invoice.currency_id) + + return { + 'due_date': format_date(self.env, invoice.invoice_date_due), + 'number': number, + 'amount_total': formatLang(self.env, invoice_sign * invoice.amount_total, currency_obj=invoice.currency_id), + 'amount_residual': amount_residual_str, + 'amount_paid': formatLang(self.env, invoice_sign * sum(partials.mapped(partial_field)), currency_obj=self.currency_id), + 'currency': invoice.currency_id, + } + + # Decode the reconciliation to keep only invoices. + term_lines = self.line_ids.filtered(lambda line: line.account_id.internal_type in ('receivable', 'payable')) + invoices = (term_lines.matched_debit_ids.debit_move_id.move_id + term_lines.matched_credit_ids.credit_move_id.move_id)\ + .filtered(lambda x: x.is_outbound()) + invoices = invoices.sorted(lambda x: x.invoice_date_due or x.date) + + # Group partials by invoices. + invoice_map = {invoice: self.env['account.partial.reconcile'] for invoice in invoices} + for partial in term_lines.matched_debit_ids: + invoice = partial.debit_move_id.move_id + if invoice in invoice_map: + invoice_map[invoice] |= partial + for partial in term_lines.matched_credit_ids: + invoice = partial.credit_move_id.move_id + if invoice in invoice_map: + invoice_map[invoice] |= partial + + # Prepare stub_lines. + if 'out_refund' in invoices.mapped('move_type'): + stub_lines = [{'header': True, 'name': "Bills"}] + stub_lines += [prepare_vals(invoice, partials) + for invoice, partials in invoice_map.items() + if invoice.move_type == 'in_invoice'] + stub_lines += [{'header': True, 'name': "Refunds"}] + stub_lines += [prepare_vals(invoice, partials) + for invoice, partials in invoice_map.items() + if invoice.move_type == 'out_refund'] + else: + stub_lines = [prepare_vals(invoice, partials) + for invoice, partials in invoice_map.items() + if invoice.move_type == 'in_invoice'] + + # Crop the stub lines or split them on multiple pages + if not self.company_id.account_check_printing_multi_stub: + # If we need to crop the stub, leave place for an ellipsis line + num_stub_lines = len(stub_lines) > INV_LINES_PER_STUB and INV_LINES_PER_STUB - 1 or INV_LINES_PER_STUB + stub_pages = [stub_lines[:num_stub_lines]] + else: + stub_pages = [] + i = 0 + while i < len(stub_lines): + # Make sure we don't start the credit section at the end of a page + if len(stub_lines) >= i + INV_LINES_PER_STUB and stub_lines[i + INV_LINES_PER_STUB - 1].get('header'): + num_stub_lines = INV_LINES_PER_STUB - 1 or INV_LINES_PER_STUB + else: + num_stub_lines = INV_LINES_PER_STUB + stub_pages.append(stub_lines[i:i + num_stub_lines]) + i += num_stub_lines + + return stub_pages + + def _check_make_stub_line(self, invoice): + """ Return the dict used to display an invoice/refund in the stub + """ + # DEPRECATED: TO BE REMOVED IN MASTER + # Find the account.partial.reconcile which are common to the invoice and the payment + if invoice.move_type in ['in_invoice', 'out_refund']: + invoice_sign = 1 + invoice_payment_reconcile = invoice.line_ids.mapped('matched_debit_ids').filtered(lambda r: r.debit_move_id in self.line_ids) + else: + invoice_sign = -1 + invoice_payment_reconcile = invoice.line_ids.mapped('matched_credit_ids').filtered(lambda r: r.credit_move_id in self.line_ids) + + if self.currency_id != self.journal_id.company_id.currency_id: + amount_paid = abs(sum(invoice_payment_reconcile.mapped('amount_currency'))) + else: + amount_paid = abs(sum(invoice_payment_reconcile.mapped('amount'))) + + amount_residual = invoice_sign * invoice.amount_residual + + return { + 'due_date': format_date(self.env, invoice.invoice_date_due), + 'number': invoice.ref and invoice.name + ' - ' + invoice.ref or invoice.name, + 'amount_total': formatLang(self.env, invoice_sign * invoice.amount_total, currency_obj=invoice.currency_id), + 'amount_residual': formatLang(self.env, amount_residual, currency_obj=invoice.currency_id) if amount_residual * 10**4 != 0 else '-', + 'amount_paid': formatLang(self.env, invoice_sign * amount_paid, currency_obj=self.currency_id), + 'currency': invoice.currency_id, + } diff --git a/addons/account_check_printing/models/res_company.py b/addons/account_check_printing/models/res_company.py new file mode 100644 index 00000000..a96ad9a5 --- /dev/null +++ b/addons/account_check_printing/models/res_company.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- + +from odoo import models, fields + + +class res_company(models.Model): + _inherit = "res.company" + + # This field needs to be overridden with `selection_add` in the modules which intends to add report layouts. + # The xmlID of all the report actions which are actually Check Layouts has to be kept as key of the selection. + account_check_printing_layout = fields.Selection( + string="Check Layout", + selection=[ + ('disabled', 'None'), + ], + default='disabled', + help="Select the format corresponding to the check paper you will be printing your checks on.\n" + "In order to disable the printing feature, select 'None'.", + ) + account_check_printing_date_label = fields.Boolean( + string='Print Date Label', + default=True, + help="This option allows you to print the date label on the check as per CPA.\n" + "Disable this if your pre-printed check includes the date label.", + ) + account_check_printing_multi_stub = fields.Boolean( + string='Multi-Pages Check Stub', + help="This option allows you to print check details (stub) on multiple pages if they don't fit on a single page.", + ) + account_check_printing_margin_top = fields.Float( + string='Check Top Margin', + default=0.25, + help="Adjust the margins of generated checks to make it fit your printer's settings.", + ) + account_check_printing_margin_left = fields.Float( + string='Check Left Margin', + default=0.25, + help="Adjust the margins of generated checks to make it fit your printer's settings.", + ) + account_check_printing_margin_right = fields.Float( + string='Right Margin', + default=0.25, + help="Adjust the margins of generated checks to make it fit your printer's settings.", + ) diff --git a/addons/account_check_printing/models/res_config_settings.py b/addons/account_check_printing/models/res_config_settings.py new file mode 100644 index 00000000..5716e128 --- /dev/null +++ b/addons/account_check_printing/models/res_config_settings.py @@ -0,0 +1,47 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from odoo import fields, models + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + account_check_printing_layout = fields.Selection( + related='company_id.account_check_printing_layout', + string="Check Layout", + readonly=False, + help="Select the format corresponding to the check paper you will be printing your checks on.\n" + "In order to disable the printing feature, select 'None'." + ) + account_check_printing_date_label = fields.Boolean( + related='company_id.account_check_printing_date_label', + string="Print Date Label", + readonly=False, + help="This option allows you to print the date label on the check as per CPA.\n" + "Disable this if your pre-printed check includes the date label." + ) + account_check_printing_multi_stub = fields.Boolean( + related='company_id.account_check_printing_multi_stub', + string='Multi-Pages Check Stub', + readonly=False, + help="This option allows you to print check details (stub) on multiple pages if they don't fit on a single page." + ) + account_check_printing_margin_top = fields.Float( + related='company_id.account_check_printing_margin_top', + string='Check Top Margin', + readonly=False, + help="Adjust the margins of generated checks to make it fit your printer's settings." + ) + account_check_printing_margin_left = fields.Float( + related='company_id.account_check_printing_margin_left', + string='Check Left Margin', + readonly=False, + help="Adjust the margins of generated checks to make it fit your printer's settings." + ) + account_check_printing_margin_right = fields.Float( + related='company_id.account_check_printing_margin_right', + string='Check Right Margin', + readonly=False, + help="Adjust the margins of generated checks to make it fit your printer's settings." + ) diff --git a/addons/account_check_printing/models/res_partner.py b/addons/account_check_printing/models/res_partner.py new file mode 100644 index 00000000..93aca4be --- /dev/null +++ b/addons/account_check_printing/models/res_partner.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + + +from odoo import models, fields + + +class ResPartner(models.Model): + _inherit = 'res.partner' + + property_payment_method_id = fields.Many2one( + comodel_name='account.payment.method', + string='Payment Method', + company_dependent=True, + domain="[('payment_type', '=', 'outbound')]", + help="Preferred payment method when paying this vendor. This is used to filter vendor bills" + " by preferred payment method to register payments in mass. Use cases: create bank" + " files for batch wires, check runs.", + ) diff --git a/addons/account_check_printing/security/ir.model.access.csv b/addons/account_check_printing/security/ir.model.access.csv new file mode 100644 index 00000000..4009faf2 --- /dev/null +++ b/addons/account_check_printing/security/ir.model.access.csv @@ -0,0 +1,2 @@ +"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" +"access_print_prenumbered_checks","access.print.prenumbered.checks","model_print_prenumbered_checks","account.group_account_user",1,1,1,0 diff --git a/addons/account_check_printing/static/description/icon.png b/addons/account_check_printing/static/description/icon.png Binary files differnew file mode 100644 index 00000000..a217bda4 --- /dev/null +++ b/addons/account_check_printing/static/description/icon.png diff --git a/addons/account_check_printing/static/description/icon.svg b/addons/account_check_printing/static/description/icon.svg new file mode 100644 index 00000000..1f94eceb --- /dev/null +++ b/addons/account_check_printing/static/description/icon.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="70" height="70" viewBox="0 0 70 70"><defs><path id="a" d="M4 0h61c4 0 5 1 5 5v60c0 4-1 5-5 5H4c-3 0-4-1-4-5V5c0-4 1-5 4-5z"/><linearGradient id="c" x1="100%" x2="0%" y1="0%" y2="100%"><stop offset="0%" stop-color="#DA956B"/><stop offset="100%" stop-color="#CC7039"/></linearGradient><path id="d" d="M50.25 52.79l-3.61-3.11v-8.95H24.347v14.439H42.08l2.882 3.243h-21.43c-.985 0-1.782-.785-1.782-1.754v-13.59h-3.86a.884.884 0 0 1-.89-.877v-9.648c0-1.938 1.595-3.509 3.563-3.509h1.187v-12.28c0-.969.797-1.754 1.781-1.754h20.637c.473 0 .926.185 1.26.514l4.3 4.235c.334.329.522.775.522 1.24v8.045h1.188c1.967 0 3.562 1.571 3.562 3.509v9.648a.884.884 0 0 1-.89.877h-3.86v9.723zm-21.926-7.05c0 1.41 4.636 1.052 4.636 3.734 0 1.284-1.015 2.381-2.664 2.61v1.063c0 .148-.135.268-.301.268h-1.004c-.166 0-.3-.12-.3-.268v-1.08c-.992-.151-1.875-.56-2.478-1.075a.248.248 0 0 1-.033-.355l.762-.911a.326.326 0 0 1 .431-.048c.625.448 1.433.804 2.204.804.899 0 1.308-.478 1.308-.922 0-1.313-4.636-1.028-4.636-3.796 0-1.18.97-2.136 2.441-2.433v-1.117c0-.148.135-.268.301-.268h1.004c.166 0 .301.12.301.268v1.059c.807.083 1.681.365 2.29.847.105.082.132.219.065.328l-.59.976c-.087.143-.294.185-.442.09-.56-.36-1.248-.635-1.918-.635-.836 0-1.377.338-1.377.86zm-3.977-14.367H46.64v-8.14H43.6c-.676-.022-1.013-.354-1.013-.998v-2.923l-18.24-.07v12.131zm24.715 5.263c.984 0 1.782-.785 1.782-1.754 0-.97-.798-1.755-1.782-1.755-.983 0-1.78.786-1.78 1.755 0 .969.797 1.754 1.78 1.754zm-7.031 12.698c1.61.343 2.64.782 3.089 1.317l5.773 6.88-2.328 1.954-5.774-6.88c-.34-.404-.592-1.495-.76-3.27zm7.072 10.736l2.33-1.954 1.282 1.529c.428.51.383.982-.135 1.416l-.776.651c-.517.434-.99.397-1.418-.113l-1.283-1.529zm.494-5.272l.01-.009a.5.5 0 0 1 .704.062l2.334 2.781a.5.5 0 0 1-.061.705l-.01.008a.5.5 0 0 1-.705-.061l-2.334-2.782a.5.5 0 0 1 .062-.704zM35 44h9v.998h-9V44zm0 3h9v.998h-9V47z"/><path id="e" d="M50.25 50.79l-3.61-3.11v-8.95H24.347v14.439H42.08l2.882 3.243h-21.43c-.985 0-1.782-.785-1.782-1.754v-13.59h-3.86a.884.884 0 0 1-.89-.877v-9.648c0-1.938 1.595-3.509 3.563-3.509h1.187v-12.28c0-.969.797-1.754 1.781-1.754h20.637c.473 0 .926.185 1.26.514l4.3 4.235c.334.329.522.775.522 1.24v8.045h1.188c1.967 0 3.562 1.571 3.562 3.509v9.648a.884.884 0 0 1-.89.877h-3.86v9.723zm-21.926-7.05c0 1.41 4.636 1.052 4.636 3.734 0 1.284-1.015 2.381-2.664 2.61v1.063c0 .148-.135.268-.301.268h-1.004c-.166 0-.3-.12-.3-.268v-1.08c-.992-.151-1.875-.56-2.478-1.075a.248.248 0 0 1-.033-.355l.762-.911a.326.326 0 0 1 .431-.048c.625.448 1.433.804 2.204.804.899 0 1.308-.478 1.308-.922 0-1.313-4.636-1.028-4.636-3.796 0-1.18.97-2.136 2.441-2.433v-1.117c0-.148.135-.268.301-.268h1.004c.166 0 .301.12.301.268v1.059c.807.083 1.681.365 2.29.847.105.082.132.219.065.328l-.59.976c-.087.143-.294.185-.442.09-.56-.36-1.248-.635-1.918-.635-.836 0-1.377.338-1.377.86zm-3.977-14.367H46.64v-8.14H43.6c-.676-.022-1.013-.354-1.013-.998v-2.923l-18.24-.07v12.131zm24.715 5.263c.984 0 1.782-.785 1.782-1.754 0-.97-.798-1.755-1.782-1.755-.983 0-1.78.786-1.78 1.755 0 .969.797 1.754 1.78 1.754zm-7.031 12.698c1.61.343 2.64.782 3.089 1.317l5.773 6.88-2.328 1.954-5.774-6.88c-.34-.404-.592-1.495-.76-3.27zm7.072 10.736l2.33-1.954 1.282 1.529c.428.51.383.982-.135 1.416l-.776.651c-.517.434-.99.397-1.418-.113l-1.283-1.529zm.494-5.272l.01-.009a.5.5 0 0 1 .704.062l2.334 2.781a.5.5 0 0 1-.061.705l-.01.008a.5.5 0 0 1-.705-.061l-2.334-2.782a.5.5 0 0 1 .062-.704zM35 42h9v.998h-9V42zm0 3h9v.998h-9V45z"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><g mask="url(#b)"><path fill="url(#c)" d="M0 0H70V70H0z"/><path fill="#FFF" fill-opacity=".383" d="M4 1h61c2.667 0 4.333.667 5 2V0H0v3c.667-1.333 2-2 4-2z"/><path fill="#393939" d="M42.865 69H4c-2 0-4-1-4-4V38.062l22.272-24.547L24.037 13H44.02L49 17v13h5.814v10.707l-4.599 5.878v4.163l-1.966 2.081.555.876.84-.876 2.964 3.459-.858.636L53 58.5 42.865 69z" opacity=".324"/><path fill="#000" fill-opacity=".383" d="M4 69h61c2.667 0 4.333-1 5-3v4H0v-4c.667 2 2 3 4 3z"/><use fill="#000" fill-rule="nonzero" opacity=".3" xlink:href="#d"/><use fill="#FFF" fill-rule="nonzero" xlink:href="#e"/></g></g></svg>
\ No newline at end of file diff --git a/addons/account_check_printing/tests/__init__.py b/addons/account_check_printing/tests/__init__.py new file mode 100644 index 00000000..e7cb6f95 --- /dev/null +++ b/addons/account_check_printing/tests/__init__.py @@ -0,0 +1 @@ +from . import test_print_check diff --git a/addons/account_check_printing/tests/test_print_check.py b/addons/account_check_printing/tests/test_print_check.py new file mode 100644 index 00000000..59a2299c --- /dev/null +++ b/addons/account_check_printing/tests/test_print_check.py @@ -0,0 +1,135 @@ +# -*- coding: utf-8 -*- +from odoo.addons.account.tests.common import AccountTestInvoicingCommon +from odoo.addons.account_check_printing.models.account_payment import INV_LINES_PER_STUB +from odoo.tests import tagged + +import math + + +@tagged('post_install', '-at_install') +class TestPrintCheck(AccountTestInvoicingCommon): + + @classmethod + def setUpClass(cls, chart_template_ref=None): + super().setUpClass(chart_template_ref=chart_template_ref) + + cls.payment_method_check = cls.env.ref("account_check_printing.account_payment_method_check") + + cls.company_data['default_journal_bank'].write({ + 'outbound_payment_method_ids': [(6, 0, ( + cls.env.ref('account.account_payment_method_manual_out').id, + cls.payment_method_check.id, + ))], + }) + + def test_in_invoice_check_manual_sequencing(self): + ''' Test the check generation for vendor bills. ''' + nb_invoices_to_test = INV_LINES_PER_STUB + 1 + + self.company_data['default_journal_bank'].write({ + 'check_manual_sequencing': True, + 'check_next_number': '00042', + }) + + # Create 10 customer invoices. + in_invoices = self.env['account.move'].create([{ + 'move_type': 'in_invoice', + 'partner_id': self.partner_a.id, + 'date': '2017-01-01', + 'invoice_date': '2017-01-01', + 'invoice_line_ids': [(0, 0, {'product_id': self.product_a.id, 'price_unit': 100.0})] + } for i in range(nb_invoices_to_test)]) + in_invoices.action_post() + + # Create a single payment. + payment = self.env['account.payment.register'].with_context(active_model='account.move', active_ids=in_invoices.ids).create({ + 'group_payment': True, + 'payment_method_id': self.payment_method_check.id, + })._create_payments() + + # Check created payment. + self.assertRecordValues(payment, [{ + 'payment_method_id': self.payment_method_check.id, + 'check_amount_in_words': payment.currency_id.amount_to_text(100.0 * nb_invoices_to_test), + 'check_number': '00042', + }]) + + # Check pages. + self.company_data['company'].account_check_printing_multi_stub = True + report_pages = payment._check_get_pages() + self.assertEqual(len(report_pages), int(math.ceil(len(in_invoices) / INV_LINES_PER_STUB))) + + self.company_data['company'].account_check_printing_multi_stub = False + report_pages = payment._check_get_pages() + self.assertEqual(len(report_pages), 1) + + def test_out_refund_check_manual_sequencing(self): + ''' Test the check generation for refunds. ''' + nb_invoices_to_test = INV_LINES_PER_STUB + 1 + + self.company_data['default_journal_bank'].write({ + 'check_manual_sequencing': True, + 'check_next_number': '00042', + }) + + # Create 10 refunds. + out_refunds = self.env['account.move'].create([{ + 'move_type': 'out_refund', + 'partner_id': self.partner_a.id, + 'date': '2017-01-01', + 'invoice_date': '2017-01-01', + 'invoice_line_ids': [(0, 0, {'product_id': self.product_a.id, 'price_unit': 100.0})] + } for i in range(nb_invoices_to_test)]) + out_refunds.action_post() + + # Create a single payment. + payment = self.env['account.payment.register'].with_context(active_model='account.move', active_ids=out_refunds.ids).create({ + 'group_payment': True, + 'payment_method_id': self.payment_method_check.id, + })._create_payments() + + # Check created payment. + self.assertRecordValues(payment, [{ + 'payment_method_id': self.payment_method_check.id, + 'check_amount_in_words': payment.currency_id.amount_to_text(100.0 * nb_invoices_to_test), + 'check_number': '00042', + }]) + + # Check pages. + self.company_data['company'].account_check_printing_multi_stub = True + report_pages = payment._check_get_pages() + self.assertEqual(len(report_pages), int(math.ceil(len(out_refunds) / INV_LINES_PER_STUB))) + + self.company_data['company'].account_check_printing_multi_stub = False + report_pages = payment._check_get_pages() + self.assertEqual(len(report_pages), 1) + + def test_multi_currency_stub_lines(self): + # Invoice in company's currency: 100$ + invoice = self.env['account.move'].create({ + 'move_type': 'in_invoice', + 'partner_id': self.partner_a.id, + 'date': '2016-01-01', + 'invoice_date': '2016-01-01', + 'invoice_line_ids': [(0, 0, {'product_id': self.product_a.id, 'price_unit': 100.0})] + }) + invoice.action_post() + + # Partial payment in foreign currency: 100Gol = 33.33$. + payment = self.env['account.payment.register'].with_context(active_model='account.move', active_ids=invoice.ids).create({ + 'payment_method_id': self.payment_method_check.id, + 'currency_id': self.currency_data['currency'].id, + 'amount': 100.0, + 'payment_date': '2017-01-01', + })._create_payments() + + stub_pages = payment._check_make_stub_pages() + + self.assertEqual(stub_pages, [[{ + 'due_date': '01/01/2016', + 'number': invoice.name, + 'amount_total': '$ 100.00', + 'amount_residual': '$ 50.00', + 'amount_paid': '150.000 ☺', + 'currency': invoice.currency_id, + }]]) diff --git a/addons/account_check_printing/views/account_journal_views.xml b/addons/account_check_printing/views/account_journal_views.xml new file mode 100644 index 00000000..db8961ff --- /dev/null +++ b/addons/account_check_printing/views/account_journal_views.xml @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="account_journal_dashboard_kanban_view_inherited" model="ir.ui.view"> + <field name="name">account.journal.dashboard.kanban.inherited</field> + <field name="model">account.journal</field> + <field name="inherit_id" ref="account.account_journal_dashboard_kanban_view" /> + <field name="arch" type="xml"> + <xpath expr="//t[@t-name='JournalBodyBankCash']//div[hasclass('o_kanban_primary_right')]" position="inside"> + <div t-if="journal_type == 'bank' and dashboard.num_checks_to_print != 0"> + <div class="row"> + <div class="col-12"> + <a type="object" name="action_checks_to_print"> + <t t-esc="dashboard.num_checks_to_print"/> + <t t-if="dashboard.num_checks_to_print == 1">Check to print</t> + <t t-if="dashboard.num_checks_to_print != 1">Checks to print</t> + </a> + </div> + </div> + </div> + </xpath> + </field> + </record> + + <record id="view_account_journal_form_inherited" model="ir.ui.view"> + <field name="name">account.journal.form.inherited</field> + <field name="model">account.journal</field> + <field name="inherit_id" ref="account.view_account_journal_form" /> + <field name="arch" type="xml"> + <xpath expr="//page[@name='journal_entries']//group[@name='outgoing_payment']" position="after"> + <group string="Check Printing" + attrs="{'invisible': ['|', ('type', '!=', 'bank'), ('check_printing_payment_method_selected', '=', False)]}"> + <field name="check_printing_payment_method_selected" invisible="1"/> + <field name="check_sequence_id" invisible="1"/> + <field name="check_manual_sequencing" + /> + <field name="check_next_number" + attrs="{'invisible': [('check_manual_sequencing', '=', False)]}"/> + </group> + </xpath> + </field> + </record> +</odoo> diff --git a/addons/account_check_printing/views/account_move_views.xml b/addons/account_check_printing/views/account_move_views.xml new file mode 100644 index 00000000..905a9da9 --- /dev/null +++ b/addons/account_check_printing/views/account_move_views.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="view_account_invoice_filter" model="ir.ui.view"> + <field name="name">account.invoice.select.account_check_printing</field> + <field name="model">account.move</field> + <field name="inherit_id" ref="account.view_account_invoice_filter"/> + <field name="arch" type="xml"> + <xpath expr="//search/group/filter[@name='status']" position="after"> + <filter name="preferred_payment_method" context="{'group_by': 'preferred_payment_method_id'}" groups="account.group_account_invoice,account.group_account_readonly"/> + </xpath> + </field> + </record> +</odoo> diff --git a/addons/account_check_printing/views/account_payment_views.xml b/addons/account_check_printing/views/account_payment_views.xml new file mode 100644 index 00000000..d8c52557 --- /dev/null +++ b/addons/account_check_printing/views/account_payment_views.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="view_account_payment_form_inherited" model="ir.ui.view"> + <field name="name">account.payment.form.inherited</field> + <field name="model">account.payment</field> + <field name="inherit_id" ref="account.view_account_payment_form" /> + <field name="arch" type="xml"> + <xpath expr="//button[@name='action_post']" position="before"> + <button name="print_checks" class="oe_highlight" attrs="{'invisible': ['|', '|', ('payment_method_code', '!=', 'check_printing'), ('state', '!=', 'posted'), ('is_move_sent', '=', True)]}" string="Print Check" type="object"/> + <button name="action_unmark_sent" attrs="{'invisible': ['|', ('payment_method_code', '!=', 'check_printing'), ('is_move_sent', '=', False)]}" string="Unmark Sent" type="object"/> + <button name="action_void_check" attrs="{'invisible': ['|', '|', ('payment_method_code', '!=', 'check_printing'), ('state', '!=', 'posted'), ('is_move_sent', '=', False)]}" string="Void Check" type="object"/> + </xpath> + <xpath expr="//div[@name='amount_div']" position="after"> + <field name="check_amount_in_words" attrs="{'invisible': [('payment_method_code', '!=', 'check_printing')]}" groups="base.group_no_one"/> + </xpath> + <xpath expr="//field[@name='ref']" position="after"> + <field name="check_manual_sequencing" invisible="1"/> + <field name="check_number" attrs="{'invisible': ['|', ('payment_method_code', '!=', 'check_printing'), ('check_number', '=', False)]}"/> + </xpath> + <xpath expr="//field[@name='name']" position='before'> + <widget name="web_ribbon" title="Sent" attrs="{'invisible': [('is_move_sent', '!=', True)]}"/> + </xpath> + </field> + </record> + + <record id="view_payment_check_printing_search" model="ir.ui.view"> + <field name="name">account.payment.check.printing.search</field> + <field name="model">account.payment</field> + <field name="inherit_id" ref="account.view_account_payment_search"/> + <field name="arch" type="xml"> + <xpath expr="//filter[@name='activities_overdue']" position="before"> + <separator/> + <filter name="checks_to_send" string="Checks to Print" domain="[('payment_method_id.code', '=', 'check_printing'), ('state', '=', 'posted'), ('is_move_sent', '=', False)]"/> + <separator/> + </xpath> + </field> + </record> + +</odoo> diff --git a/addons/account_check_printing/views/res_config_settings_views.xml b/addons/account_check_printing/views/res_config_settings_views.xml new file mode 100644 index 00000000..969787a7 --- /dev/null +++ b/addons/account_check_printing/views/res_config_settings_views.xml @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="res_config_settings_view_form" model="ir.ui.view"> + <field name="name">res.config.settings.view.form.inherit.account.check.printing</field> + <field name="model">res.config.settings</field> + <field name="inherit_id" ref="account.res_config_settings_view_form"/> + <field name="arch" type="xml"> + <div id="print_bills_payment" position="after"> + <div class="content-group"> + <div class="row mt16"> + <label for="account_check_printing_layout" class="col-lg-4 o_light_label"/> + <field name="account_check_printing_layout" required="True"/> + </div> + <div class="row"> + <label for="account_check_printing_multi_stub" class="col-lg-4 o_light_label"/> + <field name="account_check_printing_multi_stub"/> + </div> + <div class="row"> + <label for="account_check_printing_margin_top" class="col-lg-4 o_light_label"/> + <field name="account_check_printing_margin_top"/> + </div> + <div class="row"> + <label for="account_check_printing_margin_left" class="col-lg-4 o_light_label"/> + <field name="account_check_printing_margin_left"/> + </div> + <div class="row" attrs="{'invisible': [('country_code', '!=', 'CA')]}"> + <label for="account_check_printing_margin_right" class="col-lg-4 o_light_label"/> + <field name="account_check_printing_margin_right"/> + </div> + <div class="row" attrs="{'invisible': [('country_code', '!=', 'CA')]}"> + <label for="account_check_printing_date_label" class="col-lg-4 o_light_label"/> + <field name="account_check_printing_date_label"/> + </div> + </div> + </div> + </field> + </record> +</odoo> diff --git a/addons/account_check_printing/views/res_partner_views.xml b/addons/account_check_printing/views/res_partner_views.xml new file mode 100644 index 00000000..cdd0fa56 --- /dev/null +++ b/addons/account_check_printing/views/res_partner_views.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<odoo> + <record id="view_partner_property_form" model="ir.ui.view"> + <field name="name">res.partner.property.form.inherit</field> + <field name="model">res.partner</field> + <field name="inherit_id" ref="account.view_partner_property_form"/> + <field name="arch" type="xml"> + <field name="property_supplier_payment_term_id" position="after"> + <field name="property_payment_method_id" widget="selection" groups="account.group_account_invoice,account.group_account_readonly"/> + </field> + </field> + </record> +</odoo> diff --git a/addons/account_check_printing/wizard/__init__.py b/addons/account_check_printing/wizard/__init__.py new file mode 100644 index 00000000..2cdbcdb8 --- /dev/null +++ b/addons/account_check_printing/wizard/__init__.py @@ -0,0 +1,4 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +from . import print_prenumbered_checks diff --git a/addons/account_check_printing/wizard/print_prenumbered_checks.py b/addons/account_check_printing/wizard/print_prenumbered_checks.py new file mode 100644 index 00000000..84d4f10a --- /dev/null +++ b/addons/account_check_printing/wizard/print_prenumbered_checks.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import re +from odoo import api, fields, models, _ +from odoo.exceptions import ValidationError + + +class PrintPreNumberedChecks(models.TransientModel): + _name = 'print.prenumbered.checks' + _description = 'Print Pre-numbered Checks' + + next_check_number = fields.Char('Next Check Number', required=True) + + @api.constrains('next_check_number') + def _check_next_check_number(self): + for check in self: + if check.next_check_number and not re.match(r'^[0-9]+$', check.next_check_number): + raise ValidationError(_('Next Check Number should only contains numbers.')) + + def print_checks(self): + check_number = int(self.next_check_number) + number_len = len(self.next_check_number or "") + payments = self.env['account.payment'].browse(self.env.context['payment_ids']) + payments.filtered(lambda r: r.state == 'draft').action_post() + payments.filtered(lambda r: r.state == 'posted' and not r.is_move_sent).write({'is_move_sent': True}) + for payment in payments: + payment.check_number = '%0{}d'.format(number_len) % check_number + check_number += 1 + return payments.do_print_checks() diff --git a/addons/account_check_printing/wizard/print_prenumbered_checks_views.xml b/addons/account_check_printing/wizard/print_prenumbered_checks_views.xml new file mode 100644 index 00000000..b593440c --- /dev/null +++ b/addons/account_check_printing/wizard/print_prenumbered_checks_views.xml @@ -0,0 +1,22 @@ +<?xml version="1.0" ?> +<odoo> + + <record id="print_pre_numbered_checks_view" model="ir.ui.view"> + <field name="name">Print Pre-numbered Checks</field> + <field name="model">print.prenumbered.checks</field> + <field name="arch" type="xml"> + <form string="Print Pre-numbered Checks"> + <p>Please enter the number of the first pre-printed check that you are about to print on.</p> + <p>This will allow to save on payments the number of the corresponding check.</p> + <group> + <field name="next_check_number"/> + </group> + <footer> + <button name="print_checks" string="Print" type="object" class="oe_highlight"/> + <button string="Cancel" class="btn btn-secondary" special="cancel"/> + </footer> + </form> + </field> + </record> + +</odoo> |
