mirror of
https://github.com/bringout/oca-ocb-accounting.git
synced 2026-04-18 04:02:01 +02:00
Initial commit: Accounting packages
This commit is contained in:
commit
4ef34c2317
2661 changed files with 1709616 additions and 0 deletions
52
odoo-bringout-oca-ocb-account_edi/README.md
Normal file
52
odoo-bringout-oca-ocb-account_edi/README.md
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
# Import/Export Invoices From XML/PDF
|
||||
|
||||
|
||||
Electronic Data Interchange
|
||||
=======================================
|
||||
EDI is the electronic interchange of business information using a standardized format.
|
||||
|
||||
This is the base module for import and export of invoices in various EDI formats, and the
|
||||
the transmission of said documents to various parties involved in the exchange (other company,
|
||||
governements, etc.)
|
||||
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
pip install odoo-bringout-oca-ocb-account_edi
|
||||
```
|
||||
|
||||
## Dependencies
|
||||
|
||||
This addon depends on:
|
||||
- account
|
||||
|
||||
## Manifest Information
|
||||
|
||||
- **Name**: Import/Export Invoices From XML/PDF
|
||||
- **Version**: 1.0
|
||||
- **Category**: Accounting/Accounting
|
||||
- **License**: LGPL-3
|
||||
- **Installable**: True
|
||||
|
||||
## Source
|
||||
|
||||
Based on [OCA/OCB](https://github.com/OCA/OCB) branch 16.0, addon `account_edi`.
|
||||
|
||||
## License
|
||||
|
||||
This package maintains the original LGPL-3 license from the upstream Odoo project.
|
||||
|
||||
## Documentation
|
||||
|
||||
- Overview: doc/OVERVIEW.md
|
||||
- Architecture: doc/ARCHITECTURE.md
|
||||
- Models: doc/MODELS.md
|
||||
- Controllers: doc/CONTROLLERS.md
|
||||
- Wizards: doc/WIZARDS.md
|
||||
- Install: doc/INSTALL.md
|
||||
- Usage: doc/USAGE.md
|
||||
- Configuration: doc/CONFIGURATION.md
|
||||
- Dependencies: doc/DEPENDENCIES.md
|
||||
- Troubleshooting: doc/TROUBLESHOOTING.md
|
||||
- FAQ: doc/FAQ.md
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
|
||||
from . import models
|
||||
from . import wizard
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
{
|
||||
'name' : 'Import/Export Invoices From XML/PDF',
|
||||
'description':"""
|
||||
Electronic Data Interchange
|
||||
=======================================
|
||||
EDI is the electronic interchange of business information using a standardized format.
|
||||
|
||||
This is the base module for import and export of invoices in various EDI formats, and the
|
||||
the transmission of said documents to various parties involved in the exchange (other company,
|
||||
governements, etc.)
|
||||
""",
|
||||
'version' : '1.0',
|
||||
'category': 'Accounting/Accounting',
|
||||
'depends' : ['account'],
|
||||
'data': [
|
||||
'security/ir.model.access.csv',
|
||||
'views/account_edi_document_views.xml',
|
||||
'views/account_move_views.xml',
|
||||
'views/account_payment_views.xml',
|
||||
'views/account_journal_views.xml',
|
||||
'data/cron.xml'
|
||||
],
|
||||
'installable': True,
|
||||
'auto_install': True,
|
||||
'license': 'LGPL-3',
|
||||
}
|
||||
Binary file not shown.
12
odoo-bringout-oca-ocb-account_edi/account_edi/data/cron.xml
Normal file
12
odoo-bringout-oca-ocb-account_edi/account_edi/data/cron.xml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<odoo noupdate="1">
|
||||
<record id="ir_cron_edi_network" model="ir.cron">
|
||||
<field name="name">EDI : Perform web services operations</field>
|
||||
<field name="model_id" ref="model_account_edi_document"/>
|
||||
<field name="state">code</field>
|
||||
<field name="code">model._cron_process_documents_web_services(job_count=20)</field>
|
||||
<field name="interval_number">1</field>
|
||||
<field name="interval_type">days</field>
|
||||
<field name="numbercall">-1</field>
|
||||
<field name="active">False</field>
|
||||
</record>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,497 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:26+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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
501
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/af.po
Normal file
501
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/af.po
Normal file
|
|
@ -0,0 +1,501 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Martin Trigaux, 2022\n"
|
||||
"Language-Team: Afrikaans (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Geskep deur"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Geskep op"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vertoningsnaam"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laas Gewysig op"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laas Opgedateer deur"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laas Opgedateer op"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
491
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/am.po
Normal file
491
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/am.po
Normal file
|
|
@ -0,0 +1,491 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Language-Team: Amharic (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
521
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ar.po
Normal file
521
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ar.po
Normal file
|
|
@ -0,0 +1,521 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Malaz Abuidris <msea@odoo.com>, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Arabic (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "خطأ (أخطاء) الفوترة الإلكترونية "
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "معلومات الفوترة الإلكترونية "
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "تحذير (تحذيرات) الفوترة الإلكترونية "
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "تم طلب إلغاء نظام تبادل البيانات إلكترونياً (EDI) "
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "تم إلغاء طلب إلغاء نظام تبادل البيانات إلكترونياً (EDI) "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "مرفق"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "مستوى الحجب "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"يقوم بحجب العملية الجارية في المستند، بناءً على خطورة الخطأ:\n"
|
||||
" * المعلومات: المستند غير محجوب وكل شيء يعمل حسب المطلوب.\n"
|
||||
" * تحذير: يوجد خطأ ما ولكنه لا يحول بين نجاح عملية الفوترة الإلكترونية الجارية.\n"
|
||||
" * خطأ: يوجد خطأ ما يعيق عملية الفوترة الإلكترونية الجارية."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "إلغاء عملية إلغاء نظام تبادل البيانات إلكترونياً (EDI) "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "ملغي"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr "تعذر تعطيل (%s) في هذه اليومية لعدم تزامن كافة المستندات "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "الكود"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "نظام تبادل البيانات إلكترونياً (EDI) متوافق "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "أنشئ بواسطة"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "أنشئ في"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "اسم العرض "
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "عرض العملة "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "تنزيل "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI: أداء عمليات خدمات الويب "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "مستندات EDI "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "صيغة EDI "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
"صيغة نظام تبادل البيانات إلكترونياً (EDI) التي تدعم حركات هذه اليومية "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "مستوى حجب EDI "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "محتوى EDI "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "مستند EDI "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "عدد الأخطاء في نظام EDI "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "رسالة خطأ في نظام EDI "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "صيغة EDI "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "EDI إظهار أو إخفاء زر الإلغاء "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "إظهار زر الإلغاء في EDI "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "خدمات الويب بانتظار المعالجة في نظام EDI "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "تبادل البيانات إلكترونياً "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "مستند إلكتروني لحركة حساب "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "الفوترة الإلكترونية "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "بحاجة إلى معالجة الفوترة الإلكترونية "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "حالة الفوترة الإلكترونية "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "قوالب البريد الإلكتروني "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "خطأ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "اسم الصيغة "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "كم عدد عمليات تبادل البيانات إلكترونياً تواجه خطأً في هذه الحركة؟ "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "المُعرف"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "معلومات"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"تهيئة الفاتورة غير صالحة:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "دفتر اليومية"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "قيد اليومية"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "عنصر اليومية"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخر تعديل في"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخر تحديث بواسطة"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخر تحديث في"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "حركة"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "الاسم"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "مستند EDI واحد فقط لكل حركة لكل صيغة "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "المدفوعات"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "المعالجة الآن "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "وحدة قياس المنتج"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "إعادة إنشاء تسلسل قيود اليومية. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "إجراء التقرير"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "طلب إلغاء EDI "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "إعادة المحاولة"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "إرسال فواتير XML/EDI "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "تم الإرسال"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "الحالة "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "الحالة المجمعة لكافة أنظمة EDI مع خدمات الويب في هذه الحركة "
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"العملة (%s) للمستند الذي تحاول رفعه غير نشطة في قاعدة البيانات هذه. \n"
|
||||
"يرجى تنشيطها وتحديث سعر العملة إذا لزم الأمر، قبل محاولة الاستيراد مجدداً. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"الملف الذي تم إنشاؤه من قِبَل edi_format_id عندا يتم ترحيل الفاتورة (وعندما "
|
||||
"تتم معالجة هذا المستند). "
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr "لقد تم إرسال المتندات التالية بالفعل ولا يمكن إعادة تسلسلها: %s "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"سوف تتم معالجة الفاتورة بشكل غير متزامن من قِبَل خدمة الفوترة الإلكترونية "
|
||||
"التالية: "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"سوف تتم معالجة الدفع بشكل غير متزامن من قِبَل خدمة الفوترة الإلكترونية "
|
||||
"التالية: "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr "نَص آخر خطأ حدث أثناء عملية الفوترة الإلكترونية. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "هذا الكود موجود بالفعل "
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "يتم إرسال هذا المستند في عملية أخرى بالفعل. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "للإلغاء "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "بانتظار الإرسال "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "تحذير"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"لا يمكنك تحرير قيد اليومية التالي %s لأنه قد تم إرسال مستند إلكتروني بالفعل."
|
||||
" الرجاء استخدام زر 'طلب إلغاء تبادل البيانات آلياً (EDI)' عوضاً عن ذلك. "
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr "لا يمكنك إلغاء ربط مرفق بصيغة مستند EDI مُرسَل إلى الحكومة. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ انظر إلى الأخطاء "
|
||||
502
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/az.po
Normal file
502
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/az.po
Normal file
|
|
@ -0,0 +1,502 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Jumshud Sultanov <cumshud@gmail.com>, 2022
|
||||
# erpgo translator <jumshud@erpgo.az>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: erpgo translator <jumshud@erpgo.az>, 2023\n"
|
||||
"Language-Team: Azerbaijani (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Qoşma"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Ləğv olundu"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Tərəfindən yaradılıb"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Tarixdə yaradıldı"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Ekran Adı"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Yüklə"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Elektron Məlumat Mübadiləsi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Elektron faturalandırma"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Email Şablonları"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Xəta"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Məlumat"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Jurnal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Jurnal Girişi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Jurnal Sətirləri"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Dəyişdirilmə tarixi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Yeniləyən"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Yenilənmə tarixi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Hərəkət"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Ad"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Ödənişlər"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Məhsulun Ölçü Vahidi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Hesabat Hərəkəti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Yenidən cəhd edin"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Göndərildi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Dövlət"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Göndərmək"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Xəbərdarlıq"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
501
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/be.po
Normal file
501
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/be.po
Normal file
|
|
@ -0,0 +1,501 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Ivan Shakh, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Ivan Shakh, 2024\n"
|
||||
"Language-Team: Belarusian (https://app.transifex.com/odoo/teams/41243/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: be\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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Прымацаванне"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Стварыў"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створана"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для адлюстравання"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Спампаваць"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Апошняя мадыфікацыя"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Апошні абнавіў"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Апошняе абнаўленне"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Назва"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
507
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/bg.po
Normal file
507
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/bg.po
Normal file
|
|
@ -0,0 +1,507 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# KeyVillage, 2023
|
||||
# aleksandar ivanov, 2023
|
||||
# Albena Mincheva <albena_vicheva@abv.bg>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Maria Boyadjieva <marabo2000@gmail.com>, 2023
|
||||
# Ивайло Малинов <iv.malinov@gmail.com>, 2023
|
||||
# Veselina Slavkova, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Veselina Slavkova, 2025\n"
|
||||
"Language-Team: Bulgarian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Прикачен файл"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Отменен"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Създадено от"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Създадено на"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Име за показване"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Изтеглете от системата"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Имейл шаблони"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Грешка"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Информация"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Дневник"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Записи в Дневника"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Счетоводна Операция"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последна промяна на"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последно актуализирано от"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последно актуализирано на"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Движение"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Име"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Плащания"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Продуктова мерна единица"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Докладване на действие"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Опитай отново"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Изпратен"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Област"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Да се изпрати"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Внимание"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
497
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/bs.po
Normal file
497
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/bs.po
Normal file
|
|
@ -0,0 +1,497 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2025-02-10 08:26+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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr " Greška(e) elektronskog fakturisanja"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr " Info(i) elektronskog fakturisanja"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr " Upozorenje(a) elektronskog fakturisanja"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Zahtjeva za prekid slanja EDI dokumenta je upućen."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Zahtjev za otkazivanjem EDI-ja je povuknut."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Prilog"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Nivo blokiranja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Odustani od EDI otkaza"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Otkazano"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Šifra"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Kompatibilni edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Prikaz valute"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Preuzimanje"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI : Izvršava operacije web usluga"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI Dokumenti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "EDI format koji podržava pokrete u ovom dnevniku"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "EDI nivo blokade"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "EDI sadržaj"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Edi Dokument"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Edi broj grešaka"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "EDI poruka o grešci"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Edi Format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "EDI pokaži dugme za prekid"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Edi prikaži dugme \"Otkaži\""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Edi web servisi za procesiranje"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Electronic Data Interchange"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Elektronski dokument za account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Elektronsko fakturisanje"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Potrebna obrada elektronskog fakturisanja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Stanje elektronskog fakturisanja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Predlošci e-mail poruka"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Greška"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Naziv formata"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Koliko EDI-ja je u grešci za ovaj pokret ?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informacija"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Dnevnik"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Žurnal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Stavka žurnala"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Temeljnica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Samo jedan edi dokument po pomijeranju po formatu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Plaćanja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Procesiraj odmah"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "JMJ artikla"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Ponovi sekvencu zapisa dnevnika."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Akcija izvještaja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "EDI Povrat dokumenta"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Pokušaj ponovo"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Šalji XML/EDI fakture"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Poslano"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "Agregatno stanje svih EDI-ja sa web uslugom ovog pokreta"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Ovaj kod već postoji"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Ovaj dokument je već poslan od strane drugog procesa. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Za otkazati"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Za poslati"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Upozorenje"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ vidi greške"
|
||||
534
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ca.po
Normal file
534
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ca.po
Normal file
|
|
@ -0,0 +1,534 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Manel Fernandez Ramirez <manelfera@outlook.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Quim - coopdevs <quim.rebull@coopdevs.org>, 2022
|
||||
# Denys Sarapulov, 2022
|
||||
# Harcogourmet, 2022
|
||||
# Josep Anton Belchi, 2022
|
||||
# marcescu, 2022
|
||||
# Ivan Espinola, 2022
|
||||
# martioodo hola, 2023
|
||||
# Noemi Pla, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Noemi Pla, 2025\n"
|
||||
"Language-Team: Catalan (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Error(s) de facturació electrònica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Informació/(s) de facturació electrònica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Aví(s) de facturació electrònica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "S'ha sol·licitat la cancel·lació de l'EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "S'ha cancel·lat una sol·licitud de cancel·lació de l'EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Adjunt"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Nivell de bloqueig"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Bloqueja l'operació actual del document en funció de la gravetat de l'error:\n"
|
||||
" * Informació: el document no està bloquejat i tot funciona com deuria.\n"
|
||||
" * Advertiment: hi ha un error que no impedeix el funcionament de l'operació actual de facturació electrònica.\n"
|
||||
" *Error: hi ha un error que bloqueja l'operació actual de facturació electrònica."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Cancel·lació EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancel·lat"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"No es pot desactivar (%s) en aquest diari perquè no tots els documents estan"
|
||||
" sincronitzats"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Codi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Compatible amb EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat per"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat el"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom a mostrar"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Mostra la moneda"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Descarregar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI: executar operacions del servei web"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Documents EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "Format Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Format EDI compatible amb els moviments en aquest diari"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Nivell de bloqueig Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Contingut Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Document Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Nombre d'errors EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Missatge d'error Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Format Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi Mostra el botó de cancel·lació"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Mostrar el botó de cancel·lació EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Serveis web EDI per a processar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Intercanvi de dades electròniques"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Document electrònic per a un account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Factura electrònica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Cal processar la facturació electrònica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Estat de la facturació electrònica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Plantilles de correu electrònic"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Nom del format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Quants EDI són erronis per a aquest moviment?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informació"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Configuració de la factura no vàlida:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Diari"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Assentament comptable"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Apunt comptable"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificació el "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualització per"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualització el"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Assent."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Només un document EDI per assentament i per format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Pagaments"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Processa ara"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Unitat de mesura del producte"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Refés la seqüència d'assentaments."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Acció d'informe"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Sol·licitud de cancel·lació de l'EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Reintentar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Envia les factures XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Enviat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Província"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "L'estat agregat de tots els EDI amb el servei web d'aquest moviment"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"La moneda (%s) del document que esteu carregant no està activa en aquesta base de dades.\n"
|
||||
"Activeu-la i actualitzeu el tipus de canvi si cal abans de tornar a intentar importar."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"El fitxer que genera edi_format_id quan es publica la factura (i un cop que "
|
||||
"es processa el document)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Els següents documents ja han estat enviats i no és possible reseqüenciar-"
|
||||
"los: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"La factura serà processada asíncronament pel següent servei de facturació "
|
||||
"electrònica "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"El pagament es processarà de manera asíncrona pel següent servei de "
|
||||
"facturació electrònica "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"El text de l'últim error que va ocórrer durant l'operació de factura "
|
||||
"electrònica."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Aquest codi ja existeix"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Aquest document ja està sent enviat per un altre procés."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Per cancel·lar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Per enviar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Avís"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"No és possible modificar el següent assentament comptable %s perquè ja s'ha "
|
||||
"enviat un document electrònic. Si us plau, utilitza el botó «Sol·licitar "
|
||||
"cancel·lació d'EDI»."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr "No es pot desvincular un annex sent un document EDI enviat al govern."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Veure errors"
|
||||
532
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/cs.po
Normal file
532
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/cs.po
Normal file
|
|
@ -0,0 +1,532 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# David Kliment <daklime@gmail.com>, 2022
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
# Michal Veselý <michal@veselyberanek.net>, 2022
|
||||
# Jan Horzinka <jan.horzinka@centrum.cz>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# karolína schusterová <karolina.schusterova@vdp.sk>, 2022
|
||||
# Aleš Fiala <f.ales1@seznam.cz>, 2023
|
||||
# Ivana Bartonkova, 2023
|
||||
# Jakub Smolka, 2023
|
||||
# Tomáš Píšek, 2023
|
||||
# Jiří Podhorecký <jirka.p@volny.cz>, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Czech (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Chyba/y elektronické fakturace"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr " Informac(e) o elektronické fakturaci"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr " Upozornění (výstrahy) na elektronickou fakturaci"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Bylo požádáno o zrušení EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Žádost o zrušení EDI byla odvolána."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Příloha"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Úroven chybové hlášky"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Zablokuje současnou operaci nad dokumentem, v závislosti na závážnosti chyby:\n"
|
||||
" * Info: dokument není zablokován a vše běží, jak má.\n"
|
||||
" * Varování: vyskytla se chyba, která neblokuje dokončení současné operace digitální faktury.\n"
|
||||
" * Chyba: vyskytla se chyba která blokuje dokončení současné operace digitální faktury."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Odovlat zrušení EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Zrušeno"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Nelze deaktivovat (%s) v tomto deníku, protože ne všechny dokumenty jsou "
|
||||
"synchronizovány"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Kompatibilní EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvořeno od"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvořeno"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazované jméno"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Zobrazovaná měna"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Stáhnout"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI: provádět operace webových služeb"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI dokumenty"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Formát EDI, který podporuje pohyby v tomto deníku"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "EDI úroveň chybové hlášky"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "EDI obsah"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "EDI document"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Počet chyb EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Chybové hlášení Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Počet chyb EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "EDI zobrazit tlačítko pro zrušení starých záznamů"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Tlačítko zrušení EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Zpracování webových služeb EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Elektronická výměna dat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Elektronický dokument pro účet. Přesunout"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Elektronická fakturace"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Je potřeba zpracovat elektronické faktury"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Stát elektronické fakturace"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Šablony e-mailů"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Chyba"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Název formátu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Kolik EDI je v tomto tahu omylem?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informace"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Neplatné nastavení faktury:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Deník"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Položka deníku"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Položka deníku"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Naposled změněno"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upraveno od"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposled upraveno"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Přesunout"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Jméno"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Pouze jeden EDI dokument přesunutím podle formátu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Platby"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Zpracovat teď"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Měrná jednotka výrobku"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Aktualizace číslování účetních záznamů."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Nahlásit akci"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Požádejte o zrušení EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Znovu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Odesílejte XML / EDI faktury"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Odesláno"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Stav"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "Souhrnný stav všech EDI s webovou službou tohoto pohybu"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"Měna (%s) nahrávaného dokumentu, není v této databázi aktivní.\n"
|
||||
"Dříve nez se znovu pokusíte o import, prosím aktivujte požadovanou měnu a dle potřeby aktualizujte směnné kurzy."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Soubor vygenerovaný edi_format_id při zaúčtování faktury (a zpracování "
|
||||
"tohoto dokumentu)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Následující dokumenty již byly odeslány a nelze je znovu sekvencovat: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Faktura bude zpracována asynchronně touto službou elektronické fakturace: "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Platba bude zpracována asynchronně touto službou elektronické fakturace: "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"Text poslední chyby, ke které došlo během operace Elektronické fakturace."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Tento kód již existuje"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Tento dokument už je odesílán v jiném procesu."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Zrušit"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Poslat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Varování"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Následující položku deníku nemůžete upravit%s protože elektronický dokument "
|
||||
"již byl odeslán. Místo toho použijte tlačítko „Požádat o zrušení EDI“."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Nelze zrušit propojení přílohy, která je dokumentem EDI zaslaným vládě."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Zobrazit chyby"
|
||||
527
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/da.po
Normal file
527
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/da.po
Normal file
|
|
@ -0,0 +1,527 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Mads Søndergaard, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2025
|
||||
# Sammi Iversen <sammi@vkdata.dk>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Sammi Iversen <sammi@vkdata.dk>, 2025\n"
|
||||
"Language-Team: Danish (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Elektronisk faktureringsfejl"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Elektronisk faktureringsinfo"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Elektronisk faktureringsadvarsel(er)"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Der er blevet anmodet om en annullering af EDI'en."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "En anmodning om annullering af EDI'en er blevet tilbagekaldt."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Vedhæftning"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Blokeringsniveau"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Blokerer den aktuelle handling af dokumentet afhængigt af fejlens alvor:\n"
|
||||
" * Info: dokumentet er ikke blokeret og alt fungerer som det skal.\n"
|
||||
"* Advarsel: der er en fejl, der ikke forhindrer den aktuelle elektroniske Fakturering for at lykkes.\n"
|
||||
" * Fejl: der er en fejl, der blokerer for den aktuelle elektroniske fakturering."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Tilbagekald EDI Annullering"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Annulleret"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Kan ikke deaktivere (%s) for denne journal, fordi ikke alle dokumenter er "
|
||||
"synkroniseret"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Kompatible EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oprettet af"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oprettet den"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI : Udfør web tjeneste operationer"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI Dokumenter"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "EDI format der understøtter bevægelser i denne journal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "EDI Blokeringsniveau"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Edi indhold"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "EDI Dokument"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "EDI Antal Fejl"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "EDI Fejlbesked"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "EDI Format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "EDI Vis Opgiv Annuller Knap"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "EDI Vis Annuller Knap"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "EDI Web Tjenester At Behandle"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Elektronisk Data Udveksling"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Elektronisk Dokument for en account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Elektronisk fakturering"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Elektronisk faktureringsbehandling nødvendig"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Elektronisk faktureringsstatus"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "E-mailskabelon"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Fejl"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Format Navn"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Hvor mange EDI'er har fejl i denne bevægelse ?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Information"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Ugyldig faktura konfiguration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Journal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Postering"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Journalpost"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sidst ændret den"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sidst opdateret af"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sidst opdateret den"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Bevægelse"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Kun ét EDI dokument per bevægelse per format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Betalinger"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Behandel nu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Vareenhed"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Genskab sekvensen af journalbilag"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Rapporter handling"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Anmod EDI Annullering"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Forsøg igen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Send XML/EDI Faktura"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Sendt"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Stat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
"Den aggregerede tilstand for alle EDI'er med webservice for dette træk"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Filen der oprettes af edi_format_id når fakturaen posteres (og dette "
|
||||
"dokument er behandlet)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr "Følgende dokumenter er allerede sendt og kan ikke genfølges: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Fakturaen vil blive behandlet asynkront af den følgende "
|
||||
"E-faktureringstjeneste:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Betalingen vil blive behandlet asynkront af den følgende "
|
||||
"E-Faktureringsservice:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"Teksten for den sidste fejl der forekom under afvikling af Elektronisk "
|
||||
"Fakturering"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Denne kode eksisterer allerede"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Dette dokument sendes allerede af en anden proces."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "At Annullere"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "At Sende"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Advarsel"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Du kan ikke redigere den følgende journalpostering %s fordi et elektronisk "
|
||||
"dokument allerede er blevet afsendt. Vær venlig at bruge 'Anmod EDI "
|
||||
"Annullering' knappen i stedet."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Du kan ikke fjerne en vedhæftelse som et EDI dokument afsendt til "
|
||||
"regeringen."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Se fejl"
|
||||
529
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/de.po
Normal file
529
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/de.po
Normal file
|
|
@ -0,0 +1,529 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Larissa Manderfeld, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: German (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr " Fehler bei elektronischer Rechnungsstellung"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr " Info(s) zur elektronischen Rechnungsstellung"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr " Warnhinweis(e) bei elektronischer Rechnungsstellung"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Ein Antrag auf Löschung des EDI wurde gestellt."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Ein Antrag auf Löschung des EDI wurde zurückgenommen."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Dateianhang"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Blockierlevel"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Blockiert den aktuellen Vorgang des Dokuments in Abhängigkeit von der Fehlerschwere:\n"
|
||||
"* Info: Das Dokument ist nicht blockiert und alles funktioniert wie gewünscht.\n"
|
||||
"* Warnung: Es liegt ein Fehler vor, der den aktuellen Vorgang der elektronischen Rechnungsstellung nicht behindert.\n"
|
||||
"* Fehler: Es liegt ein Fehler vor, der den aktuellen Vorgang der elektronischen Rechnungsstellung blockiert."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "EDI-Storno abbrechen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Abgebrochen"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Deaktivierung von (%s) ist für dieses Journal nicht möglich, da nicht alle "
|
||||
"Dokumente synchronisiert sind"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Kompatible EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Erstellt von"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Erstellt am"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Währung anzeigen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Herunterladen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI : Durchführung von Webservice-Vorgängen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI-Dokumente"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI-Format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "EDI-Format, das Buchungen in diesem Journal unterstützt"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "EDI-Blockierlevel"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "EDI-Inhalt"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "EDI-Dokument"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Anzahl EDI-Fehler"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Edi-Fehlermeldung"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "EDi-Format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "EDI-Schaltfläche zum Abbrechen der Stornierung anzeigen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "EDI-Schaltfläche zum Stornieren anzeigen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Zu verarbeitende Edi-Web-Services"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Elektronischer Datenaustausch"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Elektronisches Dokument für einen account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Elektronische Rechnungsstellung"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Verarbeitung elektronischer Rechnungen erforderlich"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Status elektronische Rechnungsstellung"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "E-Mail-Vorlagen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Formatname"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Wie viele EDIs sind bei diesem Vorgang fehlerhaft?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Information"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Ungültige Rechnungskonfiguration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Journal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Journalbuchung"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Buchungszeile"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Letzte Änderung am"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zuletzt aktualisiert von"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zuletzt aktualisiert am"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Buchung"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Nur ein EDi-Dokument pro Buchung pro Format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Zahlungen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Jetzt verarbeiten"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Maßeinheit des Produkts"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Ändern Sie die Reihenfolge der Journalbuchungen."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Berichtsaktion"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "EDI-Storno anfordern"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Wiederholen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "XML/EDI-Rechnungen versenden"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Gesendet"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "Der aggregierte Status aller EDIs mit Web-Service dieser Buchung"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"Die Währung (%s) des Dokuments, das Sie hochladen, ist in dieser Datenbank nicht aktiv.\n"
|
||||
"Bitte aktivieren Sie sie und aktualisieren Sie gegebenenfalls den Wechselkurs, bevor Sie erneut versuchen zu importieren."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Die Datei, die von edi_format_id erzeugt wird, wenn die Rechnung gebucht "
|
||||
"wird (und dieses Dokument verarbeitet wird)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Folgende Dokumente wurden bereits gesendet und können nicht resequenziert "
|
||||
"werden: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Die Rechnung wird asynchron von folgendem Service für elektronische "
|
||||
"Rechnungsstellung bearbeitet:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Die Zahlung wird asynchron von folgendem Service für elektronische "
|
||||
"Rechnungsstellung bearbeitet:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"Der Text des letzten Fehlers, der während des Vorgangs der elektronischen "
|
||||
"Rechnung aufgetreten ist."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Dieser Code existiert bereits"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Dieses Dokument wird bereits von einem anderen Prozess gesendet. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Abzubrechen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Zu senden"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Warnung"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Sie können die folgende Journalbuchung %s nicht bearbeiten, da bereits ein "
|
||||
"elektronisches Dokument versendet wurde. Bitte verwenden Sie stattdessen die"
|
||||
" Schaltfläche „EDI-Storno anfordern“."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Sie können die Verknüpfung eines EDI-Dokuments, das an die Regierung "
|
||||
"gesendet wurde, nicht aufheben."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Fehler anzeigen"
|
||||
530
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/es.po
Normal file
530
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/es.po
Normal file
|
|
@ -0,0 +1,530 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2022
|
||||
# marcescu, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2022
|
||||
# Larissa Manderfeld, 2023
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Spanish (https://app.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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr " Error(es) de la facturación electrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr " Información(es) de la facturación electrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr " Advertencia(s) de la facturación electrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Se ha solicitado una cancelación de EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Se ha cancelado una solicitud de cancelación del EDI "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Archivo adjunto"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Nivel de bloqueo"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Bloquea la operación actual del documento dependiendo de la gravedad del error:\n"
|
||||
"* Información: el documento no está bloqueado y todo funciona como debería.\n"
|
||||
"* Advertencia: hay un error que no impide el funcionamiento de la operación actual de facturación electrónica.\n"
|
||||
"* Error: hay un error que bloquea la operación actual de facturación electrónica."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Suspender la cancelación del EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"No es posible desactivar (%s) en este diario debido a que no se "
|
||||
"sincronizaron todos los documentos"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Compatible con EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre mostrado"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Mostrar la divisa"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Descargar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI: Ejecutar operaciones del servicio web"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Documentos EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "Formato EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Formato EDI compatible con los movimientos en este diario. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Nivel de bloqueo de EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Contenido EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Documento EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Número de errores de EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Mensaje de error de EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Formato EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Mostrar el botón de abandonar cancelación del EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Mostrar botón de cancelación del EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Servicios de web EDI para procesar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Intercambio de Datos Electrónico (EDI, por su sigla en inglés)"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Documento electrónico para un account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Facturación electrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Se necesita procesar la facturación electrónica "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Estado de la facturación electrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Plantillas de correo electrónico"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Nombre de formato"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "¿Cuántos errores de EDI hay en este movimiento?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Información"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"La configuración de la factura no es válida:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Diario"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Asiento contable"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Apunte contable"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Asiento"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Sólo un documento EDI por asiento y por formato"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Pagos"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Procesar ahora"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Unidad de medida del producto"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Haga de nuevo la secuencia de asientos contables."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Acción de informe"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Solicitar cancelación de EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Volver a intentar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Enviar facturas XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Enviado"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
"El estado agregado de todos los EDI con el servicio web de este movimiento"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"La divisa (%s) del documento que está subiendo no está activa en esta base de datos.\n"
|
||||
"Actívela y actualice la tasa de cambio si es necesaria antes de intentar importar el documento de nuevo."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"El archivo que genera edi_format_id cuando se publica la factura (y una vez "
|
||||
"que se procesa el documento)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Los siguientes documentos ya fueron enviados y no se pueden resecuenciar: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Este servicio de facturación electrónica procesará la factura "
|
||||
"asincrónicamente:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Este sistema de facturación electrónica procesará el pago asincrónicamente:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"El texto del último error que surgió durante la operación de la factura "
|
||||
"electrónica."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Este código ya existe"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Este documento ya está siendo enviado por otro proceso. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "A cancelar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "A enviar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Advertencia"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"No puede editar el siguiente asiento contable porque ya se ha enviado un "
|
||||
"documento electrónico %s. En lugar de esto, por favor use botón de "
|
||||
"\"Solicitar cancelación de EDI\"."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Al ser un EDI que se envió al gobierno, no se puede desvincular el adjunto."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Ver errores"
|
||||
530
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/es_MX.po
Normal file
530
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/es_MX.po
Normal file
|
|
@ -0,0 +1,530 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Patricia Gutiérrez Capetillo <pagc@odoo.com>, 2022
|
||||
# Iran Villalobos López, 2023
|
||||
# Fernanda Alvarez, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Fernanda Alvarez, 2025\n"
|
||||
"Language-Team: Spanish (Mexico) (https://app.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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Errores en la facturación electrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Información de la facturación electrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Advertencias en la facturación electrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Se solicitó una cancelación de EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Se suspendió una solicitud para la cancelación del EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Archivo adjunto"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Nivel de bloqueo"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Bloquea la operación actual del documento dependiendo de la gravedad del error:\n"
|
||||
"* Información: el documento no está bloqueado y todo funciona como debería.\n"
|
||||
"* Advertencia: hay un error que no impide el funcionamiento de la operación actual de facturación electrónica.\n"
|
||||
"* Error: hay un error que bloquea la operación actual de facturación electrónica."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Suspender la cancelación del EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"No es posible desactivar (%s) en este diario debido a que no se "
|
||||
"sincronizaron todos los documentos"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "EDI compatible"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creado por"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creado el"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nombre en pantalla"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Mostrar la divisa"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Descargar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI: Ejecutar operaciones del servicio web"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Documentos EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "Formato EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Formato EDI compatible con los movimientos en este diario"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Nivel de bloqueo de EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Contenido EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Documento EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Conteo de errores en el EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Mensaje de error de EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Formato EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Mostrar el botón de abandonar cancelación del EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Mostrar botón de cancelación del EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Servicios de web EDI para procesar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Intercambio electrónico de datos"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Documento electrónico para un account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Facturación electrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Se necesita el procesamiento de la facturación electrónica "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Estado de la facturación electrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Plantillas de correo electrónico"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Nombre de formato"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "¿Cuántos errores de EDI hay en este movimiento?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Información"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Configuración de la factura no válida:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Diario"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Asiento contable"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Apunte contable"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificación el"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última actualización por"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última actualización el"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Asiento"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nombre"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Solo un documento EDI por movimiento y por formato"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Pagos"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Procesar ahora"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Unidad de medida del producto"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Rehaga la secuencia de los asientos contables."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Reportar la acción"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Solicitar la cancelación de EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Reintentar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Enviar facturas XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Enviado"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
"El estado agregado de todos los EDI con el servicio de internet de este "
|
||||
"movimiento"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"La divisa (%s) del documento que está subiendo no está activa en esta base de datos.\n"
|
||||
"Actívela y actualice la tasa de cambio si es necesaria antes de intentar importar el documento de nuevo."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"El archivo que genera edi_format_id cuando se publica la factura (y una vez "
|
||||
"que se procesa el documento)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Los siguientes documentos ya fueron enviados y no se pueden resecuenciar: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Este servicio de facturación electrónica procesará la factura de forma "
|
||||
"asíncrona:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Este sistema de facturación electrónica procesará el pago de forma "
|
||||
"asíncrona:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"El texto del último error que surgió durante la operación de la factura "
|
||||
"electrónica."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Este código ya existe"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Otro proceso ya está enviando este documento."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Por cancelar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Por enviar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Advertencia"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"No puede editar el siguiente asiento contable %s, ya se envió un documento "
|
||||
"electrónico. Use el botón \"Solicitar la cancelación de EDI\"."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Al ser un EDI que se envió al gobierno, no se puede desvincular el archivo "
|
||||
"adjunto."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Ver errores"
|
||||
533
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/et.po
Normal file
533
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/et.po
Normal file
|
|
@ -0,0 +1,533 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Oliver Ernest, 2022
|
||||
# Aveli Kannel <aveli@avalah.ee>, 2022
|
||||
# Egon Raamat <egon@avalah.ee>, 2022
|
||||
# Eneli Õigus <enelioigus@gmail.com>, 2022
|
||||
# Andre Roomet <andreroomet@gmail.com>, 2022
|
||||
# Arma Gedonsky <armagedonsky@hot.ee>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Rivo Zängov <eraser@eraser.ee>, 2022
|
||||
# Triine Aavik <triine@avalah.ee>, 2022
|
||||
# Katrin Kampura, 2023
|
||||
# Kärt Villako, 2024
|
||||
# Anna, 2024
|
||||
# Birgit Vijar, 2024
|
||||
# Stevin Lilla, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Stevin Lilla, 2025\n"
|
||||
"Language-Team: Estonian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Elektroonilise arveldamise veateated"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Elektroonilise arveldamise teave"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Elektroonilise arveldamise hoiatus(ed)"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "EDI tühistamine on taotletud."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
"Elektroonilise andmevahetuse (EDI) tühistamise taotlus on katkestatud."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Manus"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Blokeerimise tase"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Blokeerib dokumendi praeguse toimingu sõltuvalt vea tõsidusest:\n"
|
||||
" * Teave: dokument ei ole blokeeritud ja kõik töötab nagu peab..\n"
|
||||
" * Hoiatus: esineb viga, mis ei takista praegust elektroonilise arveldamise toimingut õnnestumast.\n"
|
||||
" * Viga: esineb viga, mis blokeerib praeguse elektroonilise arveldamise toimingu.."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "EDI tühistamise katkestamine"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Tühistatud"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Ei saa deaktiveerida (%s) sellel andmikul, sest kõik dokumendid ei ole "
|
||||
"sünkroniseeritud"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kood"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Ühilduv Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Loonud"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Loomise kuupäev"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näidatav nimi"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Laadige alla"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI Dokumendid"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI kuju"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "EDI formaat, mis toetab andmikku"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Edi Blokeerimise Tase"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Edi Sisu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Edi dokument"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Edi vigade arv"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Edi veateade"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Edi formaat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi kuva tühistamise nuppu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Edi kuva tühistamise nuppu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Edi Veebiteenused töötlemiseks"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Elektrooniline andmevahetus"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Elektrooniline dokument account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Elektrooniline arveldamine"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Elektroonilise arveldamise töötlemine on vajalik"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Elektroonilise arve esitamise staatus"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "E-kirjade mallid"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Viga"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Formaadi nimetus"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Vigane arve seadistus:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Andmik"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Andmiku kanne"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Andmiku kanderida"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimati muudetud"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimati uuendas"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimati uuendatud"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Kanne"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Ainult üks EDI dokument kande kohta formaadi järgi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Maksed"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Töösse nüüd"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Toote mõõtühik"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Järjesta uuesti raamatupidamise kanded"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Tegevusest teatamine"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Taotle EDI tühistamist"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Proovi uuesti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Saada XML/EDI arved"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Saadetud"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Maakond"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "Kõikide EDI koondstaatus koos veebiteenusega"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Fail, mis loodi edi_format_id poolt kui arve kinnitati (ja see dokumend on "
|
||||
"töödeldud)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Järgmised dokumendid on juba välja saadetud ja neid ei ole võimalik uuesti "
|
||||
"järjestada: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr "Viimase elektroonilise arve toimingu käigus tekkinud vea teade."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "See kood juba eksisteerib"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "See dokument saadetakse teise protsessi käigus. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Tühistamiseks"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Saatmist ootavad"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Hoiatus"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Andmiku kannet ei saa muuta, %s sest elektrooniline dokument on juba "
|
||||
"saadetud. Palun kasuta selle asemel 'Taotle EDI tühistamist' nuppu selle "
|
||||
"asemel."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"EDI dokumendil, mis on saadetud avaliku sektori üksustele ei saa manust "
|
||||
"lahti ühendada."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Vaata veateateid"
|
||||
521
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/fa.po
Normal file
521
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/fa.po
Normal file
|
|
@ -0,0 +1,521 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Hamed Mohammadi <hamed@dehongi.com>, 2023
|
||||
# M.Hossein S.Farvashani <Farvashani@gmail.com>, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# Hamid Darabi, 2023
|
||||
# Hanna Kheradroosta, 2023
|
||||
# Mostafa Barmshory <mostafa.barmshory@gmail.com>, 2024
|
||||
# Tiffany Chang, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Tiffany Chang, 2025\n"
|
||||
"Language-Team: Persian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "خطا(های) صدور فاکتور الکترونیک"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "اطلاعات مربوط به صدور فاکتور الکترونیک ()"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "هشدار(های) صدور فاکتور الکترونیک"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "لغو EDI درخواست شده است."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "درخواست برای لغو EDI لغو شده است."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "پیوست"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "میزان بلوکه کردن"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"عملیات فعلی سند را بسته به شدت خطا متوقف میکند:\n"
|
||||
"اطلاعات: سند متوقف نشده و همه چیز همانطور که باید در جریان است.\n"
|
||||
"هشدار: خطایی وجود دارد که مانع موفقیت عملیات صدور فاکتور الکترونیک نمیشود.\n"
|
||||
"خطا: خطایی وجود دارد که عملیات فعلی صدور فاکتور الکترونیک را متوقف میکند."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "لغو کنسل کردن EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "لغو شد"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"نمی توان (%s) را در این روزنامه غیرفعال کرد زیرا همه اسناد همگام نیستند"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "کد"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Edi سازگار"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ایجاد شده توسط"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ایجادشده در"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "نام نمایشی"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "دانلود"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI: انجام عملیات وب سرویس"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "اسناد EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "فرمت EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "فرمت EDI که از انتقالات در این روزنامه پشتیبانی می کند"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "سطح توقف تبادل الکترونیک دادهها"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "محتوای تبادل الکترونیک دادهها"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "سند Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "تعداد خطاهای Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "پیام خطا در تبادل الکترونیک دادهها"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "فرمت Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "دکمهی لغو تبادل الکترونیک دادهها "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Edi نمایش دکمه لغو"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "خدمات وب Edi برای پردازش"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "تبادل الکترونیکی داده ها"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "سند الکترونیکی برای یک account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "صورتحساب الکترونیکی"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "فاکتور باید به صورت الکترونیک صادر شود"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "وضعیت صدور فاکتور الکترونیک"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "قالب ایمیل"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "خطا"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "نام فرمت"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "چند EDI برای این انتقال خطا دارد؟"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "اطلاعات"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"پیکربندی فاکتور نامعتبر:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "روزنامه"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "داده روزنامه"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "آیتم روزنامه"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "آخرین اصلاح در"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "آخرین تغییر توسط"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "آخرین بروز رسانی در"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "جابجایی"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "نام"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "فقط یک سند edi بر اساس انتقال بر اساس قالب"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "پرداختها"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "اکنون پردازش کنید"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "واحد اندازه گیری محصول"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "دنباله سندهای روزنامه را بازسازی کنید."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "اکشن گزارش"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "درخواست لغو EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "تلاش مجدد"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "فاکتورهای XML/EDI را ارسال کنید"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "ارسال"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "استان"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
"وضعیت کلی تمام تبادلات الکترونیک دادهها همراه با خدمات اینترنتی این سند"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"فایلی که توسط edi_format_id هنگام ارسال فاکتور (و این سند پردازش می شود) "
|
||||
"ایجاد می شود."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr "اسناد زیر قبلاً ارسال شدهاند و نمیتوان دوباره شمارهگذاری کرد: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr "متن آخرین خطای رخ داده در حین عملیات فاکتور الکترونیکی."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "این کد از قبل وجود دارد"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "این سند قبلاً با فرآیند دیگری ارسال شده است."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "برای لغو"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "برای ارسال"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "هشدار"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"شما نمی توانید ورودی روزنامه %s زیر را ویرایش کنید زیرا یک سند الکترونیکی "
|
||||
"قبلا ارسال شده است. لطفاً به جای آن از دکمه «درخواست لغو EDI» استفاده کنید."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"نمیتوانید پیوستی را که یک سند EDI ارسال شده به دولت است، لغو لینک کنید."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ خطاها را ببینید"
|
||||
532
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/fi.po
Normal file
532
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/fi.po
Normal file
|
|
@ -0,0 +1,532 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Veikko Väätäjä <veikko.vaataja@gmail.com>, 2022
|
||||
# Eino Mäkitalo <eino.makitalo@netitbe.fi>, 2022
|
||||
# Kari Lindgren <kari.lindgren@emsystems.fi>, 2022
|
||||
# Joakim Weckman, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2022
|
||||
# Tuomo Aura <tuomo.aura@web-veistamo.fi>, 2022
|
||||
# Ossi Mantylahti <ossi.mantylahti@obs-solutions.fi>, 2023
|
||||
# Jessica Jakara, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Finnish (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr " Sähköisen laskutuksen virheet"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr " Sähköisen laskutuksen huomio"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr " Sähköisen laskutuksen varoitukset"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "EDI-sanoman peruutusta on pyydetty."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "EDI-sanoman peruutuksen pyyntö on peruttu."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Liite"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Estotaso"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Estää asiakirjan nykyisen toiminnan virheen vakavuuden mukaisesti:\n"
|
||||
" * Info: asiakirjaa ei ole estetty ja kaikki toimii suunnitellusti.\n"
|
||||
" * Varoitus: virhe, joka ei estä sähköisen laskutuksen onnistumasta.\n"
|
||||
" * Virhe: Virhe, joka estää sähköisen laskutuksen käsittelyn."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Peruuta EDI-sanoman peruutus"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Peruttu"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Ei voida kytkeä pois päältä (%s) tästä päiväkirjasta, koska kaikkia "
|
||||
"dokumentteja ei ole synkronoitu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Koodi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Yhteensopiva EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Luonut"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Luotu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Näytä valuutta"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Lataa"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI: Käynnistä web service -operaatio"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI-asiakirjat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI-muoto"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "EDI-muoto, joka tukee tämän päiväkirjan kirjauksia"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "EDI-estotaso"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "EDI-sisältö"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "EDI-asiakirja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "EDI-virheiden määrä"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "EDI-virheviesti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "EDI-muoto"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "EDI Näytä Hylkää peruutus -nappi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "EDI näytä Peruuta-painike"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "EDI web servicejä käsiteltävänä"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Electronic Data Interchange"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Sähköinen EDI-dokumentti kirjaukselle"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Sähköinen laskutus"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Tarvitaan sähköisen laskutuksen käsittelyä"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Sähköisen laskutuksen tila"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Sähköpostimallit"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Virhe"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Muodon nimi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Kuinka monta EDI-virhettä tässä kirjauksessa on?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Virheellinen laskun määritys:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Päiväkirja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Päiväkirjan kirjaus"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Päiväkirjatapahtuma"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Viimeksi muokattu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Viimeksi päivittänyt"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Viimeksi päivitetty"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Siirto"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nimi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Vain yksi EDI-dokumentti kirjauksen ja muodon mukaan"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Maksut"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Käsittele nyt"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Tuotteen yksikkö"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Luo päiväkirjavientien sekvenssi uudelleen."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Raporttin"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Pyydä EDI-peruutusta"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Yritä uudelleen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Lähetä XML/EDI-laskut"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Lähetetty"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Tila"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "Tämän kirjauksen kaikkien EDI web servicedien yhteenluettu tila"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"Lataamasi asiakirjan valuutta (%s) ei ole aktiivinen tietokannassa.\n"
|
||||
"Aktivoi valuutta ja päivitä valuuttakurssi ennen kuin yrität tuoda uudelleen."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Tiedosto, jonka edi_format_id luo, kun kun lasku kirjataan (ja tämä "
|
||||
"dokumentti käsitellään)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Seuraavat asiakirjat on jo lähetetty ja niitä ei voida sekvensoida "
|
||||
"uudelleen: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Lasku käsitellään asynkronisesti seuraavaa e-laskutuspalvelua käyttäen:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Maksu käsitellään asynkronisesti seuraavaa e-laskutuspalvelua käyttäen:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr "Viimeisin virhe, joka esiintyi sähköisen laskutuksen operaatiosta."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Koodi on jo olemassa"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Joku toinen prosessi on jo lähettämässä tätä dokumenttia "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Peruttava"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Lähetettäväksi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Varoitus"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Et voi muokata seuraavaa päiväkirjakirjausta %s, koska sähköinen asiakirja "
|
||||
"on jo lähetetty. Käytä sen sijaan 'Pyydä EDI-peruutusta' -painiketta."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Et voi poistaa liitteen linkitystä, koska se on viranomaiselle lähetetty "
|
||||
"EDI-asiakirja."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Katso virheet"
|
||||
531
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/fr.po
Normal file
531
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/fr.po
Normal file
|
|
@ -0,0 +1,531 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Cécile Collart <cco@odoo.com>, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
# Manon Rondou, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: French (https://app.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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Erreur(s) de facturation électronique"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Informations de facturation électronique"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Avertissement(s) sur la facturation électronique"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Une annulation de l'EDI a été demandée."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Une demande d'annulation de l'EDI a été révoquée."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Pièce jointe"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Niveau de blocage"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Bloque l'opération en cours du document en fonction de la gravité de l'erreur :\n"
|
||||
"* Info : le document n'est pas bloqué et tout fonctionne comme il se doit.\n"
|
||||
"* Attention : il y a une erreur qui n'empêche pas l'opération de facturation électronique en cours de réussir.\n"
|
||||
"* Erreur : il y a une erreur qui bloque l'opération de facturation électronique en cours."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Abandonner la demande d'annulation de l'EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Annulé"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Impossible de désactiver (%s) sur ce journal car tous les documents ne sont "
|
||||
"pas synchronisés"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Compatible Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Créé par"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Créé le"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Afficher la devise"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Télécharger"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI : Réaliser des opérations de services web"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Documents EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "Format EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Format EDI qui prend en charge les mouvements dans ce journal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Niveau de blocage EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Contenu EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Document Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Nombre d'erreurs Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Message d'erreur Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Format Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi afficher le bouton Ignorer l'annulation"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Edi afficher le bouton d'annulation"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Services web Edi à traiter"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Échange de données informatisé"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Document électronique pour un account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Facturation électronique"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Traitement de la facturation électronique nécessaire"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "État de la facturation électronique"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Modèles d'e-mail"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Erreur"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Format du nom"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Combien d'EDIs sont en statut d'erreur pour ce mouvement ?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Configuration de la facture invalide :\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Journal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Pièce comptable"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Écriture comptable"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Dernière modification le"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Dernière mise à jour par"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Dernière mise à jour le"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Mouvement"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Seulement un document edi par mouvement par format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Paiements"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Traiter maintenant"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Unité de mesure de produit"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Refaire la séquence des pièces comptables."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Action de rapport"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Demande d'annulation EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Réessayer"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Envoyer des factures XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Envoyé"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "État"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "L'état agrégé de tous les EDI avec le service web de ce mouvement."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"La devise (%s) du document que vous téléchargez n'est pas active dans cette base de données.\n"
|
||||
"Veuillez l'activer et mettre à jour le taux de change si nécessaire avant de recommencer l'import."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Le fichier généré par edi_format_id lorsque les factures sont publiées (et "
|
||||
"ce document est traité)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Les documents suivants ont déjà été envoyés et ne peuvent pas être "
|
||||
"réordonnés : %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"La facture sera traitée de manière asynchrone par le service de facturation "
|
||||
"électronique suivant :"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Le paiement sera traité de manière asynchrone par le service de facturation "
|
||||
"électronique suivant :"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"Le test de la dernière erreur qui s'est produite lors de l'opération de "
|
||||
"facturation électronique."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Ce code existe déjà"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Ce document est déjà envoyé via un autre processus. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "À annuler"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "À envoyer"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Avertissement"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Vous ne pouvez modifier la pièce comptable suivante %s car un document "
|
||||
"électronique a déjà été envoyé. Veuillez plutôt utiliser le bouton 'Demande "
|
||||
"d'annulation EDI'."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Vous ne pouvez pas délier une pièce jointe qui est un document EDI envoyé au"
|
||||
" gouvernement."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Voir les erreurs"
|
||||
501
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/gu.po
Normal file
501
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/gu.po
Normal file
|
|
@ -0,0 +1,501 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Qaidjohar Barbhaya, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Qaidjohar Barbhaya, 2025\n"
|
||||
"Language-Team: Gujarati (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelled"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Created by"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Created on"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Display Name"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Journal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Journal Entry"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Journal Item"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Last Modified on"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Last Updated on"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Name"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Payments"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Remake the sequence of Journal Entries."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Report Action"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Sent"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Warning"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
519
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/he.po
Normal file
519
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/he.po
Normal file
|
|
@ -0,0 +1,519 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Sagi Ahiel, 2022
|
||||
# Ofir Blum <ofir.blum@gmail.com>, 2022
|
||||
# שהאב חוסיין <shhab89@gmail.com>, 2022
|
||||
# ZVI BLONDER <ZVIBLONDER@gmail.com>, 2022
|
||||
# Lilach Gilliam <lilach.gilliam@gmail.com>, 2022
|
||||
# Hed Shefer <hed@laylinetech.com>, 2022
|
||||
# Yihya Hugirat <hugirat@gmail.com>, 2022
|
||||
# NoaFarkash, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Ha Ketem <haketem@gmail.com>, 2022
|
||||
# yael terner, 2023
|
||||
# Netta Waizer, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Netta Waizer, 2025\n"
|
||||
"Language-Team: Hebrew (https://app.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=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;\n"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "שגיאה בחשבונית הדיגיטלית "
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "פרטי חשבונית דיגיטלית"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "אזהרות לגבי חשבונית דיגיטלית"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "התבקש ביטול של ה-EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "קובץ מצורף"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "רמת חסימה"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"חוסם את פעולת המסמך לפי רמת החומרה של השגיאה:\n"
|
||||
" * מידע: המסמך לא נחסם והכל עובד כמו שצריך.\n"
|
||||
" * יש בעיה שלא מפריעה ליצירת חשבונית אלקטרונית מוצלחת\n"
|
||||
" * שגיאה: יש שגיאה שחוסמת את פעולה יצירת החשבונית."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "בוטל"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "קוד"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "ממשק מתאים לביצוע התאמות"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "נוצר על-ידי"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "נוצר ב-"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "שם לתצוגה"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "הצגת סוג מטבע"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "הורד"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "מסמכי EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "פורמט EDI המאפשר התאמת תנועות ביומן זה"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "רמת חסימת EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "מסמך EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "מספר שגיאות EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "הודעת שגיאה EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "חשבונית דיגיטלית"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "חשבונית דיגיטלית"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "תבניות דוא\"ל"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "שגיאה"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "שם הפורמט"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "מזהה"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "מידע"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"הגדרות חשבונית לא תקינה:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "יומן"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "פקודת יומן"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "תנועת יומן"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "שינוי אחרון ב"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "עודכן לאחרונה על-ידי"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "עדכון אחרון ב"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "תנועה"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "שם"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "תשלומים"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "לעבד עכשיו"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "יחידת מידה של מוצר"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "עשה מחדש את רצף רשומות היומן."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "פעולת דוח"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "נסה שוב"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "שליחת חשבוניות XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "נשלח"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "סטטוס"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "הקוד הזה כבר קיים"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "המסמך הזה כבר נשלח על-ידי תהליך אחר."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "לביטול"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "בטיוטה "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "אזהרה"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "צפיה בשגיאות ⇒"
|
||||
525
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/hi.po
Normal file
525
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/hi.po
Normal file
|
|
@ -0,0 +1,525 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2023
|
||||
# Wil Odoo, 2024
|
||||
# Manav Shah, 2025
|
||||
# Ujjawal Pathak, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Ujjawal Pathak, 2025\n"
|
||||
"Language-Team: Hindi (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "ईडीआई को रद्द करेन का अनुरोध किया गया है."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "ईडीआई रद्द करने का अनुरोध वापस ले लिया गया है."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "अटैचमेंट"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "ब्लॉकिंग लेवल"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"यह संदेश बताता है कि दस्तावेज़ पर चल रहे काम पर, गलती कितनी गंभीर है, उसके हिसाब से क्या असर पड़ेगा:\n"
|
||||
"* जानकारी: कोई दिक्कत नहीं है, दस्तावेज़ पर काम ठीक से हो रहा है.\n"
|
||||
"* चेतावनी: कोई गलती है, लेकिन इससे इलेक्ट्रॉनिक इनवॉइस बनाने का काम रुकेगा नहीं.\n"
|
||||
"* गड़बड़ी: कोई ऐसी गलती है जिससे इलेक्ट्रॉनिक इनवॉइस बनाने का काम पूरी तरह से रुक जाएगा."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "ईडीआई रद्द करने का अनुरोध वापस लें"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "निरस्त"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"इस जर्नल पर (%s) को बंद नहीं कर सकते, क्योंकि सभी दस्तावेज़ सिंक नहीं हुए "
|
||||
"हैं"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "कोड"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "बदलाव किए जा सकने वाले ईडीआई"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "द्वारा निर्मित"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "इस तारीख को बनाया गया"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "डिस्प्ले नाम"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "डाउनलोड"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "ईडीआई दस्तावेज़"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "ईडीआई फ़ॉर्मैट"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "ईडीआई फ़ॉर्मेट जो इस जर्नल की एंट्रीज़ के साथ काम करता है"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "ईडीआई ब्लॉकिंग लेवल"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "ईडीआई कॉन्टेंट"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "ईडीआई दस्तावेज"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "ईडीआई गड़बड़ी की संख्या"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "ईडीआई गड़बड़ी का मैसेज"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "ईडीआई फ़ॉर्मैट"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "ईडीआई"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "ईडीआई में 'रद्द करें' बटन दिखाएं"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "प्रोसेस करने के लिए ईडीआई वेब सर्विस"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "इलेक्ट्रॉनिक डेटा इंटरचेंज"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "account.move के लिए इलेक्ट्रॉनिक दस्तावेज़"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "इलेक्ट्रॉनिक इनवॉइसिंग"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "इलेक्ट्रॉनिक इनवॉइस बनाने का काम करना है"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "इलेक्ट्रॉनिक इनवॉइसिंग स्टेट"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "ईमेल टेंप्लेट"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "त्रुटि!"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "फॉर्मेट का नाम"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "आईडी"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "जानकारी"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"अमान्य इनवॉइस सेटिंग:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "पत्रिका"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "जर्नल एंट्री"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "जर्नल आइटम"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "इन्होंने आखिरी बार अपडेट किया"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "आखिरी बार अपडेट हुआ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "मूव"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "नाम"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "एक लेन-देन और एक फ़ॉर्मेट के लिए एक ही ईडीआई दस्तावेज़ होगा"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "पेमेंट"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "अभी प्रोसेस करें"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "प्रॉडक्ट माप की इकाई"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "जर्नल एंट्रीज़ के सिक्वेंस को फिर से बनाएं"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "रिपोर्ट ऐक्शन"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "ईडीआई रद्द करने का अनुरोध करें"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "दोबारा कोशिश करें"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "XML/EDI इनवॉइस भेजें"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "भेजा गया"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "स्थिति"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
"इस लेन-देन के सभी ईडीआई की कुल स्थिति, खासकर जब वे ऑनलाइन सिस्टम से जुड़े "
|
||||
"हों"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"यह फ़ाइल तब बनती है जब आप इनवॉइस को फाइनल करते हैं और यह काम edi_format_id "
|
||||
"करता है (और यह दस्तावेज़ प्रोसेस किया जाता है)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"जिन दस्तावेज़ों का उल्लेख किया गया है (%s), वे पहले ही भेजे जा चुके हैं, "
|
||||
"इसलिए अब आप उनके क्रम को बदल नहीं सकते."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"यह उस अंतिम गलती का विवरण है जो इलेक्ट्रॉनिक इनवॉइस का काम करते समय हुई थी."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "यह कोड पहले से ही मौजूद है"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "यह दस्तावेज़ अभी कोई और सिस्टम भेज रहा है."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "रद्द करने के लिए"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "भेजने के लिए"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "चेतावनी"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"आप इस जर्नल एंट्री %s में बदलाव नहीं कर सकते, क्योंकि इसका इलेक्ट्रॉनिक "
|
||||
"दस्तावेज़ पहले ही भेजा जा चुका है. अगर आप इसे रद्द करना चाहते हैं, तो 'ईडीआई"
|
||||
" रद्द करने का अनुरोध करें' बटन का इस्तेमाल करें."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"आप उस अटैचमेंट को हटा नहीं सकते जो एक ईडीआई दस्तावेज़ है और जिसे सरकार को "
|
||||
"भेजा जा चुका है."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ गड़बड़ियां देखें"
|
||||
505
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/hr.po
Normal file
505
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/hr.po
Normal file
|
|
@ -0,0 +1,505 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Tina Milas, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Bole <bole@dajmi5.com>, 2022
|
||||
# Vladimir Olujić <olujic.vladimir@storm.hr>, 2022
|
||||
# Luka Carević <luka@uvid.hr>, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Luka Carević <luka@uvid.hr>, 2024\n"
|
||||
"Language-Team: Croatian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Prilog"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Otkazano"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Šifra"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Preuzimanje"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI Dokumenti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Edi Dokument"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Edi broj grešaka"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Edi Format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Edi prikaži gumb \"Otkaži\""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Electronic Data Interchange"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Predlošci e-mail poruka"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Greška"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informacija"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Dnevnik"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Temeljnica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Stavka dnevnika"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnja promjena"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Promijenio"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Vrijeme promjene"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Temeljnica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Plaćanja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "JM proizvoda"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Akcija izvještaja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Pokušaj ponovo"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Šalji XML/EDI račune"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Poslano"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Županija"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Za otkazati"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Za poslati"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Upozorenje"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ vidi greške"
|
||||
508
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/hu.po
Normal file
508
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/hu.po
Normal file
|
|
@ -0,0 +1,508 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Tamás Dombos, 2022
|
||||
# Ákos Nagy <akos.nagy@oregional.hu>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Krisztián Juhász <juhasz.krisztian@josafar.hu>, 2022
|
||||
# gezza <geza.nagy@oregional.hu>, 2022
|
||||
# Tamás Németh <ntomasz81@gmail.com>, 2022
|
||||
# krnkris, 2022
|
||||
# Valics Lehel, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Valics Lehel, 2025\n"
|
||||
"Language-Team: Hungarian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Melléklet"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Törölve"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Létrehozta"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Létrehozva"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Letöltés"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Elektronikus Adatcsere"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "E-mail sablonok"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Hiba"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "Azonosító"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Információ"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Napló"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Könyvelési tétel"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Könyvelési tételsor"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Legutóbb frissítve"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Frissítette"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Frissítve ekkor"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Mozgás"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Név"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Vevői befizetések"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Termék mértékegység"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Készítse el újra a naplóbejegyzések sorrendjét"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Kimutatás művelet"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Újra"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Elküldött"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Állam"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Elküldendő"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Figyelmeztetés"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
491
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/hy.po
Normal file
491
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/hy.po
Normal file
|
|
@ -0,0 +1,491 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Language-Team: Armenian (https://app.transifex.com/odoo/teams/41243/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: hy\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
524
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/id.po
Normal file
524
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/id.po
Normal file
|
|
@ -0,0 +1,524 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Abe Manyo, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Indonesian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Error faktur elektronik"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Informasi faktur elektronik"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Peringatan faktur elektronik"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Pembatalan EDI telah diminta."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Permintaan pembatalan EDI telah dibatalkan."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Lampiran"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Level Pembolkiran"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Memblokir pengoperasian saat ini untuk dokumen tergantung besarnya error:\n"
|
||||
" * Info: dokumen tidak diblokir dan semuanya bekerja seperti semestinya.\n"
|
||||
" * Peringatan: terdapat error yang tidak mencegah operasi Faktur Elektronik untuk berhasil.\n"
|
||||
" * Error: terdapat error yang memblokir pengoperasian Faktur Elektronik."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Batalkan Pembatalan EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Dibatalkan"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Tidak dapat dinonaktifkan (%s) pada jurnal ini karena tidak semua dokumen "
|
||||
"disinkronisasi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "EDI kompatibel"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dibuat oleh"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dibuat pada"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama Tampilan"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Tampilkan mata uang"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Unduh"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI : Lakukan operasi layanan web"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Dokumen EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "Format EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Format EDI yang mendukung pergerakan di jurnal ini"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Level Blokir EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Konten EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Dokumen EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Jumlah Error EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Pesan Error EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Format EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "EDI Tunjukkan Tombol Abaikan Pembatalan"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "EDI Tunjukkan Tombol Batal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "EDI Layanan Web Untuk Diproses"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Electronic Data Interchange (EDI)"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Dokumen Elektronik untuk account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Faktur elektronik"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Pemrosesan faktur elektronik dibutuhkan"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Status faktur elektronik"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Templat Email"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Error!"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Format Nama"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Berapa banyak EDI yang mengalami error untuk pergerakan ini ?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informasi"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Konfigurasi faktur tidak valid:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Jurnal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Entri Jurnal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item Jurnal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir diubah pada"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Terakhir diperbarui oleh"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Terakhir diperbarui pada"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Pergerakan"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nama"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Hanya satu dokumen edi per pergerakan per format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Pembayaran"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Proses sekarang"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Satuan Produk"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Buat kembali nomor urut dari Entri Jurnal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Report Action"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Permintaan Pembatalan EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Ulangi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Kirim faktur XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Terkirim"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
"Status agregat untuk semua EDI dengan layanan-web untuk pergerakan ini"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"Mata uang (%s) dari dokumen yang Anda unggah tidak aktif di database ini.\n"
|
||||
"Mohon ktifkan dan update currency rate bila ANda membutuhkannya sebelum mencoba mengimpor lagi."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"File yang dibuat oleh edi_format_id saat faktur dipost (dan dokumen ini "
|
||||
"diproses)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Dokumen-dokumen berikut sudah dikirim dan tidak dapat diurutkan ulang: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Faktur akan diproses secara asinkron dengan mengikuti layanan E-faktur :"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Pembayaran akan diproses secara asinkron dengan mengikuti layanan E-faktur :"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr "Teks dari error terakhir yang terjadi pada operasi Faktur Elektronik"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Kode ini sudah tersedia"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Dokumen ini sedang dikirim oleh proses yang lain."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Untuk Membatalkan"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Untuk Mengirim"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Peringatan"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Anda tidak dapat mengedit entri jurnal berikut %s karena dokumen elektronik "
|
||||
"sudah dikirim. Mohon gunakan tombol 'Permintaan Pembatalan EDI'. "
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Anda tidak dapat menghapus link lampiran yang merupakan dokumen EDI yang "
|
||||
"dikirim ke pemerintah."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Lihat error"
|
||||
519
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/is.po
Normal file
519
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/is.po
Normal file
|
|
@ -0,0 +1,519 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Heiðar Sigurðsson, 2022
|
||||
# jonasyngvi, 2024
|
||||
# Kristófer Arnþórsson, 2024
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Kristófer Arnþórsson, 2024\n"
|
||||
"Language-Team: Icelandic (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr " Rafræn innheimtuvilla(ur)"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr " Upplýsingar um rafræna reikninga"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr " Rafræn reikningsviðvörun(ar)"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Óskað hefur verið eftir niðurfellingu á EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Beiðni um niðurfellingu á EDI hefur verið hætt."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Viðhengi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Lokunarstig"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Lokar núverandi aðgerð skjalsins eftir alvarleika villunnar:\n"
|
||||
" * Upplýsingar: skjalið er ekki læst og allt virkar eins og það á að gera.\n"
|
||||
" * Viðvörun: það er villa sem kemur ekki í veg fyrir að núverandi rafræn reikningagerð takist.\n"
|
||||
" * Villa: það er villa sem hindrar núverandi rafræna innheimtuaðgerð."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Aflýsa EDI afpöntun"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Eytt"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Ekki er hægt að óvirkja (%s) á þessari dagbók vegna þess að ekki eru öll "
|
||||
"skjöl samstillt"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kóði"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Samhæft Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Búið til af"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Búið til þann"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Birtingarnafn"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Sækja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI skjöl"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI snið"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "EDI snið sem styður hreyfingar í þessari dagbók"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Edi blokkunarstig"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Edi Efni"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Edi skjal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Edi villufjöldi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Edi villuboð"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Edi snið"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi Show Abandon Cancel Button"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Edi Show Cancel Button"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Edi vefþjónusta til vinnslu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Rafræn skjal fyrir account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Rafræn reikningagerð"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Rafræn reikningsvinnsla þarf"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Staða rafrænna reikninga"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Villa"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Snið nafn"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "Auðkenni (ID)"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Upplýsingar"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Ógild reikningsstilling:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Færslubók"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Dagbókarfærsla"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Síðast uppfært af"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Síðast uppfært þann"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Færa"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nafn"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Aðeins eitt edi skjal með því að færa eftir sniði"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Greiðslur"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Ferlið núna"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Tilkynna aðgerð"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Biðja um EDI niðurfellingu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Reyna"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Senda XML/EDI reikninga"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Sent"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Fylki"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "Samanlagt ástand allra EDI með vefþjónustu þessa flutnings"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Skráin sem myndast af edi_format_id þegar reikningurinn er bókaður (og þetta"
|
||||
" skjal er unnið)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr "Texti síðustu villu sem varð við notkun rafræns reiknings."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Þessi kóði er þegar til"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Nú þegar er verið að senda þetta skjal með öðru ferli. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Að hætta við"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Til að senda"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Aðvörun"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Þú getur ekki breytt eftirfarandi dagbókarfærslu %s vegna þess að rafrænt "
|
||||
"skjal hefur þegar verið sent. Vinsamlegast notaðu hnappinn 'Biðja um EDI "
|
||||
"afpöntun' í staðinn."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Þú getur ekki aftengt viðhengi sem er EDI skjal sem er sent til stjórnvalda."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Sjá villur"
|
||||
531
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/it.po
Normal file
531
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/it.po
Normal file
|
|
@ -0,0 +1,531 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Odoo - Paolo Gatti (pgi), 2023
|
||||
# Marianna Ciofani, 2024
|
||||
# Wil Odoo, 2025
|
||||
# Sergio Zanchetta <primes2h@gmail.com>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Sergio Zanchetta <primes2h@gmail.com>, 2025\n"
|
||||
"Language-Team: Italian (https://app.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=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Errori fatturazione elettronica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Informazioni fatturazione elettronica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Avvisi fatturazione elettronica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "È stato richiesto un annullamento di EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Una richiesta di annullamento EDI è stata annullata."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Allegato"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Livello errore"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Blocca l'operazione corrente rispetto al livello d'errore:\n"
|
||||
" * Info: il documento non è bloccato e tutto funziona come atteso.\n"
|
||||
" * Avviso: c'è un errore che non blocca il flusso della Fatturazione Elettronica.\n"
|
||||
" * Errore: c'è un errore che blocca l'operazione corrente della Fatturazione Elettronica."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Annullamento della cancellazione EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Annullato"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Impossibile disattivare (%s) su questo registro, non tutti i documenti sono "
|
||||
"sincronizzati"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Codice"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "EDI compatibile"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creato da"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data creazione"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome visualizzato"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Visualizza valuta"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Scarica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI: esegui operazioni servizi web"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Documenti EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "Formato EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Formato EDI che supporta i movimenti nel registro"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Livello errore EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Contenuto EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Documento EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Numero errori EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Messaggio di errore EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Formato EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Mostra pulsante annullamento della cancellazione EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Mostra pulsante annulla EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Servizi web EDI da elaborare"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Interscambio dati elettronici"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Documento elettronico per un account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Fatturazione elettronica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Elaborazione fatturazione elettronica necessaria"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Stato fatturazione elettronica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Modelli e-mail"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Errore"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Nome formato"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Numero errori EDI a causa di questo movimento"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informazioni"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Configurazione fattura non valida:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Registro"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Registrazione contabile"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Movimento contabile"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modifica il"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultimo aggiornamento di"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultimo aggiornamento il"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Movimento"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Un solo documento EDI per movimento per formato"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Pagamenti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Elabora ora"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Unità di misura prodotto"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Ricreazione sequenza delle registrazioni contabili."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Azione resoconto"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Richiedi annullamento EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Riprova"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Invio di fatture XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Inviato"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Stato"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "Stato complessivo di tutte le EDI con servizio web del movimento"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"La valuta (%s) del documento che si sta caricando non risulta attiva nel database.\n"
|
||||
"Attivarla e aggiornare il tasso di cambio, se necessario, prima di riprovare l'importazione."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"File generato da edi_format_id quando la fattura viene confermata (e il "
|
||||
"documento elaborato)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"I seguenti documenti sono già stati iniviati e non possono essere "
|
||||
"risequenziati: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"La fattura verrà elaborata in modo asincrono dal seguente servizio di "
|
||||
"fatturazione elettronica:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Il pagamento verrà elaborato in modo asincrono dal seguente servizio di "
|
||||
"fatturazione elettronica:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"Testo dell'ultimo errore che si è verificato nell'operazione per la fattura "
|
||||
"elettronica."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Codice già esistente"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Questo documento viene già inviato da un altro processo."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Da annullare"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Da inviare"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Attenzione"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Impossibile modificare la registrazione contabile %s, un documento "
|
||||
"elettronico è già stato inviato. Usare invece il pulsante \"Richiedi "
|
||||
"annullamento EDI\"."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Impossibile rimuovere il collegamento a un documento EDI allegato inviato a "
|
||||
"un'agenzia governativa."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Vedi errori"
|
||||
514
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ja.po
Normal file
514
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ja.po
Normal file
|
|
@ -0,0 +1,514 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Noma Yuki, 2022
|
||||
# Andy Yiu, 2022
|
||||
# Ryoko Tsuda <ryoko@quartile.co>, 2023
|
||||
# Wil Odoo, 2025
|
||||
# Junko Augias, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Junko Augias, 2025\n"
|
||||
"Language-Team: Japanese (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "電子請求書エラー"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "電子請求情報"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "電子請求警告"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "EDIのキャンセルが要求されました。"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "EDIのキャンセル要求が中止されました。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "添付"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "ブロッキングレベル"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"エラーの深刻度に応じて、ドキュメントの現在の操作をブロックします:\n"
|
||||
"* Info:ドキュメントはブロックされておらず、すべて正常に動作しています。\n"
|
||||
"* 警告:現在の電子請求書発行操作の成功を妨げないエラーがあります。\n"
|
||||
"* エラー:現在の電子請求書発行操作を妨げるエラーがあります。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "EDIキャンセルの中止"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "取消済"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr "全ての文書が同期化されていないため、この仕訳帳を無効化(%s)できません。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "コード"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "互換性のあるEdi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "作成者"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "作成日"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "表示名"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "ダウンロード"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDIドキュメント"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI フォーマット"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "この仕訳帳の仕訳をサポートするEDIフォーマット"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Ediブロッキングレベル"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Edi内容"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Ediドキュメント"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Ediエラーカウント"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Ediエラーメッセージ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Ediフォーマット"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi放棄キャンセルボタンの表示"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Ediキャンセルボタンの表示"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "処理待ちのEdiウェブサービス"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "電子データ交換"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "勘定科目仕訳用の電子ドキュメント"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "電子請求"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "電子請求処理が必要です"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "電子請求ステータス"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "メールテンプレート"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "エラー"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "フォーマット名"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "情報"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"I無効な請求書設定:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "仕訳帳"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "仕訳"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "仕訳明細"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最終更新者"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最終更新日"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "仕訳"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "名称"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "フォーマット毎、仕訳毎に一つだけのediドキュメント"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "支払"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "すぐ処理する"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "プロダクト単位"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "仕訳の付番を作り直す"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "レポートアクション"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "EDIキャンセルをリクエストする"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "再試行"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "XML/EDI請求書を送る"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "送信日"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "都道府県/州"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "この仕訳のウェブサービスを持つ全てのEDIの集約ステート"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr "edi_format_idによって、請求書が計上される(このドキュメントが処理される)ときに生成されるファイル。"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr "以下のドキュメントはすでに送信済みであり、再送信はできません: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr "請求書は、以下の電子請求書発行サービスによって非同期に処理されます:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr "支払いは以下の電子請求サービスによって非同期処理されます:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr "電子請求書の操作中に発生した最後のエラーのテキスト。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "このコードは既に存在します"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "このドキュメントはすでに別の処理から送信されています。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "キャンセルする"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "未送信"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "警告"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"電子ドキュメントがすでに送信されているため、以下の仕訳%sを編集することができません。代わりに「EDIキャンセル要求」ボタンを使用して下さい。"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr "政府に送信されたEDIドキュメントである添付ファイルのリンクを解除することはできません。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ エラーを見る"
|
||||
504
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/km.po
Normal file
504
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/km.po
Normal file
|
|
@ -0,0 +1,504 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Chan Nath <channath@gmail.com>, 2023
|
||||
# AN Souphorn <ansouphorn@gmail.com>, 2023
|
||||
# Sengtha Chay <sengtha@gmail.com>, 2023
|
||||
# Lux Sok <sok.lux@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Lux Sok <sok.lux@gmail.com>, 2023\n"
|
||||
"Language-Team: Khmer (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "ឯកសារភ្ជាប់"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "បានលុបចោល"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "កូដ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "បង្កើតដោយ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "បង្កើតនៅ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ឈ្មោះសំរាប់បង្ហាញ"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "ទាញយក"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "គំរូសារអេឡិចត្រូនិច"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "កំហុស"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "អត្តសញ្ញាណ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "ពត៌មាន"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "ទិនានុប្បវត្តិ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "ការចុះទិន្នានុប្បរត្ត"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "ប្រភេទទិនានុប្បវត្ត"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "កាលបរិច្ឆេតកែប្រែចុងក្រោយ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ផ្លាស់ប្តូរចុងក្រោយ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "ផ្លាស់ទី "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "ឈ្មោះ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "ការបង់ប្រាក់"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "ផ្នែកផលិតផលនៃវិធានការ។"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "ឯកសារសកម្មភាព"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "បានផ្ងើរ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "ទីតំាង"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "ព្រមាន"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
514
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ko.po
Normal file
514
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ko.po
Normal file
|
|
@ -0,0 +1,514 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Linkup <link-up@naver.com>, 2022
|
||||
# Daye Jeong, 2024
|
||||
# Wil Odoo, 2025
|
||||
# Sarah Park, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Sarah Park, 2025\n"
|
||||
"Language-Team: Korean (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "전자 청구서 오류"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "전자 청구서 정보"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "전자 청구서 경고"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "EDI취소가 요청되었습니다."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "EDI 취소 요청을 취소하였습니다."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "첨부 파일"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "차단 수준"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"오류의 심각성에 따라서 문서의 현재 진행 작업을 차단합니다:\n"
|
||||
" * 안내: 문서를 차단하지 않고 모든 것을 정상적으로 작동시킵니다.\n"
|
||||
" * 경고: 현재 오류가 발생하였으나 전자 청구서 작업을 성공적으로 진행하는 것에는 문제가 없습니다.\n"
|
||||
" * 오류: 현재 오류가 발생하여 전자 청구서 작업을 차단합니다."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "EDI 취소 요청 취소"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "취소 됨"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr "모든 문서가 동기화되었기 때문에 이 전표의 (%s)를 비활성화 할 수 없습니다. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "코드"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "호환가능한 Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "작성자"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "작성일자"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "표시명"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "통화 표시"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "다운로드"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI : 웹서비스 작업 실행"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI 문서"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI 양식"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "이 전표의 이동을 지원하는 EDI 양식"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "EDI 차단 수준"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "EDI 콘텐츠"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Edi 문서"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Edi 오류 수"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "EDI 오류 메시지"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Edi 양식"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "EDI 표시 대기처리 취소 버튼"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Edi 취소버튼 표시"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Edi 처리할 웹서비스"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "전자 데이터 교환"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "account.move를 위한 전자 문서"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "전자 청구서"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "전자 청구서 발행 필요"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "전자 청구서 상태"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "이메일 양식"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "오류"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "양식 명"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "이 이동에 발생한 EDI오류가 얼마나 있습니까?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "정보"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"잘못된 청구서 구성:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "분개장"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "분개"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "분개 항목"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "최근 수정일"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "최근 갱신한 사람"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "최근 갱신 일자"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "이동"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "이름"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "양식별 이동별 하나의 edi문서가 사용됩니다"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "결제"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "지금 진행하기"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "품목 단위"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "전표입력 순서를 다시 조정합니다."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "보고서 작업"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "EDI 취소 요청"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "재시도"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "XML/EDI 청구서 전송"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "전송됨"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "시/도"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "이 작업에서 웹서비스를 제공하는 전체 EDI의 집계 상태"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"업로드 중인 문서의 통화 (%s)가 이 데이터베이스에서 활성화되어 있지 않습니다.\n"
|
||||
"다시 가져오기를 하기 전에 해당 내용을 활성화하고 필요한 경우 환율을 업데이트하십시오."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr "청구서가 승인되었을 때(그리고 이 문서가 처리되었을 때) edi_format_id에 의해 발생한 파일입니다."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr "다음 문서가 이미 전송되었으므로 다시 전송할 수 없습니다: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr "청구서는 다음 전자 청구서 서비스를 통해 비동기식으로 처리됩니다:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr "결제는 다음 전자 청구서 서비스를 통해 비동기식으로 처리됩니다:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr "전자 청구서 작업동안 발생한 최근 오류 문구"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "이 코드는 이미 존재합니다"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "이 문서는 이미 다른 프로세스를 통해 전송 중입니다."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "취소 예정"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "전송 예정"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "주의"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr "전자문서가 이미 전송되었기 때문에 다음의 전표%s를 수정할 수 없습니다. 대신 'EDI취소 요청'버튼을 사용하세요."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr "EDI문서가 정부에 전송된 뒤의 첨부를 연결해제할 수 없습니다."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ 오류 보기"
|
||||
504
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/lo.po
Normal file
504
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/lo.po
Normal file
|
|
@ -0,0 +1,504 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# sackda chanthasombath, 2023
|
||||
# Martin Trigaux, 2023
|
||||
# ສີສຸວັນ ສັງບົວບຸລົມ <sisouvan@gmail.com>, 2023
|
||||
# Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Phoxaysy Sengchanthanouvong <phoxaysy@gmail.com>, 2023\n"
|
||||
"Language-Team: Lao (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "ຖືກຍົກເລີກແລ້ວ"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "ລະຫັດ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ສ້າງໂດຍ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "ສ້າງເມື່ອ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ຊື່ເຕັມ"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "ສະແດງສະກຸນເງີນ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "ຮູບແບບ ອີດີໄອ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "ພິດພາດ!"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ເລກລຳດັບ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "ບັນຊີປະຈຳວັນ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "ລານການລົງບັນຊີ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "ແກ້ໄຂລ້າສຸດເມື່ອ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "ປັບປຸງລ້າສຸດໂດຍ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "ປັບປຸງລ້າສຸດເມື່ອ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "ຊື່"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "ການຊໍາລະ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "ແຂວງ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "ການແຈ້ງເຕື່ອນ"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
510
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/lt.po
Normal file
510
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/lt.po
Normal file
|
|
@ -0,0 +1,510 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# digitouch UAB <digitouchagencyeur@gmail.com>, 2022
|
||||
# Rolandas <info@paninfo.lt>, 2022
|
||||
# UAB "Draugiški sprendimai" <transifex@draugiskisprendimai.lt>, 2022
|
||||
# Arunas V. <arunas@devoro.com>, 2022
|
||||
# Audrius Palenskis <audrius.palenskis@gmail.com>, 2022
|
||||
# Linas Versada <linaskrisiukenas@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jonas Zinkevicius <jozi@odoo.com>, 2022
|
||||
# Jessica Jakara, 2025
|
||||
# Ramunė ViaLaurea <ramune.vialaurea@gmail.com>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Ramunė ViaLaurea <ramune.vialaurea@gmail.com>, 2025\n"
|
||||
"Language-Team: Lithuanian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "EDI:n peruutusta on pyydetty."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "EDI:n peruutuspyyntö on peruttu."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Prisegtukas"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Estotaso"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Atšauktas"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kodas"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Sukūrė"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Sukurta"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Rodomas pavadinimas"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Atsisiųsti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "El. laiškų šablonai"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Klaida"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informacija"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Žurnalas"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Žurnalo įrašas"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Žurnalo įrašas"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Paskutinį kartą keista"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Paskutinį kartą atnaujino"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Paskutinį kartą atnaujinta"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Perkelti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Pavadinimas"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Mokėjimai"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Produkto matavimo vienetas"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Perkurkite žurnalo įrašų seką."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Pakartoti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Išsiųsta"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Būsena"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Atšaukti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Išsiųsti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Įspėjimas"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
512
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/lv.po
Normal file
512
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/lv.po
Normal file
|
|
@ -0,0 +1,512 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# InfernalLV <karlisdreizis@gmail.com>, 2022
|
||||
# Arnis Putniņš <arnis@allegro.lv>, 2022
|
||||
# Anzelika Adejanova, 2022
|
||||
# Konstantins Zabogonskis <inculin4ik@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# ievaputnina <ievai.putninai@gmail.com>, 2024
|
||||
# Armīns Jeltajevs <armins.jeltajevs@gmail.com>, 2024
|
||||
# Will Sensors, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Will Sensors, 2025\n"
|
||||
"Language-Team: Latvian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Elektroniskā rēķina kļūda(s)"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Elektroniskā rēķina informācija"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Elektroniskā rēķina brīdinājums(i)"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Pielikums"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Bloķēšanas līmenis"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Atcelts"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Nevar deaktivizēt (%s) šajā žurnālā, jo ne visi dokumenti ir sinhronizēti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kods"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Izveidoja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Izveidots"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Parādīt vārdu"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI dokumenti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI formāts"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "EDI formāts, kas atbalsta kustību šajā žurnālā"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "EDI bloķēšanas līmenis"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "EDI saturs"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "EDI dokuments"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "EDI kļūdu skaits"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "EDI kļūdas ziņojums"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "EDI formāts"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "EDI rādīt atcelšanas pogu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Elektroniskā datu apmaiņa"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Elektroniskie rēķini"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Elektroniskā rēķina stāvoklis"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "E-pasta sagataves"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Kļūda"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Formāta nosaukums"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informācija"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Nederīga rēķina konfigurācija:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Reģistrs"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Grāmatojumi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Kontējums"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Pēdējoreiz mainīts"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Pēdējoreiz atjaunoja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Pēdējoreiz atjaunots"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Kustība"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nosaukums"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Maksājumi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Apstrādāt tagad"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Produkta Mērvienība"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Pārveidojiet žurnāla ierakstu secību."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Atskaites darbība"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Mēģināt vēlreiz"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Nosūtīts"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Posmi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Šis kods jau pastāv"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Atcelt"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Nosūtīšanai"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Brīdinājums"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Skatīt kļūdas"
|
||||
501
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ml.po
Normal file
501
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ml.po
Normal file
|
|
@ -0,0 +1,501 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Niyas Raphy, 2023
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Niyas Raphy, 2023\n"
|
||||
"Language-Team: Malayalam (https://app.transifex.com/odoo/teams/41243/ml/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ml\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "അറ്റാച്ച്മെന്റ്"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "റദ്ദാക്കി"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "കോഡ്"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "ഉണ്ടാക്കിയത്"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "സൃഷ്ടിച്ചത്"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "ഡിസ്പ്ലേ നെയിം"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "ഡൌൺലോഡ് "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "ഇലക്ട്രോണിക് ഇൻവോയ്സിംഗ് പ്രോസസ്സിംഗ് ആവശ്യമാണ്"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "ഇമെയിൽ ടെംപ്ലേറ്റുകൾ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "പിശക്"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ഐഡി"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "ഇൻഫോ"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "ജേണൽ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "ജേണൽ എൻട്രി"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "ജേർണൽ ഐറ്റം"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "അവസാനം അപ്ഡേറ്റ് ചെയ്തത്"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "പേര്"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "പേയ്മെന്റ്സ്"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "പ്രോഡക്റ്റ് യൂണിറ്റ് ഓഫ് മെഷർ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "വീണ്ടും ശ്രമിക്കുക"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "സെൻറ് "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "സ്റ്റേറ്റ്"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "താക്കീത്"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
506
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/mn.po
Normal file
506
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/mn.po
Normal file
|
|
@ -0,0 +1,506 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# hish, 2022
|
||||
# Nurbahyt Kh <nurbahyt.kh@gmail.com>, 2022
|
||||
# Batmunkh Ganbat <batmunkh2522@gmail.com>, 2022
|
||||
# Baskhuu Lodoikhuu <baskhuujacara@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Bayarkhuu Bataa, 2022
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Bayarkhuu Bataa, 2022\n"
|
||||
"Language-Team: Mongolian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Хавсралт"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Цуцлагдсан"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Дансны код"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Үүсгэсэн этгээд"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Үүсгэсэн огноо"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Дэлгэрэнгүй нэр"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Татаж авах"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Имэйл Үлгэрүүд"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Алдаа"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Мэдээлэл"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Журнал"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Ажил гүйлгээ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Журналын бичилт"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Сүүлд зассан этгээд"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Сүүлд зассан огноо"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Гүйлгээ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Нэр"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Төлбөрүүд"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Барааны хэмжих нэгж"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Тайлагнах үйлдэл"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Дахин оролдох"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Илгээгдсэн"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Төлөв"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Илгээх"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Анхааруулга"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
502
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ms.po
Normal file
502
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ms.po
Normal file
|
|
@ -0,0 +1,502 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Mehjabin Farsana, 2023
|
||||
# Imran Pathan, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Imran Pathan, 2025\n"
|
||||
"Language-Team: Malay (https://app.transifex.com/odoo/teams/41243/ms/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ms\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Lampiran"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Dibatalkan"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Dicipta oleh"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Dicipta pada"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nama paparan"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Muat turun"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Ralat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Jurnal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Kemasukan jurnal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item Jurnal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Terakhir Diubah suai pada"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Kemas Kini Terakhir oleh"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Kemas Kini Terakhir pada"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nama"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Pembayaran"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Remake the sequence of Journal Entries."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Report Action"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Cuba semula"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Sent"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "negeri"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Untuk Hantar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Amaran"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
508
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/nb.po
Normal file
508
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/nb.po
Normal file
|
|
@ -0,0 +1,508 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Jorunn D. Newth, 2022
|
||||
# Mads Søndergaard, 2022
|
||||
# Marius Stedjan <marius@stedjan.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Henning Fyllingsnes, 2023
|
||||
# cecilieflyt, 2024
|
||||
# Rune Restad, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Norwegian Bokmål (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Feil i elektronisk faktura"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Elektronisk fakturainfo"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Elektronisk faktura advarsler"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Vedlegg"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Kansellert"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kode"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Opprettet av"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Opprettet"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnavn"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Last ned"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "EDI blokkeringsnivå"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "EDI feilmelding"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Electronic Data Interchange"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Digital fakturering"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "E-post maler"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Feil"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Journal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Bilag"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Journalpost"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sist endret"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Sist oppdatert av"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Sist oppdatert"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Bevegelse"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Navn"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Betalinger"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Produktenhet"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Lag sekvensen av journalposter på nytt."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Rapporthandling"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Prøv igjen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Sendt"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Modus"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Å sende"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Advarsel"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
531
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/nl.po
Normal file
531
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/nl.po
Normal file
|
|
@ -0,0 +1,531 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Gunther Clauwaert <gclauwae@hotmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Jolien De Paepe, 2023
|
||||
# Erwin van der Ploeg <erwin@odooexperts.nl>, 2024
|
||||
# Wil Odoo, 2025
|
||||
# Manon Rondou, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Manon Rondou, 2025\n"
|
||||
"Language-Team: Dutch (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Fout(en) elektronische facturering"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Info(s) elektronische facturering"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Waarschuwing(en) elektronische facturering"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Er is verzocht om annulering van de EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Een verzoek tot opheffing van de EDI is afgeblazen."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Bijlage"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Blokkeerniveau"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Blokkeert de huidige documentbewerking afhankelijk van de ernst van de fout:\n"
|
||||
" * Info: het document is niet geblokkeerd en alles werkt zoals het hoort.\n"
|
||||
" * Waarschuwing: er is een fout opgetreden die het succes van de huidige elektronische facturering niet verhindert.\n"
|
||||
" * Fout: er is een fout opgetreden die de huidige elektronische facturering blokkeert."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Opzeggen EDI Annulering"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Geannuleerd"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Kan (%s) niet deactiveren in dit dagboek omdat niet alle documenten worden "
|
||||
"gesynchroniseerd"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Code"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Compatible Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Gemaakt door"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Gemaakt op"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Weergavenaam"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Toon valuta"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Downloaden"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI: voer webservicebewerkingen uit"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI Documenten"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI formaat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "EDI format that dat wordt ondersteund in dit dagboek"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "EDI blokkeer-niveau"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Edi inhoud"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "EDI Document"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Aantal EDI fouten"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "EDI foutmelding"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "EDI formaat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "EDI Toon Verlaten Annuleren-knop"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "EDI, Toon annulleerknop"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Edi Web Services om te verwerken"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Electronic Data Interchange"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Elektronisch document voor een boeking"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Elektronische facturatie"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Elektronische factuurverwerking nodig"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Status elektronische facturering"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "E-mailsjablonen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Fout"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Soort"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Hoeveel EDI's zijn fout bij deze boeking?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Ongeldige factuurconfiguratie:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Dagboek"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Boeking"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Boekingsregel"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Laatst gewijzigd op"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Laatst bijgewerkt door"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Laatst geupdate op"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Verplaatsing"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Slechts één edi-document per formaat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Betalingen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Verwerk nu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Maateenheid product"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Hernummer een reeks voor dit dagboek."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Rapport actie"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Verzoek EDI-annulering"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Opnieuw proberen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Verstuur XML/EDI facturen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Verzonden"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Provincie / Staat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
"De geaggregeerde status van alle EDI’s met webservice van deze verplaatsing"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"De valuta (%s) van het document dat je importeert is niet actief in deze database.\n"
|
||||
"Activeer deze voordat je opnieuw probeert te importeren."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Het bestand gegenereerd door edi_format_id wanneer de factuur wordt geboekt "
|
||||
"(en dit document wordt verwerkt)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"De volgende documenten zijn al verzonden en kunnen niet opnieuw worden "
|
||||
"gerangschikt: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"De factuur wordt asynchroon verwerkt door de volgende E-facturatiedienst:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"De betaling wordt asynchroon verwerkt door de volgende e-factureringsdienst:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"De tekst van de laatste fout die is opgetreden tijdens de elektronische "
|
||||
"factuurbewerking."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Deze code bestaat al"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Dit document wordt al door een ander proces verzonden."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Te annuleren"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Te verzenden"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Waarschuwing"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Je kunt de volgende boeking %s niet bewerken omdat er al een elektronisch "
|
||||
"document is verzonden. Gebruik in plaats daarvan de knop 'EDI-annulering "
|
||||
"aanvragen'."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Je kunt een bijlage niet ontkoppelen als een EDI-document dat naar de "
|
||||
"overheid is verzonden."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Bekijk fouten"
|
||||
497
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/no.po
Normal file
497
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/no.po
Normal file
|
|
@ -0,0 +1,497 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Language-Team: Norwegian (https://app.transifex.com/odoo/teams/41243/no/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: no\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
538
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/pl.po
Normal file
538
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/pl.po
Normal file
|
|
@ -0,0 +1,538 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Wojciech Warczakowski <w.warczakowski@gmail.com>, 2022
|
||||
# Maksym <ms@myodoo.pl>, 2022
|
||||
# Andrzej Wiśniewski <a.wisniewski@hadron.eu.com>, 2022
|
||||
# Paweł Michoń <michon.pawel@wp.pl>, 2022
|
||||
# Marcin Młynarczyk <mlynarczyk@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Paweł Wodyński <pw@myodoo.pl>, 2022
|
||||
# Judyta Kaźmierczak <judyta.kazmierczak@openglobe.pl>, 2022
|
||||
# Grzegorz Grzelak <grzegorz.grzelak@openglobe.pl>, 2022
|
||||
# Piotr Szlązak <szlazakpiotr@gmail.com>, 2022
|
||||
# Tadeusz Karpiński <tadeuszkarpinski@gmail.com>, 2023
|
||||
# Marta Wacławek, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Polish (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Błąd(-y) w fakturowaniu elektronicznym"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Informacje dotyczące fakturowania elektronicznego"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Ostrzeżenie(a) dotyczące fakturowania elektronicznego"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Złożono wniosek o anulowanie EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Wniosek o unieważnienie EDI został odwołany."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Załącznik"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Poziom blokowania"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Blokuje bieżące działanie dokumentu w zależności od powagi błędu:\n"
|
||||
"* Info: dokument nie jest zablokowany i wszystko działa jak należy.\n"
|
||||
"* Ostrzeżenie: występuje błąd, który nie uniemożliwia powodzenia bieżącej operacji Fakturowania elektronicznego.\n"
|
||||
"* Błąd: występuje błąd, który blokuje bieżącą operację Fakturowania elektronicznego."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Odwołanie EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Anulowane"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Nie można wyłączyć (%s) na tym dzienniku, ponieważ nie wszystkie dokumenty "
|
||||
"są zsynchronizowane"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Kompatybilny EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Utworzył(a)"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Data utworzenia"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nazwa wyświetlana"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Wyświetlanie waluty"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Pobierz"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI: Wykonywanie operacji w ramach usług internetowych"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Dokumenty EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "Format EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Format EDI, który obsługuje ruchy w tym dzienniku"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Poziom blokowania EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Treść EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Dokument EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Edi Licznik błędów"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Komunikat o błędzie Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Format Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi pokaż przycisk anulowania porzucenia"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "EDI pokaż przycisk anuluj"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Usługi internetowe Edi do przetwarzania"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Elektroniczna wymiana danych"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Dokument elektroniczny dla account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Fakturowanie elektroniczne"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Potrzebne elektroniczne przetwarzanie faktur"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Stan fakturowania elektronicznego"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Szablony wiadomości"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Błąd"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Nazwa formatu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Ile EDI jest w błędzie przy tym ruchu ?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informacja"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Nieprawidłowa konfiguracja faktury:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Dziennik"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Zapis dziennika"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Pozycja zapisu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Data ostatniej modyfikacji"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ostatnio aktualizowane przez"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Data ostatniej aktualizacji"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Przesunięcie"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nazwa"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Tylko jeden dokument edi w formacie przenieś według"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Wpłaty"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Przetwarzaj teraz"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Jednostka miary produktu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Zmień kolejność wpisów w dzienniku."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Zgłoś akcję"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Wniosek o anulowanie EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Ponów"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Wysyłanie faktur XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Wysłane"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Stan"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "Zagregowany stan wszystkich EDI z usługą internetową tego ruchu"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"Waluta (%s) dokumentu, który przesyłasz, nie jest aktywna w tej bazie danych.\n"
|
||||
"Proszę go aktywować i w razie potrzeby zaktualizować kurs waluty przed ponowną próbą importu."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Plik generowany przez edi_format_id podczas księgowania faktury (i "
|
||||
"przetwarzania tego dokumentu)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Następujące dokumenty zostały już wysłane i nie można ich ponownie "
|
||||
"sekwencjonować: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Faktura będzie przetwarzana asynchronicznie przez następujący serwis "
|
||||
"E-faktury :"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Płatność będzie realizowana asynchronicznie przez następujący serwis "
|
||||
"E-faktury :"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"Tekst ostatniego błędu, który wystąpił podczas operacji Elektronicznej "
|
||||
"Faktury."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Ten kod już istnieje"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Ten dokument jest już wysyłany przez inny proces."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Do anulowania"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Do wysłania"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Ostrzeżenie"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Nie można edytować następującego wpisu do dziennika %s, ponieważ dokument "
|
||||
"elektroniczny został już wysłany. Zamiast tego proszę użyć przycisku \"Żądaj"
|
||||
" anulowania EDI\"."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Nie można odłączyć załącznika będącego dokumentem EDI wysłanym do rządu."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Zobacz błędy"
|
||||
516
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/pt.po
Normal file
516
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/pt.po
Normal file
|
|
@ -0,0 +1,516 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# cafonso <cafonso62@gmail.com>, 2022
|
||||
# Reinaldo Ramos <reinaldo.ramos@arxi.pt>, 2022
|
||||
# Luiz Fernando <lfpsgs@outlook.com>, 2022
|
||||
# Pedro Filipe <pedro2.10@hotmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Nuno Silva <nuno.silva@arxi.pt>, 2022
|
||||
# Manuela Silva <mmsrs@sky.com>, 2022
|
||||
# Amazonian Shop, 2023
|
||||
# Peter Lawrence Romão <peterromao@yahoo.co.uk>, 2024
|
||||
# Maitê Dietze, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Maitê Dietze, 2025\n"
|
||||
"Language-Team: Portuguese (https://app.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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr " Erro(s) de faturação eletrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr " Informações sobre a faturação eletrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr " Aviso(s) da faturação eletrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Foi solicitado o cancelamento do EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Um pedido de cancelamento do EDI foi anulado."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Anexo"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Nível de bloqueio"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Bloqueia a operação atual do documento dependendo da gravidade do erro:\n"
|
||||
"* Info: o documento não está bloqueado e tudo está funcionando como deveria.\n"
|
||||
"* Aviso: há um erro que não impede que a operação atual de Fatura Eletrónica seja bem-sucedida.\n"
|
||||
"* Erro: há um erro que bloqueia a operação da Fatura Eletrónica atual."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Anular cancelamento EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelada"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Não é possível desativar (%s) neste diário porque nem todos os documentos "
|
||||
"estão sincronizados"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "EDI Compatível"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Transferir"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Documentos EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "FormatoEDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Formato EDI que suporta movimentos neste diário"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Intercâmbio Eletrônico de Dados (EDI)"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Faturação Eletrónica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Modelos de E-mail"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Erro"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informação"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Diário"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Lançamento de Diário"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item do Diário"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última Modificação em"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última Atualização por"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última Atualização em"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Movimento"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Pagamentos"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Unidade de Medida de Artigo"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Refaça a sequência de lançamentos de diário."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Relatar Ação"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Tentar Novamente"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Enviar Faturas XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Enviado"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "A enviar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Aviso"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
522
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/pt_BR.po
Normal file
522
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/pt_BR.po
Normal file
|
|
@ -0,0 +1,522 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# a75f12d3d37ea5bf159c4b3e85eb30e7_0fa6927, 2023
|
||||
# Maitê Dietze, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Portuguese (Brazil) (https://app.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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Erros de faturamento eletrônico"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Infos de faturamento eletrônico"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Avisos de faturamento eletrônico"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Um cancelamento da EDI foi solicitado."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Um pedido de cancelamento da EDI foi anulado."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Anexo"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Nível de bloqueio"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Bloqueia a operação atual do documento dependendo da gravidade do erro:\n"
|
||||
"* Info: o documento não está bloqueado e tudo está funcionando como deveria.\n"
|
||||
"* Aviso: há um erro que não impede que a operação atual de faturamento eletrônico seja bem-sucedida.\n"
|
||||
"* Erro: há um erro que bloqueia a operação de faturamento eletrônico atual."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Anular cancelamento da EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Cancelado"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Não é possível desativar (%s) neste diário porque nem todos os documentos "
|
||||
"estão sincronizados"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Código"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "EDI compatível"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Criado por"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Criado em"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nome exibido"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Download"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Documentos de EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "Formato para EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Formato para EDI que suporta movimentações neste diário"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Nível de bloqueio da EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Conteúdo de EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Documento da EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Contagem de erros de EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Mensagem de erro de EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Formato para EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Exibir botão de cancelar abandono de EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "EDI - exibir botão de cancelar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Serviços web de EDI a processar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Intercâmbio Eletrônico de Dados (EDI)"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Documento eletrônico para uma account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Faturamento eletrônico"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Processamento de faturamento eletrônico necessário"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Situação do faturamento eletrônico"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Modelos de E-mail"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Erro"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Nome do formato"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informations"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Configuração de fatura inválida:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Diário"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Lançamento de Diário"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Item de Diário"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Última modificação em"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Última atualização por"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Última atualização em"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Movimento"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nome"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Somente um documento de EDI por movimentação por formato"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Pagamentos"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Processar agora"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Unidade de Medida do Produto"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Refaça a sequência de lançamentos de diário."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Reportar Ação"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Solicitar cancelamento de EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Tentar novamente"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Enviar faturas XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Enviado"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Estado"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "O estado agregado de todas as EDIs com serviço web dessa movimentação"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"O arquivo gerado por edi_format_id quando a fatura é lançada (e esse "
|
||||
"documento é processado)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Os seguintes documentos já foram enviados e não podem ser reenviados: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"O texto do último erro ocorrido durante a operação da fatura eletrônica."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Este código já existe"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Este documento já está sendo enviado por outro processo."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "A cancelar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Para Enviar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Aviso"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Não é possível editar o seguinte lançamento de diário %s porque um documento"
|
||||
" eletrônico já foi enviado. Em vez disso, use o botão \"Solicitar "
|
||||
"cancelamento de EDI\"."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Não é possível desvincular um anexo de um documento de EDI enviado ao "
|
||||
"governo."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Ver erros"
|
||||
529
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ro.po
Normal file
529
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ro.po
Normal file
|
|
@ -0,0 +1,529 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Dan Stoica <danila@terrabit.ro>, 2022
|
||||
# Cozmin Candea <office@terrabit.ro>, 2022
|
||||
# Dorin Hongu <dhongu@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Foldi Robert <foldirobert@nexterp.ro>, 2022
|
||||
# Larisa_nexterp, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Romanian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr " Eroare(e) de facturare electronică"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr " Informații de facturare electronică"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr " Avertisment(e) privind facturarea electronică"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "A fost solicitată anularea EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "O cerere de anulare a EDI a fost anulată."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Atașament"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Nivel de blocare"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Blochează funcționarea curentă a documentului în funcție de gravitatea erorii:\n"
|
||||
" * Info: documentul nu este blocat și totul funcționează așa cum ar trebui.\n"
|
||||
" * Atenție: există o eroare care nu împiedică reușita operațiunii curente de facturare electronică.\n"
|
||||
" * Eroare: există o eroare care blochează operațiunea curentă de Facturare Electronică."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Anulați anularea EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Anulat"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Nu se poate dezactiva (%s) în acest jurnal deoarece nu toate documentele "
|
||||
"sunt sincronizate"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Cod"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Edi Compatibil"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Creat de"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Creat în"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Nume afișat"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Descarcă"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI: Efectuați operațiuni de servicii web"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Documente EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "Format EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Format EDI care acceptă mișcări în acest jurnal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Nivel de blocare Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Conținut Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Document Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Nr. Erori Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Mesaj de eroare Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Format Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Afișare buton de anulare abandonat Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Afișare Buton Anulare Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Servicii Web Edi de Procesat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Schimb Electronic de Date"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Document electronic pentru account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Facturare Electronică"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Este necesară procesarea facturii electronice"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Starea facturării electronice"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Șabloane e-mail"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Eroare"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Nume Format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Câți EDI sunt în eroare pentru această mișcare?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informații"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Configurație nevalidă a facturii:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Jurnal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Notă contabilă"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Element jurnal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Ultima modificare la"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Ultima actualizare făcută de"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Ultima actualizare pe"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Mișcare"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Nume"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Un singur document edi după mutare după format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Plăți"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Procesați acum"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Unitate de măsură produs"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Refaceți secvența de intrări în jurnal."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Acțiune raport"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Solicitare Anulare EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Reîncearcă"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Trimiteți facturi XML / EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Trimis"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Stare"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
"Starea agregată a tuturor EDI-urilor cu serviciul web al acestei mișcări"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Fișierul generat de edi_format_id atunci când factura este postată (și acest"
|
||||
" document este procesat)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Următoarele documente au fost deja trimise și nu pot fi reordonate: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Factura va fi procesată asincron de următorul serviciu de facturare "
|
||||
"electronică:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"Textul ultimei erori care a avut loc în timpul operațiunii cu factură "
|
||||
"electronică."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Acest cod există deja"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Acest document este deja trimis printr-un alt proces. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Pentru Anulare"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Pentru trimitere"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Atenție"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Nu puteți edita următoarea intrare în jurnal %s deoarece un document "
|
||||
"electronic a fost deja trimis. Vă rugăm să utilizați butonul 'Request EDI "
|
||||
"Cancellation' în schimb."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Nu puteți deconecta un atașament care este un document EDI trimis "
|
||||
"guvernului."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Vizualizare erori"
|
||||
529
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ru.po
Normal file
529
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ru.po
Normal file
|
|
@ -0,0 +1,529 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Иван Дроздов <hiraetari@gmail.com>, 2022
|
||||
# Ivan Kropotkin <yelizariev@itpp.dev>, 2022
|
||||
# ILMIR <karamov@it-projects.info>, 2022
|
||||
# Сергей Шебанин <sergey@shebanin.ru>, 2022
|
||||
# GulShar Mungatova <mungatova@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Irina Fedulova <istartlin@gmail.com>, 2022
|
||||
# Wil Odoo, 2024
|
||||
# Collex100, 2024
|
||||
# Смородин Даниил, 2024
|
||||
# Ilya Rozhkov, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Ilya Rozhkov, 2025\n"
|
||||
"Language-Team: Russian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr " Ошибка(и) электронного выставления счетов"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr " Информация(и) об электронном выставлении счетов"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr " Предупреждение(я) об электронном выставлении счетов"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Поступил запрос на отмену EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Запрос на отмену EDI был отозван."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Вложение"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Уровень блокировки"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Блокирует текущую работу документа в зависимости от степени тяжести ошибки:\n"
|
||||
" * Информация: документ не заблокирован и все работает как надо.\n"
|
||||
" * Предупреждение: имеется ошибка, которая не препятствует успешному выполнению текущей операции Электронное выставление счетов-фактур.\n"
|
||||
" * Ошибка: есть ошибка, которая блокирует текущую операцию Электронного счета-фактуры."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Отзыв EDI Отмена"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Отменено"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Невозможно деактивировать (%s) этот журнал, поскольку не все документы "
|
||||
"синхронизированы"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Совместимый Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Создал"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Дата создания"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Отображаемое имя"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Скачать"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Документы ЭДО"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI формат"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Формат EDI, поддерживающий перемещения в этом журнале "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Уровень блокировки Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Edi Content"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Edi документ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Счетчик ошибок Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Сообщение об ошибке Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Edi формат"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi Show Abandon Cancel Button"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Кнопка отмены показа Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Edi Web Services To Process"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Электронный обмен данными"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Электронный документ по account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Электронное выставление счетов"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Необходима обработка электронных счетов-фактур"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Состояние электронного выставления счетов"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Шаблоны писем"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Ошибка"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Имя формата"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "Идентификатор"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Информация"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Неверная конфигурация счета-фактуры:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Журнал"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Запись журнала"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Элемент журнала"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Последнее изменение"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Последний раз обновил"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Последнее обновление"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Перемещение"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Имя"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Только один документ edi в формате move by"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Платежи"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Процесс сейчас"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Ед. изм. продукта"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Пересоздать последовательность записей журнала."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Отчет о действияx "
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Запрос на отмену ЭДО"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Повторить"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Отправлять счета в формате XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Отправлено"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Статус"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "Агрегированное состояние всех EDI с веб-сервисом этого хода"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Файл, создаваемый edi_format_id при проводке счета-фактуры (и обработке "
|
||||
"этого документа)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr "Следующие документы уже отправлены и не подлежат перенумерации: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"Текст последней ошибки, произошедшей во время операции \"Электронный счет-"
|
||||
"фактура\"."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Этот код уже существует"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Этот документ уже отправлен другим процессом."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Отменить"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "К отправке"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Предупреждение"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Вы не можете отредактировать следующую запись в журнале %s, потому что "
|
||||
"электронный документ уже отправлен. Вместо этого воспользуйтесь кнопкой "
|
||||
"\"Запросить отмену ЭДО\"."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Вы не можете отсоединить вложение от EDI-документа, отправленного в "
|
||||
"правительство."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ См. ошибки"
|
||||
513
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/sk.po
Normal file
513
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/sk.po
Normal file
|
|
@ -0,0 +1,513 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Jaroslav Bosansky <jaro.bosansky@ekoenergo.sk>, 2022
|
||||
# Rastislav Brencic <rastislav.brencic@azet.sk>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Slovak (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Bolo požiadané o zrušenie EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Príloha"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Zrušené"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Nie je možné deaktivovať (%s) v tomto denníku, pretože nie všetky dokumenty "
|
||||
"sú synchronizované"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kód"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Kompatibilné EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Vytvoril"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Vytvorené"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Zobrazovaný názov"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Stiahnuť"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI: Vykonávanie operácií webových služieb"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Dokumenty EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI formát"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Formát EDI, ktorý podporuje pohyby v tomto žurnále"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Dokument EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Počet chýb EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Formát EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Tlačidlo na zrušenie zobrazenia EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Webové služby Edi na spracovanie"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Elektronická výmena dát"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Elektronický dokument pre účet. Presunúť"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Elektronická fakturácia"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Emailové šablóny"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Chyba"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Názov formátu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Koľko EDI je pri tomto kroku omylom?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informácia"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Účtovný denník"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Vstup účtovnej knihy"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Položka účtovnej knihy"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Posledná úprava"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Naposledy upravoval"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Naposledy upravované"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Presunúť"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Meno"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Iba jeden edi dokument presunom podľa formátu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Platby"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Merná jednotka produktu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Prerobiť postupnosť interných účtovných dokladov."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Akcia výkazu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Požiadajte o zrušenie EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Skúsiť znova"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Posielajte XML / EDI faktúry"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Poslané"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Štát"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Súbor vygenerovaný edi_format_id pri zaúčtovaní faktúry (a pri spracovaní "
|
||||
"tohto dokumentu)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Tento kód už existuje"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Zrušiť"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Poslať"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Varovanie"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Nasledujúci zápis do denníka nemôžete upraviť %s pretože elektronický "
|
||||
"dokument už bol odoslaný. Namiesto toho použite tlačidlo „Požiadať o "
|
||||
"zrušenie EDI“."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Nie je možné zrušiť prepojenie prílohy, ktorá je dokumentom EDI odoslaným "
|
||||
"vláde."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Zobraziť chyby"
|
||||
526
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/sl.po
Normal file
526
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/sl.po
Normal file
|
|
@ -0,0 +1,526 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Vida Potočnik <vida.potocnik@mentis.si>, 2022
|
||||
# laznikd <laznik@mentis.si>, 2022
|
||||
# Matjaz Mozetic <m.mozetic@matmoz.si>, 2022
|
||||
# Jasmina Macur <jasmina@hbs.si>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# matjaz k <matjaz@mentis.si>, 2022
|
||||
# Tomaž Jug <tomaz@editor.si>, 2023
|
||||
# Katja Deržič, 2024
|
||||
# Aleš Pipan, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Aleš Pipan, 2025\n"
|
||||
"Language-Team: Slovenian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Zahtevana je bila preklic EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Zahteva za preklic EDI je bila preklicana."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Priponka"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Stopnja blokiranja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Blokira trenutno delovanje dokumenta glede na resnost napake:\n"
|
||||
" * Informacije: dokument ni blokiran in vse deluje, kot bi moralo.\n"
|
||||
" * Opozorilo: Prišlo je do napake, ki ne preprečuje uspešne trenutne operacije elektronskega izdajanja računov.\n"
|
||||
" * Napaka: prišlo je do napake, ki blokira trenutno operacijo elektronskega izdajanja računov."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Preklic EDI-ja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Preklicano"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Ni mogoče deaktivirati (%s) v tem dnevniku, ker niso vsi dokumenti "
|
||||
"sinhronizirani"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Oznaka"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Združljivo Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Ustvaril"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Ustvarjeno"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Prikazani naziv"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Prenesi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Dokumenti EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "Oblika EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Oblika EDI, ki podpira premike v tem dnevniku"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Stopnja blokiranja Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Urejanje vsebine"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Urejanje dokumenta"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Število napak pri Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Sporočilo o napaki Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Edi Format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Gumb za preklic oddaje Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Prikaži gumb za preklic Edi-ja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Edi - Spletne storitve za obdelavo"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Elektronska izmenjava podatkov"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Elektronski dokument za račun.premakni"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Elektronsko izdajanje računov"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Potrebna je obdelava elektronskih računov"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Stanje elektronskega izdajanja računov"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Predloge e-pošte"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Napaka"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Ime oblike"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Neveljavna konfiguracija računa:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Dnevnik"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Temeljnica"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Postavka"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Zadnjič spremenjeno"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Zadnji posodobil"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Zadnjič posodobljeno"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Premik"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Naziv"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Samo en dokument edi s premikanjem po formatu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Plačila"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Obdelaj zdaj"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Merska enota izdelka"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Preoblikujte zaporedje vnosov v dnevnik."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Ukrep poročila"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Zahteva za preklic EDI-ja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Ponovno"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Pošlji račune XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Poslano"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Stanje"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "Združeno stanje vseh EDI-jev s spletno storitvijo te selitve"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Datoteka, ki jo ustvari edi_format_id ob knjiženju računa (in obdelavi tega "
|
||||
"dokumenta)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Naslednji dokumenti so že bili poslani in jih ni mogoče ponovno vrstno "
|
||||
"razporediti: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"Besedilo zadnje napake, ki se je pojavila med delovanjem elektronskega "
|
||||
"računa."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Ta koda že obstaja"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Ta dokument že pošilja drug postopek."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Za preklic"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Za poslati"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Opozorilo"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Naslednjega vnosa v dnevnik ne morete urejati\n"
|
||||
"%s ker je bil elektronski dokument že poslan. Namesto tega uporabite gumb »Zahtevaj preklic EDI«."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr "Priloge, ki je dokument EDI, poslan vladi, ni mogoče prekiniti."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Oglejte si napake"
|
||||
491
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/sq.po
Normal file
491
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/sq.po
Normal file
|
|
@ -0,0 +1,491 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Language-Team: Albanian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
519
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/sr.po
Normal file
519
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/sr.po
Normal file
|
|
@ -0,0 +1,519 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Uros Kalajdzic <ukalajdzic@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Dragan Vukosavljevic <dragan.vukosavljevic@gmail.com>, 2022
|
||||
# Geoinfo d.o.o. <geoinfobih@gmail.com>, 2024
|
||||
# コフスタジオ, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: コフスタジオ, 2025\n"
|
||||
"Language-Team: Serbian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Elektronska greška(e) pri fakturisanju"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Elektronska faktura informacije"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Elektronska faktura upozorenje(a)"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Otkazivanje EDI-ja je zatraženo."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Zahtev za otkazivanje EDI-ja je povučen."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Prilog"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Blokiranje nivoa"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Blokira trenutno izvršavanje dokumenta u zavisnosti od ozbiljnosti greške:\n"
|
||||
" * Info: dokument nije blokiran i sve funkcioniše kako treba.\n"
|
||||
" * Upozorenje: postoji greška koja ne sprečava trenutno izvršavanje operacije Elektronskog fakturisanja da uspe.\n"
|
||||
" * Greška: postoji greška koja blokira trenutno izvršavanje operacije Elektronskog fakturisanja."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Poništite otkazivanje EDI-a"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Otkazano"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Ne može se deaktivirati (%s) na ovom dnevniku jer nisu svi dokumenti "
|
||||
"sinhronizovani."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Kompatibilni Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Kreirao"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Kreirano"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Naziv za prikaz"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Preuzmi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI Dokumenti"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "EDI format koji podržava pomeranja u ovom izveštaju"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Edi Nivo Blokiranja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Edi Sadržaj"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Edi Dokument"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Edi Broj Grešaka"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Edi Poruka o Grešci"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Edi Format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi Prikaži Napusti Dugme Otkazivanja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Edi Prikaz Otkaži Dugme"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Edi Web Servisi za obradu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Elektronska razmena podataka"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Elektronski dokument za account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Elektronsko fakturisanje"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Elektronska obrada fakturisanja je potrebna."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Elektronsko fakturisanje stanje"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Sabloni Poruka"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Greška"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Format naziv"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Informacija"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Nevažeća konfiguracija fakture:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Izveštaj"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Sadržaj dnevnika"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Stavka izveštaja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Poslednja izmena dana"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Poslednje izmenio/la"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Poslednje ažuriranje dana"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Pomeri"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Ime"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Samo jedan edi dokument premeštajem po formatu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Placanja"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Procesiraj sada"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Jedinica mere proizvoda"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Remake the sequence of Journal Entries."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Izveštaj o akciji"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Zahtev za otkazivanje EDI-a"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Ponovi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Šalji XML/EDI fakture"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Poslato"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Stanje"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "Aggregirano stanje svih EDI-ja sa veb-servisom ovog poteza"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Datoteka generisana od strane edi_format_id kada je faktura objavljena (i "
|
||||
"ovaj dokument je obrađen)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr "Sledeći dokumenti su već poslati i ne mogu se preurediti: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"Tekst poslednje greške koja se desila tokom operacije elektronskog računa."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Ovaj kod već postoji"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Ovaj dokument već šalje drugi proces."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Otkazati"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Za slanje"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Upozorenje"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Ne možete izmeniti sledeći unos izveštaja%s jer je elektronski dokument već "
|
||||
"poslat. Umesto toga, koristite dugme 'Zahtev za otkazivanje EDI'."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr "Ne možete odvojiti prilog koji je EDI dokument poslat vladi."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Pogledaj greške"
|
||||
534
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/sv.po
Normal file
534
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/sv.po
Normal file
|
|
@ -0,0 +1,534 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Chrille Hedberg <hedberg.chrille@gmail.com>, 2022
|
||||
# Patrik Lermon <patrik.lermon@gmail.com>, 2022
|
||||
# Kristoffer Grundström <lovaren@gmail.com>, 2022
|
||||
# Kim Asplund <kim.asplund@gmail.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Simon S, 2022
|
||||
# Mikael Åkerberg <mikael.akerberg@mariaakerberg.com>, 2023
|
||||
# Anders Wallenquist <anders.wallenquist@vertel.se>, 2024
|
||||
# Jakob Krabbe <jakob.krabbe@vertel.se>, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Swedish (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr " Fel vid elektronisk fakturering"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr " Information om elektronisk fakturering"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr " Varning(ar) för elektronisk fakturering"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "En annullering av EDI har begärts."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "En EDI annullerings begäran har avbrutits."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Bilaga"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Nivå för blockering"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Blockerar den aktuella funktionen i dokumentet beroende på felets allvarlighetsgrad:\n"
|
||||
" * Info: dokumentet är inte blockerat och allt fungerar som det ska.\n"
|
||||
" * Varning: det finns ett fel som inte förhindrar att den aktuella elektroniska faktureringen lyckas.\n"
|
||||
" * Fel: det finns ett fel som blockerar den aktuella elektroniska faktureringen."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Avbryt EDI annulleringen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Annullerad"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Kan inte avaktivera (%s) på denna journal eftersom inte alla dokument är "
|
||||
"synkroniserade"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Kompatibel EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Skapad av"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Skapad"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Visningsnamn"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Visa valuta"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Ladda ner"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI : Utföra webbtjänstoperationer"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI Dokument"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI-format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "EDI-format som stöder flyttar i denna journal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Edi blockeringsnivå"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Edi Innehåll"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Edi-dokument"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Edi Fel Antal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Edi Fel Meddelande"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Edi-format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi visa lämna Avbryt-knapp"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Edi Visa annuleringsknapp"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Edi Web Services till process"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Elektroniskt datautbyte"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Elektroniskt dokument för ett konto.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Elektronisk fakturering"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Elektronisk fakturering krävs"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Stat för elektronisk fakturering"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "E-postmallar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Fel"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Formatnamn"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Hur många EDI är felaktiga för denna flytt?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Information"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Ogiltig fakturakonfiguration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Journal"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Verifikat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Transaktion"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Senast redigerad den"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Senast uppdaterad av"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Senast uppdaterad på"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Verifikat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Namn"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Endast en edi document by move by format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Betalningar"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Process nu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Produktens måttenhet"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Gör om sekvensen för verifikat."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Rapportera åtgärder"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Begär EDI annullering"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Försök igen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Skicka XML/EDI fakturor"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Skickat"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Status"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
"Det aggregerade tillståndet för alla EDI:er med webbtjänst för detta drag"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"Valutan (%s) för det dokument du laddar upp är inte aktiv i den här databasen.\n"
|
||||
"Vänligen aktivera den och uppdatera valutakursen om det behövs innan du försöker importera igen."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Den fil som genereras av edi_format_id när fakturan bokförs (och detta "
|
||||
"dokument behandlas)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Följande dokument har redan skickats och kan inte sekvenseras på nytt: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Fakturan kommer att behandlas asynkront av följande E-faktureringstjänst :"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Betalningen kommer att behandlas asynkront av följande E-faktureringstjänst "
|
||||
":"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"Texten för det senaste felet som inträffade under elektronisk fakturering."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Den här koden existerar redan"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Detta dokument skickas redan genom en annan process. "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Att annullera"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Att skicka"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Varning"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Du kan inte redigera följande journalpost %s eftersom ett elektroniskt "
|
||||
"dokument redan har skickats. Använd istället knappen \"Begär EDI-"
|
||||
"annullering\"."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Du kan inte ta bort en länk till en bilaga som är ett EDI-dokument som "
|
||||
"skickas till regeringen."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Se fel"
|
||||
491
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/sw.po
Normal file
491
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/sw.po
Normal file
|
|
@ -0,0 +1,491 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Language-Team: Swahili (https://app.transifex.com/odoo/teams/41243/sw/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: sw\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
491
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ta.po
Normal file
491
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/ta.po
Normal file
|
|
@ -0,0 +1,491 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2023-04-14 05:51+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Language-Team: Tamil (https://app.transifex.com/odoo/teams/41243/ta/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: \n"
|
||||
"Language: ta\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr ""
|
||||
519
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/th.po
Normal file
519
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/th.po
Normal file
|
|
@ -0,0 +1,519 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Wichanon Jamwutthipreecha, 2022
|
||||
# Rasareeyar Lappiam, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Thai (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "เกิดข้อผิดพลาดเกี่ยวกับใบแจ้งหนี้อิเล็กทรอนิกส์"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "ข้อมูลการออกใบแจ้งหนี้อิเล็กทรอนิกส์"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "คำเตือนเกี่ยวกับใบแจ้งหนี้อิเล็กทรอนิกส์"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "มีการร้องขอให้ยกเลิก EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "คำขอยกเลิก EDI ถูกยกเลิก"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "การแนบ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "ระดับการปิดกั้น"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"ปิดกั้นการดำเนินการปัจจุบันของเอกสารขึ้นอยู่กับความรุนแรงของข้อผิดพลาด:\n"
|
||||
"* ข้อมูล: เอกสารไม่ถูกปิดกั้นและทุกอย่างทำงานได้ตามปกติ\n"
|
||||
"* คำเตือน: มีข้อผิดพลาดที่ไม่ได้ขัดขวางการดำเนินการออกใบแจ้งหนี้อิเล็กทรอนิกส์ปัจจุบันให้สำเร็จ\n"
|
||||
"* ข้อผิดพลาด: มีข้อผิดพลาดที่ขัดขวางการดำเนินการออกใบแจ้งหนี้อิเล็กทรอนิกส์ปัจจุบัน"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "ปิดการยกเลิก EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "ยกเลิก"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"ไม่สามารถปิดการใช้งาน (%s) ในสมุดรายวันนี้ได้ "
|
||||
"เนื่องจากเอกสารไม่ครบทั้งหมดจะถูกซิงโครไนซ์"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "โค้ด"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Edi ที่เข้ากันได้"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "สร้างโดย"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "สร้างเมื่อ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "แสดงชื่อ"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "ดาวน์โหลด"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "เอกสาร EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "รูปแบบ EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "รูปแบบ EDI ที่รองรับการเคลื่อนไหวในสมุดรายวันนี้"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "ระดับการปิดกั้น Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "เนื้อหา Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "เอกสาร Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "จำนวนข้อผิดพลาดของ Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "ข้อความแสดงข้อผิดพลาดของ Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "รูปแบบ Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi แสดงปุ่มยกเลิกที่ถูกละทิ้ง"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Edi แสดงปุ่มยกเลิก"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Edi บริการเว็บที่จะประมวลผล"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "การแลกเปลี่ยนข้อมูลทางอิเล็กทรอนิกส์"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "เอกสารอิเล็กทรอนิกส์สำหรับ account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "การออกใบแจ้งหนี้อิเล็กทรอนิกส์"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "จำเป็นต้องมีการประมวลผลใบแจ้งหนี้อิเล็กทรอนิกส์"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "สถานะการออกใบแจ้งหนี้อิเล็กทรอนิกส์"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "เทมเพลตอีเมล"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "ผิดพลาด"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "ชื่อรูปแบบ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ไอดี"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "ข้อมูล"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"การกำหนดค่าใบแจ้งหนี้ไม่ถูกต้อง:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "สมุดบันทึก"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "รายการบันทึกประจำวัน"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "รายการบันทึก"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "แก้ไขครั้งล่าสุดเมื่อ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "อัปเดตครั้งล่าสุดโดย"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "อัปเดตครั้งล่าสุดเมื่อ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "ย้าย"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "ชื่อ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "มีเอกสาร edi เพียงฉบับเดียวโดยย้ายตามรูปแบบ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "การชำระเงิน"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "ดำเนินการทันที"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "หน่วยวัดสินค้า"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "สร้างลำดับของรายการสมุดรายวันใหม่"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "การดําเนินการรายงาน"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "ขอยกเลิก EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "ลองใหม่"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "ส่งใบแจ้งหนี้ XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "ส่งแล้ว"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "รัฐ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "สถานะรวมของ EDI ทั้งหมดพร้อมบริการบนเว็บของการย้ายครั้งนี้"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"ไฟล์ที่สร้างโดย edi_format_id เมื่อมีการผ่านรายการใบแจ้งหนี้ "
|
||||
"(และเอกสารนี้ได้รับการประมวลผล)"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr "เอกสารต่อไปนี้ได้ถูกส่งไปแล้วและไม่สามารถจัดลำดับใหม่ได้:%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"ข้อความของข้อผิดพลาดล่าสุดที่เกิดขึ้นระหว่างการดำเนินการใบแจ้งหนี้อิเล็กทรอนิกส์"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "รหัสนี้มีอยู่แล้ว"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "เอกสารนี้กำลังถูกส่งโดยขั้นตอนอื่นอยู่แล้ว"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "ยกเลิก"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "ส่ง"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "คำเตือน"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"คุณไม่สามารถแก้ไขรายการสมุดรายวันต่อไปนี้ %s ได้ "
|
||||
"เนื่องจากมีการส่งเอกสารอิเล็กทรอนิกส์ไปแล้ว โปรดใช้ปุ่ม 'ขอยกเลิก EDI' แทน"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"คุณไม่สามารถยกเลิกการเชื่อมโยงเอกสารแนบที่เป็นเอกสาร EDI ที่ส่งถึงรัฐบาลได้"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ ดูข้อผิดพลาด"
|
||||
529
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/tr.po
Normal file
529
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/tr.po
Normal file
|
|
@ -0,0 +1,529 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# abc Def <hdogan1974@gmail.com>, 2022
|
||||
# Levent Karakaş <levent@mektup.at>, 2022
|
||||
# Umur Akın <umura@projetgrup.com>, 2022
|
||||
# Ediz Duman <neps1192@gmail.com>, 2022
|
||||
# Murat Kaplan <muratk@projetgrup.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Nadir Gazioglu <nadirgazioglu@gmail.com>, 2022
|
||||
# Ertuğrul Güreş <ertugrulg@projetgrup.com>, 2023
|
||||
# Wil Odoo, 2025
|
||||
# Deniz Guvener_Odoo <degu@odoo.com>, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Deniz Guvener_Odoo <degu@odoo.com>, 2025\n"
|
||||
"Language-Team: Turkish (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr " Elektronik faturalandırma hatası(s)"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr " Elektronik faturalandırma bilgileri(s)"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr " Elektronik faturalandırma uyarısı(s)"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "EDI'nin iptali talep edildi."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "EDI'nin iptali talebi iptal edildi."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Ek"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Engelleme Seviyesi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Hata önem derecesine bağlı olarak belgenin geçerli çalışmasını engeller:\n"
|
||||
" * Bilgi: belge engellenmedi ve her şey olması gerektiği gibi çalışıyor.\n"
|
||||
" * Uyarı: Geçerli Elektronik Faturalandırma işleminin başarılı olmasını engellemeyen bir hata var.\n"
|
||||
" * Hata: Geçerli Elektronik Faturalama işlemini engelleyen bir hata var."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "EDI İptalini Durdurun"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "İptal Edildi"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Tüm belgeler senkronize edilmediğinden bu yevmiyede (%s) devre dışı "
|
||||
"bırakılamıyor"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Kod"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Uyumlu Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Oluşturan"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Oluşturulma"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Görünüm Adı"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Para birimini göster"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "İndir"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI: Web hizmetleri işlemlerini gerçekleştirin"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI Belgeleri"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI biçimi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Bu yevmiyedeki hareketleri destekleyen EDI formatı"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Edi Engelleme Seviyesi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Edi İçeriği"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "EDI Belgesi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Edi Hata Sayısı"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Edi Hata Mesajı"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Edi Biçimi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi Vazgeç İptal Düğmesini Göster"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Edi Göster İptal Düğmesi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Edi Web Hizmetleri İşlenecek"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Elektronik Veri Değişimi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Bir account.move için Elektronik Belge"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Elektronik faturalama"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Elektronik fatura işleme gerekli"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Elektronik faturalandırma durumu"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "E-posta Şablonları"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Hata"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Biçim Adı"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Bu hareket için kaç EDI hatalı?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Bilgi"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Geçersiz fatura yapılandırması:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Yevmiye"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Yevmiye Kaydı"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Yevmiye Kalemi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Son Düzenleme"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Son Güncelleyen"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Son Güncelleme"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Kayıt"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Adı"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Biçime göre taşıyarak yalnızca bir edi belgesi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Ödemeler"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Şimdi işle"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Ürün Ölçü Birimi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Yevmiye Kayıtlarının sırasını yeniden oluşturun."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Rapor İşlemi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "EDI İptali İste"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Yinele"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "XML / EDI faturaları gönder"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Gönderildi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "İl/Eyalet"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "Bu kaydın web hizmetine sahip tüm EDI'lerin toplu durumu"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"Karşıya yüklediğiniz belgenin para birimi (%s) bu veritabanında etkin değil.\n"
|
||||
"Lütfen tekrar içe aktarmayı denemeden önce etkinleştirin ve gerekirse döviz kurunu güncelleyin."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Fatura kaydedildiğinde (ve bu belge işlendiğinde) edi_format_id tarafından "
|
||||
"oluşturulan dosya."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr "Aşağıdaki belgeler zaten gönderilmiş ve yeniden sıralanamaz: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Fatura, aşağıdaki E-fatura hizmeti tarafından asenkron olarak işlenecektir:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Ödeme, aşağıdaki E-fatura hizmeti tarafından asenkron olarak işlenecektir:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr "Elektronik Fatura işlemi sırasında oluşan son hatanın metni."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Bu kod zaten var"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Bu belge zaten başka bir işlem tarafından gönderiliyor."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "İptal etmek için"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Giden"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Uyarı"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Bir elektronik belge zaten gönderildiği için bu %s yevmiye kaydını "
|
||||
"düzenleyemezsiniz. Lütfen bunun yerine 'EDI İptali İste' düğmesini kullanın."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Devlete gönderilen bir EDI belgesi olan bir ekin bağlantısını "
|
||||
"kaldıramazsınız."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Hataları görün"
|
||||
526
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/uk.po
Normal file
526
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/uk.po
Normal file
|
|
@ -0,0 +1,526 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Alina Lisnenko <alina.lisnenko@erp.co.ua>, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Ukrainian (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "Помилка електронного виставлення рахунку"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "Інформація електронного виставлення рахунку"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "Попередження електронного виставлення рахунку"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Надіслано запит на скасування EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Запит на скасування EDI було скасовано."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Прикріплення"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Рівень блокування"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Блокує поточну роботу з документом залежно від серйозності помилки:\n"
|
||||
"* Інформація: документ не заблокований і все працює як треба.\n"
|
||||
"* Попередження: є помилка, яка не перешкоджає успішному виконанню поточної операції електронного виставлення рахунка.\n"
|
||||
"* Помилка: є помилка, яка блокує поточну операцію електронного виставлення рахунку."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Відкликати скасування EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Скасовано"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Не можна деактивувати (%s) на цьому журналі, тому що не всі документи "
|
||||
"синхронізовано"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Код"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Сумісний Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Створив"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Створено"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Назва для відображення"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "Відобразити валюту"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Завантажити"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI : Обробіть операції веб-послуг"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Документи EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "Формат EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Формат EDI, що підтримує переміщення у цьому журналі"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Рівень блокування Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Вміст Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Документ Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Підрахунок помилок Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Повідомлення про помилку Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Формат Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Показати кнопку скасування Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Кнопка приховання Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Обробити веб-послуги Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Обмін електронними даними"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Електронний документ для account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Електронне виставлення рахунків"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Необхідна обробка електронних рахунків"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Статус електронного виставлення рахунку"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Шаблони електронних листів"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Помилка"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Назва формату"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "Скільки EDI у помилці для цього переміщення?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Інформація"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Недійсне налаштування рахунку:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Журнал"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Запис у журналі"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Елемент журналу"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Остання модифікація"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Востаннє оновив"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Останнє оновлення"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Переміщення"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Назва"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Лише один документ edi на переміщення формату"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Платежі"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Обробити зараз"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Одиниця вимірювання товару"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Переробіть послідовність записів журналу."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Дія звіту"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Надіслати запит на скасування EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Повторити"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Надіслати рахунки XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Надіслано"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Статус"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "Зведений стан усіх EDI з веб-сервісом цього переміщення"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"Валюта (%s) документу, який ви завантажуєте, неактивна в цій базі даних.\n"
|
||||
"Активуйте її та оновіть курс валют, якщо потрібно, перш ніж спробувати знову імпортувати."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"Файл створений edi_format_id під час публікації рахунку (і цей документ "
|
||||
"обробляється)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr "Наступні документи вже надіслано, і їх не можна повторно замовити: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Рахунок-фактура оброблятиметься асинхронно наступною службою електронного "
|
||||
"виставлення рахунків:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
"Платіж оброблятиметься асинхронно за допомогою наступної служби електронного"
|
||||
" виставлення рахунків:"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr ""
|
||||
"Текст останньої помилки, що виникла під час операції електронного рахунку."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Цей код вже існує"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Цей документ уже надсилається іншим процесом."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Скасувати"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Надіслати"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Попередження"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"Ви не можете редагувати наступний запис журналу %s, тому що електронний "
|
||||
"документ вже надіслано. Замість цього використовуйте кнопку 'Запит на "
|
||||
"скасування EDI'."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"Ви не можете від’єднати прикріплення, яке є документом EDI, надісланим "
|
||||
"державним органам."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Переглянути помилки"
|
||||
520
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/vi.po
Normal file
520
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/vi.po
Normal file
|
|
@ -0,0 +1,520 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Thi Huong Nguyen, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Vietnamese (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "(Các) lỗi lập hoá đơn điện tử"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "(Các) thông tin lập hoá đơn điện tử"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "(Các) cảnh báo lập hoá đơn điện tử"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "Việc hủy bỏ EDI đã được yêu cầu."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "Yêu cầu hủy bỏ EDI đã bị hủy bỏ."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "Đính kèm"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "Mức độ chặn"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"Chặn thao tác hiện tại của chứng từ tùy vào mức độ nghiêm trọng của lỗi:\n"
|
||||
"* Thông tin: chứng từ không bị chặn và mọi thứ vẫn hoạt động bình thường.\n"
|
||||
"* Cảnh báo: có một lỗi không ngăn cản thao tác Lập hóa đơn điện tử hiện tại thành công.\n"
|
||||
"* Lỗi: xảy ra lỗi chặn thao tác Lập hóa đơn điện tử hiện tại."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "Huỷ lện huỷ EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "Đã hủy"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr ""
|
||||
"Không thể tắt Kích hoạt (%s) trên sổ nhật ký này bởi vì không phải tất cả "
|
||||
"chứng từ đều được đồng bộ hóa"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "Mã"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "Edi tương thích"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "Được tạo bởi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "Được tạo vào"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "Tải xuống"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI : Thực hiện các hoạt động dịch vụ web"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "Chứng từ EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "Định dạng EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "Định dạng EDI hỗ trợ các bút toán trong sổ nhật ký này"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Mức độ chặn EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Nội dung EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Edi Document"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Edi Error Count"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Thông báo lỗi EID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Định dạng Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi Show Abandon Cancel Button"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Edi Show Cancel Button"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "Edi Web Services To Process"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "Trao đổi dữ liệu điện tử"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "Tài liệu điện tử cho account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "Hóa đơn điện tử"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "Cần xử lý việc lập hoá đơn điện tử"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "Trạng thái lập hoá đơn điện tử"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "Mẫu Email"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "Lỗi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "Định dạng tên"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "How many EDIs are in error for this move ?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "Thông tin"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"Cấu hình hoá đơn không hợp lệ:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "Sổ nhật ký"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "Bút toán "
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "Bút toán"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "Sửa lần cuối vào"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "Last Updated by"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "Cập nhật lần cuối vào"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "Dịch chuyển"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "Tên"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "Only one edi document by move by format"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "Thanh toán"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "Xử lý ngay"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "Đơn vị tính của sản phẩm"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "Tạo lại số thứ tự bút toán."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "Báo cáo tác vụ"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "Yêu cầu EDI hủy"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "Thử lại"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "Gửi hóa đơn XML/EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "Đã gửi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "Trạng thái"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr ""
|
||||
"Trạng thái tổng hợp của tất cả các EDI kèm dịch vụ web của bút toán này"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr ""
|
||||
"Các chứng từ sau đây đã được gửi đi và không thể đánh lại số thứ tự: %s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr "Văn bản báo lỗi cuối cùng xảy ra trong thao tác lập Hóa đơn điện tử."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "Mã này đã tồn tại"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "Chứng từ này đang được gửi bởi một quá trình khác."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "Chờ hủy"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "Để gửi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "Cảnh báo"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ Xem các lỗi"
|
||||
516
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/zh_CN.po
Normal file
516
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/zh_CN.po
Normal file
|
|
@ -0,0 +1,516 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# 山西清水欧度(QQ:54773801) <54773801@qq.com>, 2022
|
||||
# Martin Trigaux, 2022
|
||||
# Raymond Yu <cl_yu@hotmail.com>, 2022
|
||||
# Emily Jia <eji@odoo.com>, 2023
|
||||
# Jeffery CHEN <jeffery9@gmail.com>, 2023
|
||||
# Chloe Wang, 2024
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Chinese (China) (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr "电子开票错误"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr "电子开票信息"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr "电子开票警告"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "已请求取消 EDI。"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "已取消EDi申请。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "附件"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "故障级别"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"根据错误的严重程度,阻断文档的当前操作。\n"
|
||||
" * 信息:文档没有被封锁,一切都在正常工作。\n"
|
||||
" * 警告:存在一个错误,但不妨碍当前电子开票操作的成功。\n"
|
||||
" * 错误:存在一个错误,阻止了当前的电子开票操作。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "取消EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "已取消"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr "无法在此日记账上停用 (%s),因为并非所有文档都同步"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "代号"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "兼容Edi"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "创建人"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "创建时间"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr "显示无效币种警告"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "下载"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI : 执行 网络 服务操作"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI 文档"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI 格式"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "支持在此日记账中凭证的 EDI 格式"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Edi故障级别"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "Edi 内容"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "Edi 文档"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "Edi 错误计数"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Edi错误信息"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "Edi 格式"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi 显示放弃取消按钮"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "Edi 显示取消按钮"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "要处理的 Edi 网络 服务"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "电子数据交换"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "电子文档的account.move"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "电子开票"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "需要电子开票处理"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "电子开票状态"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "EMail模板"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "错误"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "格式名称"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "此凭证有多少 EDIs 出错?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "信息"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"无效的结算单配置:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "日记账"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "日记账分录"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "日记账项目"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最后修改时间"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最后更新人"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最后更新时间"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "凭证"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "名称"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "仅按格式凭证一个 edi 文档"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "支付"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "待处理"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "产品计量单位"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "对日记账分录进行重新排序。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "报告动作"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "请求 EDI 取消"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "重试"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "发送 XML/EDI 结算单"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "发送"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "状态"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "此举的所有EDI与网络服务的汇总状态"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"您上传中文档的货币 (%s) 在此数据库中没有被启用。\n"
|
||||
"如果需要,在重新尝试导入前请激活它并更新货币汇率。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr "过帐结算单时edi_format_id生成的文件(并处理此单据)。"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr "下列文件已经发送,无法重新排序:%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr "开票单将由以下电子开票单服务异步处理。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr "该支付将由以下电子开票服务异步处理。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr "电子结算单操作期间最后一个错误的文本。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "此代码已存在"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "此文档已由另一个进程发送。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "取消"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "发送"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "警告"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr "您无法编辑以下日记账分录 %s,因为已发送电子文档。请改为使用\"请求 EDI 取消\"按钮。"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr "您不能取消链接附件是发送给政府的 EDI 文档。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒请参阅错误"
|
||||
513
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/zh_TW.po
Normal file
513
odoo-bringout-oca-ocb-account_edi/account_edi/i18n/zh_TW.po
Normal file
|
|
@ -0,0 +1,513 @@
|
|||
# Translation of Odoo Server.
|
||||
# This file contains the translation of the following modules:
|
||||
# * account_edi
|
||||
#
|
||||
# Translators:
|
||||
# Martin Trigaux, 2022
|
||||
# Pak Wai Ho, 2024
|
||||
# Tony Ng, 2025
|
||||
# Wil Odoo, 2025
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Odoo Server 16.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2025-02-10 08:26+0000\n"
|
||||
"PO-Revision-Date: 2022-09-22 05:44+0000\n"
|
||||
"Last-Translator: Wil Odoo, 2025\n"
|
||||
"Language-Team: Chinese (Taiwan) (https://app.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_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing error(s)"
|
||||
msgstr " 電子發票錯誤"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing info(s)"
|
||||
msgstr " 電子發票資訊"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid " Electronic invoicing warning(s)"
|
||||
msgstr " 電子發票警告"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A cancellation of the EDI has been requested."
|
||||
msgstr "已請求取消 EDI."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid "A request for cancellation of the EDI has been called off."
|
||||
msgstr "取消 EDI 的請求已被取消."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_attachment
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__attachment_id
|
||||
msgid "Attachment"
|
||||
msgstr "附件"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__blocking_level
|
||||
msgid "Blocking Level"
|
||||
msgstr "禁用等級"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__blocking_level
|
||||
msgid ""
|
||||
"Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation."
|
||||
msgstr ""
|
||||
"根據錯誤嚴重性阻止文件當前操作:\n"
|
||||
" * 訊息:文件沒有被阻止,一切正常。\n"
|
||||
" * 警告:存在不會阻止當前電子應收憑單(發票)操作成功的錯誤。\n"
|
||||
" * 錯誤:有一個錯誤阻止了當前的電子發票操作."
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Call off EDI Cancellation"
|
||||
msgstr "取消 EDI 取消動作"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__cancelled
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__cancelled
|
||||
msgid "Cancelled"
|
||||
msgstr "已取消"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_journal.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Cannot deactivate (%s) on this journal because not all documents are "
|
||||
"synchronized"
|
||||
msgstr "無法在此紀錄上停用 (%s) 因為並非所有文件都同步"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__code
|
||||
msgid "Code"
|
||||
msgstr "代號"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "Compatible Edi"
|
||||
msgstr "相容的 EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_uid
|
||||
msgid "Created by"
|
||||
msgstr "創立者"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__create_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__create_date
|
||||
msgid "Created on"
|
||||
msgstr "建立於"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__display_name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__display_name
|
||||
msgid "Display Name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid "Display the currency"
|
||||
msgstr ""
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Download"
|
||||
msgstr "下載"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.server,name:account_edi.ir_cron_edi_network_ir_actions_server
|
||||
#: model:ir.cron,cron_name:account_edi.ir_cron_edi_network
|
||||
msgid "EDI : Perform web services operations"
|
||||
msgstr "EDI : 執行 Web 服務操作"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "EDI Documents"
|
||||
msgstr "EDI 文件"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_format
|
||||
msgid "EDI format"
|
||||
msgstr "EDI 格式"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__compatible_edi_ids
|
||||
msgid "EDI format that support moves in this journal"
|
||||
msgstr "支援此日記帳分錄的 EDI 格式"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_blocking_level
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_blocking_level
|
||||
msgid "Edi Blocking Level"
|
||||
msgstr "Edi 禁用等級"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_content
|
||||
msgid "Edi Content"
|
||||
msgstr "EDI 內容"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_document_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_document_ids
|
||||
msgid "Edi Document"
|
||||
msgstr "EDI文件"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_count
|
||||
msgid "Edi Error Count"
|
||||
msgstr "EDI 錯誤計數"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_error_message
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_error_message
|
||||
msgid "Edi Error Message"
|
||||
msgstr "Edi 錯誤訊息"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_id
|
||||
msgid "Edi Format"
|
||||
msgstr "EDI 格式"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_abandon_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_abandon_cancel_button
|
||||
msgid "Edi Show Abandon Cancel Button"
|
||||
msgstr "Edi 顯示放棄取消按鈕"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_show_cancel_button
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_show_cancel_button
|
||||
msgid "Edi Show Cancel Button"
|
||||
msgstr "EDI顯示取消按鈕"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_web_services_to_process
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_web_services_to_process
|
||||
msgid "Edi Web Services To Process"
|
||||
msgstr "要處理的 EDI Web 服務"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_journal_form_inherited
|
||||
msgid "Electronic Data Interchange"
|
||||
msgstr "電子數據交換"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_edi_document
|
||||
msgid "Electronic Document for an account.move"
|
||||
msgstr "此日記帳分錄的 EDI 文件"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_edi_documents
|
||||
#: model:ir.actions.act_window,name:account_edi.action_open_payment_edi_documents
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_journal__edi_format_ids
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_payment__edi_state
|
||||
msgid "Electronic invoicing"
|
||||
msgstr "EDI憑單"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing processing needed"
|
||||
msgstr "需要電子發票處理"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_account_invoice_filter
|
||||
msgid "Electronic invoicing state"
|
||||
msgstr "電子發票狀態"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_mail_template
|
||||
msgid "Email Templates"
|
||||
msgstr "電郵範本"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__error
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__error
|
||||
msgid "Error"
|
||||
msgstr "錯誤"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__edi_format_name
|
||||
msgid "Format Name"
|
||||
msgstr "格式名稱"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_error_count
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_error_count
|
||||
msgid "How many EDIs are in error for this move ?"
|
||||
msgstr "此憑證有多少 EDI 出錯?"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__id
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__id
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__info
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__info
|
||||
msgid "Info"
|
||||
msgstr "資訊"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"Invalid invoice configuration:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
msgstr ""
|
||||
"無效應收付(發票)設定:\n"
|
||||
"\n"
|
||||
"%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_journal
|
||||
msgid "Journal"
|
||||
msgstr "日記賬"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move
|
||||
msgid "Journal Entry"
|
||||
msgstr "日記帳分錄"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_move_line
|
||||
msgid "Journal Item"
|
||||
msgstr "日記帳項目"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document____last_update
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format____last_update
|
||||
msgid "Last Modified on"
|
||||
msgstr "最後修改於"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_uid
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_uid
|
||||
msgid "Last Updated by"
|
||||
msgstr "最後更新者"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__write_date
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__write_date
|
||||
msgid "Last Updated on"
|
||||
msgstr "最後更新於"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__move_id
|
||||
msgid "Move"
|
||||
msgstr "分錄"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__name
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_format__name
|
||||
msgid "Name"
|
||||
msgstr "名稱"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_document_unique_edi_document_by_move_by_format
|
||||
msgid "Only one edi document by move by format"
|
||||
msgstr "按格式過帳只能有一個 edi 文件"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_payment
|
||||
msgid "Payments"
|
||||
msgstr "收付款"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Process now"
|
||||
msgstr "立刻執行"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_uom_uom
|
||||
msgid "Product Unit of Measure"
|
||||
msgstr "產品計量單位"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_account_resequence_wizard
|
||||
msgid "Remake the sequence of Journal Entries."
|
||||
msgstr "重新建立日記帳分錄的序列."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model,name:account_edi.model_ir_actions_report
|
||||
msgid "Report Action"
|
||||
msgstr "報告動作"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid "Request EDI Cancellation"
|
||||
msgstr "請求取消EDI"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "Retry"
|
||||
msgstr "重試"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_journal__edi_format_ids
|
||||
msgid "Send XML/EDI invoices"
|
||||
msgstr "發送 XML/EDI 憑單"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__sent
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__sent
|
||||
msgid "Sent"
|
||||
msgstr "已發送"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,field_description:account_edi.field_account_edi_document__state
|
||||
msgid "State"
|
||||
msgstr "狀態"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_bank_statement_line__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_move__edi_state
|
||||
#: model:ir.model.fields,help:account_edi.field_account_payment__edi_state
|
||||
msgid "The aggregated state of all the EDIs with web-service of this move"
|
||||
msgstr "此過帳憑證的所有 EDI 的聚合狀態"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_format.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The currency (%s) of the document you are uploading is not active in this database.\n"
|
||||
"Please activate it and update the currency rate if needed before trying again to import."
|
||||
msgstr ""
|
||||
"你正在上載的文件,其貨幣(%s)在此資料庫未生效。\n"
|
||||
"請先啟用貨幣,若有需要就更新貨幣匯率,然後再嘗試匯入。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__attachment_id
|
||||
msgid ""
|
||||
"The file generated by edi_format_id when the invoice is posted (and this "
|
||||
"document is processed)."
|
||||
msgstr "過帳 edi_format_id 應收帳單時產生的文件 (並且此文件已處理)."
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/wizard/account_resequence.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"The following documents have already been sent and cannot be resequenced: %s"
|
||||
msgstr "以下文件已被傳送並且無法重新排序:%s"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
msgid ""
|
||||
"The invoice will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr "發票將由以下電子發票服務非同步處理 :"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid ""
|
||||
"The payment will be processed asynchronously by the following E-invoicing "
|
||||
"service :"
|
||||
msgstr "付款將由以下電子發票服務非同步處理 :"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields,help:account_edi.field_account_edi_document__error
|
||||
msgid ""
|
||||
"The text of the last error that happened during Electronic Invoice "
|
||||
"operation."
|
||||
msgstr "電子發票操作期間發生的最後一個錯誤的文件."
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.constraint,message:account_edi.constraint_account_edi_format_unique_code
|
||||
msgid "This code already exists"
|
||||
msgstr "此代碼已存在"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_edi_document.py:0
|
||||
#, python-format
|
||||
msgid "This document is being sent by another process already. "
|
||||
msgstr "文件現正由另一處理程序傳送。"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_cancel
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_cancel
|
||||
msgid "To Cancel"
|
||||
msgstr "待取消"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__state__to_send
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_state__to_send
|
||||
msgid "To Send"
|
||||
msgstr "待發送"
|
||||
|
||||
#. module: account_edi
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_edi_document__blocking_level__warning
|
||||
#: model:ir.model.fields.selection,name:account_edi.selection__account_move__edi_blocking_level__warning
|
||||
msgid "Warning"
|
||||
msgstr "警告"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/account_move.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't edit the following journal entry %s because an electronic document"
|
||||
" has already been sent. Please use the 'Request EDI Cancellation' button "
|
||||
"instead."
|
||||
msgstr "您無法編輯以下分錄 %s ,因為已傳送EDI文件。請改為使用\"請求取消EDI\"按鈕。"
|
||||
|
||||
#. module: account_edi
|
||||
#. odoo-python
|
||||
#: code:addons/account_edi/models/ir_attachment.py:0
|
||||
#, python-format
|
||||
msgid ""
|
||||
"You can't unlink an attachment being an EDI document sent to the government."
|
||||
msgstr "您無法刪除附件,因此記錄包含了一個發送給政府的EDI文件"
|
||||
|
||||
#. module: account_edi
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_move_form_inherit
|
||||
#: model_terms:ir.ui.view,arch_db:account_edi.view_payment_form_inherit
|
||||
msgid "⇒ See errors"
|
||||
msgstr "⇒ 查看錯誤訊息"
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
|
||||
from . import account_move
|
||||
from . import account_journal
|
||||
from . import account_edi_format
|
||||
from . import account_edi_document
|
||||
from . import account_payment
|
||||
from . import ir_actions_report
|
||||
from . import mail_template
|
||||
from . import ir_attachment
|
||||
from . import uom
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,284 @@
|
|||
# -*- 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
|
||||
|
||||
from psycopg2 import OperationalError
|
||||
import base64
|
||||
import logging
|
||||
from collections import defaultdict
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
DEFAULT_BLOCKING_LEVEL = 'error'
|
||||
|
||||
|
||||
class AccountEdiDocument(models.Model):
|
||||
_name = 'account.edi.document'
|
||||
_description = 'Electronic Document for an account.move'
|
||||
|
||||
# == Stored fields ==
|
||||
move_id = fields.Many2one('account.move', required=True, ondelete='cascade', index=True)
|
||||
edi_format_id = fields.Many2one('account.edi.format', required=True)
|
||||
attachment_id = fields.Many2one(
|
||||
comodel_name='ir.attachment',
|
||||
groups='base.group_system',
|
||||
help="The file generated by edi_format_id when the invoice is posted (and this document is processed).",
|
||||
)
|
||||
state = fields.Selection([('to_send', 'To Send'), ('sent', 'Sent'), ('to_cancel', 'To Cancel'), ('cancelled', 'Cancelled')])
|
||||
error = fields.Html(help='The text of the last error that happened during Electronic Invoice operation.')
|
||||
blocking_level = fields.Selection(
|
||||
selection=[('info', 'Info'), ('warning', 'Warning'), ('error', 'Error')],
|
||||
help="Blocks the current operation of the document depending on the error severity:\n"
|
||||
" * Info: the document is not blocked and everything is working as it should.\n"
|
||||
" * Warning: there is an error that doesn't prevent the current Electronic Invoicing operation to succeed.\n"
|
||||
" * Error: there is an error that blocks the current Electronic Invoicing operation.")
|
||||
|
||||
# == Not stored fields ==
|
||||
name = fields.Char(related='attachment_id.name')
|
||||
edi_format_name = fields.Char(string='Format Name', related='edi_format_id.name')
|
||||
edi_content = fields.Binary(compute='_compute_edi_content', compute_sudo=True)
|
||||
|
||||
_sql_constraints = [
|
||||
(
|
||||
'unique_edi_document_by_move_by_format',
|
||||
'UNIQUE(edi_format_id, move_id)',
|
||||
'Only one edi document by move by format',
|
||||
),
|
||||
]
|
||||
|
||||
@api.depends('move_id', 'error', 'state')
|
||||
def _compute_edi_content(self):
|
||||
for doc in self:
|
||||
res = b''
|
||||
if doc.state in ('to_send', 'to_cancel'):
|
||||
move = doc.move_id
|
||||
config_errors = doc.edi_format_id._check_move_configuration(move)
|
||||
if config_errors:
|
||||
res = base64.b64encode('\n'.join(config_errors).encode('UTF-8'))
|
||||
else:
|
||||
move_applicability = doc.edi_format_id._get_move_applicability(move)
|
||||
if move_applicability and move_applicability.get('edi_content'):
|
||||
res = base64.b64encode(move_applicability['edi_content'](move))
|
||||
doc.edi_content = res
|
||||
|
||||
def action_export_xml(self):
|
||||
self.ensure_one()
|
||||
return {
|
||||
'type': 'ir.actions.act_url',
|
||||
'url': '/web/content/account.edi.document/%s/edi_content' % self.id
|
||||
}
|
||||
|
||||
def _prepare_jobs(self):
|
||||
"""Creates a list of jobs to be performed by '_process_job' for the documents in self.
|
||||
Each document represent a job, BUT if multiple documents have the same state, edi_format_id,
|
||||
doc_type (invoice or payment) and company_id AND the edi_format_id supports batching, they are grouped
|
||||
into a single job.
|
||||
|
||||
:returns: [{
|
||||
'documents': account.edi.document,
|
||||
'method_to_call': str,
|
||||
}]
|
||||
"""
|
||||
# Classify jobs by (edi_format, edi_doc.state, doc_type, move.company_id, custom_key)
|
||||
to_process = {}
|
||||
for state, edi_flow in (('to_send', 'post'), ('to_cancel', 'cancel')):
|
||||
documents = self.filtered(lambda d: d.state == state and d.blocking_level != 'error')
|
||||
# This is a dict that for each batching key gives the value that should be appended to the batching key,
|
||||
# in order to enforce a limit of documents per batch.
|
||||
batching_limit_keys = defaultdict(lambda: 0)
|
||||
for edi_doc in documents:
|
||||
edi_format = edi_doc.edi_format_id
|
||||
move = edi_doc.move_id
|
||||
move_applicability = edi_doc.edi_format_id._get_move_applicability(move) or {}
|
||||
|
||||
batching_key = [edi_format, state, move.company_id]
|
||||
custom_batching_key = f'{edi_flow}_batching'
|
||||
if move_applicability.get(custom_batching_key):
|
||||
batching_key += list(move_applicability[custom_batching_key](move))
|
||||
else:
|
||||
batching_key.append(move.id)
|
||||
|
||||
if move_applicability.get('batching_limit'):
|
||||
batching_key_without_limit = tuple(batching_key)
|
||||
batching_key.append(batching_limit_keys[batching_key_without_limit])
|
||||
|
||||
batch = to_process.setdefault(tuple(batching_key), {
|
||||
'documents': self.env['account.edi.document'],
|
||||
'method_to_call': move_applicability.get(edi_flow),
|
||||
})
|
||||
batch['documents'] |= edi_doc
|
||||
|
||||
if move_applicability.get('batching_limit') and len(batch['documents']) >= move_applicability['batching_limit']:
|
||||
batching_limit_keys[batching_key_without_limit] += 1
|
||||
|
||||
return list(to_process.values())
|
||||
|
||||
@api.model
|
||||
def _process_job(self, job):
|
||||
"""Post or cancel move_id (invoice or payment) by calling the related methods on edi_format_id.
|
||||
Invoices are processed before payments.
|
||||
|
||||
:param job: {
|
||||
'documents': account.edi.document,
|
||||
'method_to_call': str,
|
||||
}
|
||||
"""
|
||||
def _postprocess_post_edi_results(documents, edi_result):
|
||||
attachments_to_unlink = self.env['ir.attachment']
|
||||
for document in documents:
|
||||
move = document.move_id
|
||||
move_result = edi_result.get(move, {})
|
||||
if move_result.get('attachment'):
|
||||
old_attachment = document.sudo().attachment_id
|
||||
document.sudo().attachment_id = move_result['attachment']
|
||||
if not old_attachment.res_model or not old_attachment.res_id:
|
||||
attachments_to_unlink |= old_attachment
|
||||
if move_result.get('success') is True:
|
||||
document.write({
|
||||
'state': 'sent',
|
||||
'error': False,
|
||||
'blocking_level': False,
|
||||
})
|
||||
if move.is_invoice(include_receipts=True):
|
||||
reconciled_lines = move.line_ids.filtered(lambda line: line.account_id.account_type in ('asset_receivable', 'liability_payable'))
|
||||
reconciled_amls = reconciled_lines.mapped('matched_debit_ids.debit_move_id') \
|
||||
| reconciled_lines.mapped('matched_credit_ids.credit_move_id')
|
||||
reconciled_amls.move_id._update_payments_edi_documents()
|
||||
else:
|
||||
document.write({
|
||||
'error': move_result.get('error', False),
|
||||
'blocking_level': move_result.get('blocking_level', DEFAULT_BLOCKING_LEVEL) if 'error' in move_result else False,
|
||||
})
|
||||
|
||||
# Attachments that are not explicitly linked to a business model could be removed because they are not
|
||||
# supposed to have any traceability from the user.
|
||||
attachments_to_unlink.sudo().unlink()
|
||||
|
||||
def _postprocess_cancel_edi_results(documents, edi_result):
|
||||
move_ids_to_cancel = set() # Avoid duplicates
|
||||
attachments_to_unlink = self.env['ir.attachment']
|
||||
for document in documents:
|
||||
move = document.move_id
|
||||
move_result = edi_result.get(move, {})
|
||||
if move_result.get('success') is True:
|
||||
old_attachment = document.sudo().attachment_id
|
||||
document.sudo().write({
|
||||
'state': 'cancelled',
|
||||
'error': False,
|
||||
'attachment_id': False,
|
||||
'blocking_level': False,
|
||||
})
|
||||
|
||||
if move.state == 'posted' and all(
|
||||
doc.state == 'cancelled'
|
||||
or not doc.edi_format_id._needs_web_services()
|
||||
for doc in move.edi_document_ids
|
||||
):
|
||||
# The user requested a cancellation of the EDI and it has been approved. Then, the invoice
|
||||
# can be safely cancelled.
|
||||
move_ids_to_cancel.add(move.id)
|
||||
|
||||
if not old_attachment.res_model or not old_attachment.res_id:
|
||||
attachments_to_unlink |= old_attachment
|
||||
|
||||
else:
|
||||
document.write({
|
||||
'error': move_result.get('error', False),
|
||||
'blocking_level': move_result.get('blocking_level', DEFAULT_BLOCKING_LEVEL) if move_result.get('error') else False,
|
||||
})
|
||||
|
||||
if move_ids_to_cancel:
|
||||
invoices = self.env['account.move'].browse(list(move_ids_to_cancel))
|
||||
invoices.button_draft()
|
||||
invoices.button_cancel()
|
||||
|
||||
# Attachments that are not explicitly linked to a business model could be removed because they are not
|
||||
# supposed to have any traceability from the user.
|
||||
attachments_to_unlink.sudo().unlink()
|
||||
|
||||
documents = job['documents']
|
||||
if job['method_to_call']:
|
||||
method_to_call = job['method_to_call']
|
||||
else:
|
||||
method_to_call = lambda moves: {move: {'success': True} for move in moves}
|
||||
documents.edi_format_id.ensure_one() # All account.edi.document of a job should have the same edi_format_id
|
||||
documents.move_id.company_id.ensure_one() # All account.edi.document of a job should be from the same company
|
||||
if len(set(doc.state for doc in documents)) != 1:
|
||||
raise ValueError('All account.edi.document of a job should have the same state')
|
||||
|
||||
state = documents[0].state
|
||||
documents.move_id.line_ids.flush_recordset() # manual flush for tax details
|
||||
moves = documents.move_id
|
||||
if state == 'to_send':
|
||||
if all(move.is_invoice(include_receipts=True) for move in moves):
|
||||
with moves._send_only_when_ready():
|
||||
edi_result = method_to_call(moves)
|
||||
else:
|
||||
edi_result = method_to_call(moves)
|
||||
_postprocess_post_edi_results(documents, edi_result)
|
||||
elif state == 'to_cancel':
|
||||
edi_result = method_to_call(moves)
|
||||
_postprocess_cancel_edi_results(documents, edi_result)
|
||||
|
||||
def _process_documents_no_web_services(self):
|
||||
""" Post and cancel all the documents that don't need a web service.
|
||||
"""
|
||||
jobs = self.filtered(lambda d: not d.edi_format_id._needs_web_services())._prepare_jobs()
|
||||
for job in jobs:
|
||||
self._process_job(job)
|
||||
|
||||
def _process_documents_web_services(self, job_count=None, with_commit=True):
|
||||
''' Post and cancel all the documents that need a web service.
|
||||
|
||||
:param job_count: The maximum number of jobs to process if specified.
|
||||
:param with_commit: Flag indicating a commit should be made between each job.
|
||||
:return: The number of remaining jobs to process.
|
||||
'''
|
||||
all_jobs = self.filtered(lambda d: d.edi_format_id._needs_web_services())._prepare_jobs()
|
||||
jobs_to_process = all_jobs[0:job_count] if job_count else all_jobs
|
||||
|
||||
for job in jobs_to_process:
|
||||
documents = job['documents']
|
||||
move_to_lock = documents.move_id
|
||||
attachments_potential_unlink = documents.sudo().attachment_id.filtered(lambda a: not a.res_model and not a.res_id)
|
||||
try:
|
||||
with self.env.cr.savepoint(flush=False):
|
||||
self._cr.execute('SELECT * FROM account_edi_document WHERE id IN %s FOR UPDATE NOWAIT', [tuple(documents.ids)])
|
||||
self._cr.execute('SELECT * FROM account_move WHERE id IN %s FOR UPDATE NOWAIT', [tuple(move_to_lock.ids)])
|
||||
|
||||
# Locks the attachments that might be unlinked
|
||||
if attachments_potential_unlink:
|
||||
self._cr.execute('SELECT * FROM ir_attachment WHERE id IN %s FOR UPDATE NOWAIT', [tuple(attachments_potential_unlink.ids)])
|
||||
|
||||
except OperationalError as e:
|
||||
if e.pgcode == '55P03':
|
||||
_logger.debug('Another transaction already locked documents rows. Cannot process documents.')
|
||||
if not with_commit:
|
||||
raise UserError(_('This document is being sent by another process already. '))
|
||||
continue
|
||||
else:
|
||||
raise e
|
||||
self._process_job(job)
|
||||
if with_commit and len(jobs_to_process) > 1:
|
||||
self.env.cr.commit()
|
||||
|
||||
return len(all_jobs) - len(jobs_to_process)
|
||||
|
||||
@api.model
|
||||
def _cron_process_documents_web_services(self, job_count=None):
|
||||
''' Method called by the EDI cron processing all web-services.
|
||||
|
||||
:param job_count: Limit explicitely the number of web service calls. If not provided, process all.
|
||||
'''
|
||||
edi_documents = self.search([
|
||||
('state', 'in', ('to_send', 'to_cancel')),
|
||||
('move_id.state', '=', 'posted'),
|
||||
('blocking_level', '!=', 'error'),
|
||||
])
|
||||
nb_remaining_jobs = edi_documents._process_documents_web_services(job_count=job_count)
|
||||
|
||||
# Mark the CRON to be triggered again asap since there is some remaining jobs to process.
|
||||
if nb_remaining_jobs > 0:
|
||||
self.env.ref('account_edi.ir_cron_edi_network')._trigger()
|
||||
|
|
@ -0,0 +1,576 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models, fields, api, _
|
||||
from odoo.tools.pdf import OdooPdfFileReader
|
||||
from odoo.osv import expression
|
||||
from odoo.tools import html_escape
|
||||
from odoo.exceptions import RedirectWarning
|
||||
try:
|
||||
from PyPDF2.errors import PdfReadError
|
||||
except ImportError:
|
||||
from PyPDF2.utils import PdfReadError
|
||||
|
||||
from lxml import etree
|
||||
from struct import error as StructError
|
||||
import base64
|
||||
import io
|
||||
import logging
|
||||
import pathlib
|
||||
import re
|
||||
|
||||
|
||||
_logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
class AccountEdiFormat(models.Model):
|
||||
_name = 'account.edi.format'
|
||||
_description = 'EDI format'
|
||||
|
||||
name = fields.Char()
|
||||
code = fields.Char(required=True)
|
||||
|
||||
_sql_constraints = [
|
||||
('unique_code', 'unique (code)', 'This code already exists')
|
||||
]
|
||||
|
||||
####################################################
|
||||
# Low-level methods
|
||||
####################################################
|
||||
|
||||
@api.model_create_multi
|
||||
def create(self, vals_list):
|
||||
edi_formats = super().create(vals_list)
|
||||
|
||||
if not edi_formats:
|
||||
return edi_formats
|
||||
|
||||
# activate by default on journal
|
||||
if not self.pool.loaded:
|
||||
# The registry is not totally loaded. We cannot yet recompute the field on jourals as
|
||||
# The helper methods aren't yet overwritten by all installed `l10n_` modules.
|
||||
# Delay it in the register hook
|
||||
self.pool._delay_compute_edi_format_ids = True
|
||||
else:
|
||||
journals = self.env['account.journal'].search([])
|
||||
journals._compute_edi_format_ids()
|
||||
|
||||
# activate cron
|
||||
if any(edi_format._needs_web_services() for edi_format in edi_formats):
|
||||
self.env.ref('account_edi.ir_cron_edi_network').active = True
|
||||
|
||||
return edi_formats
|
||||
|
||||
def _register_hook(self):
|
||||
if hasattr(self.pool, "_delay_compute_edi_format_ids"):
|
||||
del self.pool._delay_compute_edi_format_ids
|
||||
journals = self.env['account.journal'].search([])
|
||||
journals._compute_edi_format_ids()
|
||||
|
||||
return super()._register_hook()
|
||||
|
||||
####################################################
|
||||
# Export method to override based on EDI Format
|
||||
####################################################
|
||||
|
||||
def _get_move_applicability(self, move):
|
||||
""" Core function for the EDI processing: it first checks whether the EDI format is applicable on a given
|
||||
move, if so, it then returns a dictionary containing the functions to call for this move.
|
||||
|
||||
:return: dict mapping str to function (callable)
|
||||
* post: function called for edi.documents with state 'to_send' (post flow)
|
||||
* cancel: function called for edi.documents with state 'to_cancel' (cancel flow)
|
||||
* post_batching: function returning the batching key for the post flow
|
||||
* cancel_batching: function returning the batching key for the cancel flow
|
||||
* edi_content: function called when computing the edi_content for an edi.document
|
||||
"""
|
||||
self.ensure_one()
|
||||
|
||||
def _needs_web_services(self):
|
||||
""" Indicate if the EDI must be generated asynchronously through to some web services.
|
||||
|
||||
:return: True if such a web service is available, False otherwise.
|
||||
"""
|
||||
self.ensure_one()
|
||||
return False
|
||||
|
||||
def _is_compatible_with_journal(self, journal):
|
||||
""" Indicate if the EDI format should appear on the journal passed as parameter to be selected by the user.
|
||||
If True, this EDI format will appear on the journal.
|
||||
|
||||
:param journal: The journal.
|
||||
:returns: True if this format can appear on the journal, False otherwise.
|
||||
"""
|
||||
# TO OVERRIDE
|
||||
self.ensure_one()
|
||||
return journal.type == 'sale'
|
||||
|
||||
def _is_enabled_by_default_on_journal(self, journal):
|
||||
""" Indicate if the EDI format should be selected by default on the journal passed as parameter.
|
||||
If True, this EDI format will be selected by default on the journal.
|
||||
|
||||
:param journal: The journal.
|
||||
:returns: True if this format should be enabled by default on the journal, False otherwise.
|
||||
"""
|
||||
return True
|
||||
|
||||
def _check_move_configuration(self, move):
|
||||
""" Checks the move and relevant records for potential error (missing data, etc).
|
||||
|
||||
:param move: The move to check.
|
||||
:returns: A list of error messages.
|
||||
"""
|
||||
# TO OVERRIDE
|
||||
return []
|
||||
|
||||
####################################################
|
||||
# Import methods to override based on EDI Format
|
||||
####################################################
|
||||
|
||||
def _create_invoice_from_xml_tree(self, filename, tree, journal=None):
|
||||
""" Create a new invoice with the data inside the xml.
|
||||
|
||||
:param filename: The name of the xml.
|
||||
:param tree: The tree of the xml to import.
|
||||
:param journal: The journal on which importing the invoice.
|
||||
:returns: The created invoice.
|
||||
"""
|
||||
# TO OVERRIDE
|
||||
self.ensure_one()
|
||||
return self.env['account.move']
|
||||
|
||||
def _update_invoice_from_xml_tree(self, filename, tree, invoice):
|
||||
""" Update an existing invoice with the data inside the xml.
|
||||
|
||||
:param filename: The name of the xml.
|
||||
:param tree: The tree of the xml to import.
|
||||
:param invoice: The invoice to update.
|
||||
:returns: The updated invoice.
|
||||
"""
|
||||
# TO OVERRIDE
|
||||
self.ensure_one()
|
||||
return self.env['account.move']
|
||||
|
||||
def _create_invoice_from_pdf_reader(self, filename, reader):
|
||||
""" Create a new invoice with the data inside a pdf.
|
||||
|
||||
:param filename: The name of the pdf.
|
||||
:param reader: The OdooPdfFileReader of the pdf to import.
|
||||
:returns: The created invoice.
|
||||
"""
|
||||
# TO OVERRIDE
|
||||
self.ensure_one()
|
||||
|
||||
return self.env['account.move']
|
||||
|
||||
def _update_invoice_from_pdf_reader(self, filename, reader, invoice):
|
||||
""" Update an existing invoice with the data inside the pdf.
|
||||
|
||||
:param filename: The name of the pdf.
|
||||
:param reader: The OdooPdfFileReader of the pdf to import.
|
||||
:param invoice: The invoice to update.
|
||||
:returns: The updated invoice.
|
||||
"""
|
||||
# TO OVERRIDE
|
||||
self.ensure_one()
|
||||
return self.env['account.move']
|
||||
|
||||
def _create_invoice_from_binary(self, filename, content, extension):
|
||||
""" Create a new invoice with the data inside a binary file.
|
||||
|
||||
:param filename: The name of the file.
|
||||
:param content: The content of the binary file.
|
||||
:param extension: The extensions as a string.
|
||||
:returns: The created invoice.
|
||||
"""
|
||||
# TO OVERRIDE
|
||||
self.ensure_one()
|
||||
return self.env['account.move']
|
||||
|
||||
def _update_invoice_from_binary(self, filename, content, extension, invoice):
|
||||
""" Update an existing invoice with the data inside a binary file.
|
||||
|
||||
:param filename: The name of the file.
|
||||
:param content: The content of the binary file.
|
||||
:param extension: The extensions as a string.
|
||||
:param invoice: The invoice to update.
|
||||
:returns: The updated invoice.
|
||||
"""
|
||||
# TO OVERRIDE
|
||||
self.ensure_one()
|
||||
return self.env['account.move']
|
||||
|
||||
def _prepare_invoice_report(self, pdf_writer, edi_document):
|
||||
"""
|
||||
Prepare invoice report to be printed.
|
||||
:param pdf_writer: The pdf writer with the invoice pdf content loaded.
|
||||
:param edi_document: The edi document to be added to the pdf file.
|
||||
"""
|
||||
# TO OVERRIDE
|
||||
self.ensure_one()
|
||||
|
||||
####################################################
|
||||
# Import Internal methods (not meant to be overridden)
|
||||
####################################################
|
||||
|
||||
def _decode_xml(self, filename, content):
|
||||
"""Decodes an xml into a list of one dictionary representing an attachment.
|
||||
|
||||
:param filename: The name of the xml.
|
||||
:param content: The bytes representing the xml.
|
||||
:returns: A list with a dictionary.
|
||||
* filename: The name of the attachment.
|
||||
* content: The content of the attachment.
|
||||
* type: The type of the attachment.
|
||||
* xml_tree: The tree of the xml if type is xml.
|
||||
"""
|
||||
to_process = []
|
||||
try:
|
||||
xml_tree = etree.fromstring(content)
|
||||
except Exception as e:
|
||||
_logger.exception("Error when converting the xml content to etree: %s" % e)
|
||||
return to_process
|
||||
if len(xml_tree):
|
||||
to_process.append({
|
||||
'filename': filename,
|
||||
'content': content,
|
||||
'type': 'xml',
|
||||
'xml_tree': xml_tree,
|
||||
})
|
||||
return to_process
|
||||
|
||||
def _decode_pdf(self, filename, content):
|
||||
"""Decodes a pdf and unwrap sub-attachment into a list of dictionary each representing an attachment.
|
||||
|
||||
:param filename: The name of the pdf.
|
||||
:param content: The bytes representing the pdf.
|
||||
:returns: A list of dictionary for each attachment.
|
||||
* filename: The name of the attachment.
|
||||
* content: The content of the attachment.
|
||||
* type: The type of the attachment.
|
||||
* xml_tree: The tree of the xml if type is xml.
|
||||
* pdf_reader: The pdf_reader if type is pdf.
|
||||
"""
|
||||
to_process = []
|
||||
try:
|
||||
buffer = io.BytesIO(content)
|
||||
pdf_reader = OdooPdfFileReader(buffer, strict=False)
|
||||
except Exception as e:
|
||||
# Malformed pdf
|
||||
_logger.warning("Error when reading the pdf: %s", e, exc_info=True)
|
||||
return to_process
|
||||
|
||||
# Process embedded files.
|
||||
try:
|
||||
for xml_name, content in pdf_reader.getAttachments():
|
||||
to_process.extend(self._decode_xml(xml_name, content))
|
||||
except (NotImplementedError, StructError, PdfReadError) as e:
|
||||
_logger.warning("Unable to access the attachments of %s. Tried to decrypt it, but %s." % (filename, e))
|
||||
|
||||
# Process the pdf itself.
|
||||
to_process.append({
|
||||
'filename': filename,
|
||||
'content': content,
|
||||
'type': 'pdf',
|
||||
'pdf_reader': pdf_reader,
|
||||
})
|
||||
|
||||
return to_process
|
||||
|
||||
def _decode_binary(self, filename, content):
|
||||
"""Decodes any file into a list of one dictionary representing an attachment.
|
||||
This is a fallback for all files that are not decoded by other methods.
|
||||
|
||||
:param filename: The name of the file.
|
||||
:param content: The bytes representing the file.
|
||||
:returns: A list with a dictionary.
|
||||
* filename: The name of the attachment.
|
||||
* content: The content of the attachment.
|
||||
* type: The type of the attachment.
|
||||
"""
|
||||
return [{
|
||||
'filename': filename,
|
||||
'extension': ''.join(pathlib.Path(filename).suffixes),
|
||||
'content': content,
|
||||
'type': 'binary',
|
||||
}]
|
||||
|
||||
def _decode_attachment(self, attachment):
|
||||
"""Decodes an ir.attachment and unwrap sub-attachment into a list of dictionary each representing an attachment.
|
||||
|
||||
:param attachment: An ir.attachment record.
|
||||
:returns: A list of dictionary for each attachment.
|
||||
* filename: The name of the attachment.
|
||||
* content: The content of the attachment.
|
||||
* type: The type of the attachment.
|
||||
* xml_tree: The tree of the xml if type is xml.
|
||||
* pdf_reader: The pdf_reader if type is pdf.
|
||||
"""
|
||||
content = base64.b64decode(attachment.with_context(bin_size=False).datas)
|
||||
to_process = []
|
||||
|
||||
# XML attachments received by mail have a 'text/plain' mimetype (cfr. context key: 'attachments_mime_plainxml')
|
||||
# Therefore, if content start with '<?xml', or if the filename ends with '.xml', it is considered as XML.
|
||||
is_text_plain_xml = 'text/plain' in attachment.mimetype and (content.startswith(b'<?xml') or attachment.name.endswith('.xml'))
|
||||
if 'pdf' in attachment.mimetype:
|
||||
to_process.extend(self._decode_pdf(attachment.name, content))
|
||||
elif attachment.mimetype.endswith('/xml') or is_text_plain_xml:
|
||||
to_process.extend(self._decode_xml(attachment.name, content))
|
||||
else:
|
||||
to_process.extend(self._decode_binary(attachment.name, content))
|
||||
|
||||
return to_process
|
||||
|
||||
def _create_document_from_attachment(self, attachment):
|
||||
"""Decodes an ir.attachment to create an invoice.
|
||||
|
||||
:param attachment: An ir.attachment record.
|
||||
:returns: The invoice where to import data.
|
||||
"""
|
||||
for file_data in self._decode_attachment(attachment):
|
||||
for edi_format in self:
|
||||
res = False
|
||||
try:
|
||||
if file_data['type'] == 'xml':
|
||||
res = edi_format.with_company(self.env.company)._create_invoice_from_xml_tree(file_data['filename'], file_data['xml_tree'])
|
||||
elif file_data['type'] == 'pdf':
|
||||
res = edi_format.with_company(self.env.company)._create_invoice_from_pdf_reader(file_data['filename'], file_data['pdf_reader'])
|
||||
file_data['pdf_reader'].stream.close()
|
||||
else:
|
||||
res = edi_format._create_invoice_from_binary(file_data['filename'], file_data['content'], file_data['extension'])
|
||||
except RedirectWarning as rw:
|
||||
raise rw
|
||||
except Exception as e:
|
||||
_logger.exception(
|
||||
"Error importing attachment \"%s\" as invoice with format \"%s\": %s",
|
||||
file_data['filename'],
|
||||
edi_format.name,
|
||||
str(e))
|
||||
if res:
|
||||
return res._link_invoice_origin_to_purchase_orders(timeout=4)
|
||||
return self.env['account.move']
|
||||
|
||||
def _update_invoice_from_attachment(self, attachment, invoice):
|
||||
"""Decodes an ir.attachment to update an invoice.
|
||||
|
||||
:param attachment: An ir.attachment record.
|
||||
:returns: The invoice where to import data.
|
||||
"""
|
||||
for file_data in self._decode_attachment(attachment):
|
||||
for edi_format in self:
|
||||
res = False
|
||||
try:
|
||||
if file_data['type'] == 'xml':
|
||||
res = edi_format.with_company(invoice.company_id)._update_invoice_from_xml_tree(file_data['filename'], file_data['xml_tree'], invoice)
|
||||
elif file_data['type'] == 'pdf':
|
||||
res = edi_format.with_company(invoice.company_id)._update_invoice_from_pdf_reader(file_data['filename'], file_data['pdf_reader'], invoice)
|
||||
file_data['pdf_reader'].stream.close()
|
||||
else: # file_data['type'] == 'binary'
|
||||
res = edi_format._update_invoice_from_binary(file_data['filename'], file_data['content'], file_data['extension'], invoice)
|
||||
except Exception as e:
|
||||
_logger.exception(
|
||||
"Error importing attachment \"%s\" as invoice with format \"%s\": %s",
|
||||
file_data['filename'],
|
||||
edi_format.name,
|
||||
str(e))
|
||||
if res:
|
||||
return res._link_invoice_origin_to_purchase_orders(timeout=4)
|
||||
return self.env['account.move']
|
||||
|
||||
####################################################
|
||||
# Import helpers
|
||||
####################################################
|
||||
|
||||
def _find_value(self, xpath, xml_element, namespaces=None):
|
||||
element = xml_element.xpath(xpath, namespaces=namespaces)
|
||||
return element[0].text if element else None
|
||||
|
||||
@api.model
|
||||
def _retrieve_partner_with_vat(self, vat, extra_domain):
|
||||
if not vat:
|
||||
return None
|
||||
|
||||
# Sometimes, the vat is specified with some whitespaces.
|
||||
normalized_vat = vat.replace(' ', '')
|
||||
country_prefix = re.match('^[a-zA-Z]{2}|^', vat).group()
|
||||
|
||||
partner = self.env['res.partner'].search(extra_domain + [('vat', 'in', (normalized_vat, vat))], limit=1)
|
||||
|
||||
# Try to remove the country code prefix from the vat.
|
||||
if not partner and country_prefix:
|
||||
partner = self.env['res.partner'].search(extra_domain + [
|
||||
('vat', 'in', (normalized_vat[2:], vat[2:])),
|
||||
('country_id.code', '=', country_prefix.upper()),
|
||||
], limit=1)
|
||||
|
||||
# The country could be not specified on the partner.
|
||||
if not partner:
|
||||
partner = self.env['res.partner'].search(extra_domain + [
|
||||
('vat', 'in', (normalized_vat[2:], vat[2:])),
|
||||
('country_id', '=', False),
|
||||
], limit=1)
|
||||
|
||||
# The vat could be a string of alphanumeric values without country code but with missing zeros at the
|
||||
# beginning.
|
||||
if not partner:
|
||||
try:
|
||||
vat_only_numeric = str(int(re.sub(r'^\D{2}', '', normalized_vat) or 0))
|
||||
except ValueError:
|
||||
vat_only_numeric = None
|
||||
|
||||
if vat_only_numeric:
|
||||
query = self.env['res.partner']._where_calc(extra_domain + [('active', '=', True)])
|
||||
tables, where_clause, where_params = query.get_sql()
|
||||
|
||||
if country_prefix:
|
||||
vat_prefix_regex = f'({country_prefix})?'
|
||||
else:
|
||||
vat_prefix_regex = '([A-z]{2})?'
|
||||
|
||||
self._cr.execute(f'''
|
||||
SELECT res_partner.id
|
||||
FROM {tables}
|
||||
WHERE {where_clause}
|
||||
AND res_partner.vat ~ %s
|
||||
LIMIT 1
|
||||
''', where_params + ['^%s0*%s$' % (vat_prefix_regex, vat_only_numeric)])
|
||||
partner_row = self._cr.fetchone()
|
||||
if partner_row:
|
||||
partner = self.env['res.partner'].browse(partner_row[0])
|
||||
|
||||
return partner
|
||||
|
||||
@api.model
|
||||
def _retrieve_partner_with_phone_mail(self, phone, mail, extra_domain):
|
||||
domains = []
|
||||
if phone:
|
||||
domains.append([('phone', '=', phone)])
|
||||
domains.append([('mobile', '=', phone)])
|
||||
if mail:
|
||||
domains.append([('email', '=', mail)])
|
||||
|
||||
if not domains:
|
||||
return None
|
||||
|
||||
domain = expression.OR(domains)
|
||||
if extra_domain:
|
||||
domain = expression.AND([domain, extra_domain])
|
||||
return self.env['res.partner'].search(domain, limit=1)
|
||||
|
||||
@api.model
|
||||
def _retrieve_partner_with_name(self, name, extra_domain):
|
||||
if not name:
|
||||
return None
|
||||
return self.env['res.partner'].search([('name', 'ilike', name)] + extra_domain, limit=1)
|
||||
|
||||
def _retrieve_partner(self, name=None, phone=None, mail=None, vat=None, domain=None):
|
||||
'''Search all partners and find one that matches one of the parameters.
|
||||
:param name: The name of the partner.
|
||||
:param phone: The phone or mobile of the partner.
|
||||
:param mail: The mail of the partner.
|
||||
:param vat: The vat number of the partner.
|
||||
:returns: A partner or an empty recordset if not found.
|
||||
'''
|
||||
|
||||
def search_with_vat(extra_domain):
|
||||
return self._retrieve_partner_with_vat(vat, extra_domain)
|
||||
|
||||
def search_with_phone_mail(extra_domain):
|
||||
return self._retrieve_partner_with_phone_mail(phone, mail, extra_domain)
|
||||
|
||||
def search_with_name(extra_domain):
|
||||
return self._retrieve_partner_with_name(name, extra_domain)
|
||||
|
||||
def search_with_domain(extra_domain):
|
||||
if not domain:
|
||||
return None
|
||||
return self.env['res.partner'].search(domain + extra_domain, limit=1)
|
||||
|
||||
for search_method in (search_with_vat, search_with_domain, search_with_phone_mail, search_with_name):
|
||||
for extra_domain in ([('company_id', '=', self.env.company.id)], [('company_id', '=', False)]):
|
||||
partner = search_method(extra_domain)
|
||||
if partner:
|
||||
return partner
|
||||
return self.env['res.partner']
|
||||
|
||||
def _retrieve_product(self, name=None, default_code=None, barcode=None):
|
||||
'''Search all products and find one that matches one of the parameters.
|
||||
Use the following priority:
|
||||
1. barcode
|
||||
2. default_code
|
||||
3. name (exact match)
|
||||
4. name (ilike)
|
||||
|
||||
:param name: The name of the product.
|
||||
:param default_code: The default_code of the product.
|
||||
:param barcode: The barcode of the product.
|
||||
:returns: A product or an empty recordset if not found.
|
||||
'''
|
||||
if name and '\n' in name:
|
||||
# cut Sales Description from the name
|
||||
name = name.split('\n')[0]
|
||||
domains = []
|
||||
if barcode:
|
||||
domains.append([('barcode', '=', barcode)])
|
||||
if default_code:
|
||||
domains.append([('default_code', '=', default_code)])
|
||||
if name:
|
||||
domains += [[('name', '=', name)], [('name', 'ilike', name)]]
|
||||
products = self.env['product.product'].search(
|
||||
expression.AND([
|
||||
expression.OR(domains),
|
||||
[('company_id', 'in', [False, self.env.company.id])],
|
||||
]),
|
||||
)
|
||||
if products:
|
||||
for domain in domains:
|
||||
products_by_domain = products.filtered_domain(domain)
|
||||
if products_by_domain:
|
||||
return products_by_domain[0]
|
||||
return self.env['product.product']
|
||||
|
||||
def _retrieve_tax(self, amount, type_tax_use):
|
||||
'''Search all taxes and find one that matches all of the parameters.
|
||||
|
||||
:param amount: The amount of the tax.
|
||||
:param type_tax_use: The type of the tax.
|
||||
:returns: A tax or an empty recordset if not found.
|
||||
'''
|
||||
domains = [
|
||||
[('amount', '=', float(amount))],
|
||||
[('type_tax_use', '=', type_tax_use)],
|
||||
[('company_id', '=', self.env.company.id)]
|
||||
]
|
||||
|
||||
return self.env['account.tax'].search(expression.AND(domains), order='sequence ASC', limit=1)
|
||||
|
||||
def _retrieve_currency(self, code):
|
||||
'''Search all currencies and find one that matches the code.
|
||||
|
||||
:param code: The code of the currency.
|
||||
:returns: A currency or an empty recordset if not found.
|
||||
'''
|
||||
currency = self.env['res.currency'].with_context(active_test=False).search([('name', '=', code.upper())], limit=1)
|
||||
if currency and not currency.active:
|
||||
error_msg = _('The currency (%s) of the document you are uploading is not active in this database.\n'
|
||||
'Please activate it and update the currency rate if needed before trying again to import.',
|
||||
currency.name)
|
||||
error_action = {
|
||||
'view_mode': 'form',
|
||||
'res_model': 'res.currency',
|
||||
'type': 'ir.actions.act_window',
|
||||
'target': 'new',
|
||||
'res_id': currency.id,
|
||||
'views': [[False, 'form']]
|
||||
}
|
||||
raise RedirectWarning(error_msg, error_action, _('Display the currency'))
|
||||
return currency
|
||||
|
||||
####################################################
|
||||
# Other helpers
|
||||
####################################################
|
||||
|
||||
@api.model
|
||||
def _format_error_message(self, error_title, errors):
|
||||
bullet_list_msg = ''.join('<li>%s</li>' % html_escape(msg) for msg in errors)
|
||||
return '%s<ul>%s</ul>' % (error_title, bullet_list_msg)
|
||||
|
|
@ -0,0 +1,83 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import api, models, fields, _
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
from collections import defaultdict
|
||||
|
||||
|
||||
class AccountJournal(models.Model):
|
||||
_inherit = 'account.journal'
|
||||
|
||||
edi_format_ids = fields.Many2many(comodel_name='account.edi.format',
|
||||
string='Electronic invoicing',
|
||||
help='Send XML/EDI invoices',
|
||||
domain="[('id', 'in', compatible_edi_ids)]",
|
||||
compute='_compute_edi_format_ids',
|
||||
readonly=False, store=True)
|
||||
|
||||
compatible_edi_ids = fields.Many2many(comodel_name='account.edi.format',
|
||||
compute='_compute_compatible_edi_ids',
|
||||
help='EDI format that support moves in this journal')
|
||||
|
||||
def write(self, vals):
|
||||
# OVERRIDE
|
||||
# Don't allow the user to deactivate an edi format having at least one document to be processed.
|
||||
if vals.get('edi_format_ids'):
|
||||
old_edi_format_ids = self.edi_format_ids
|
||||
res = super().write(vals)
|
||||
diff_edi_format_ids = old_edi_format_ids - self.edi_format_ids
|
||||
documents = self.env['account.edi.document'].search([
|
||||
('move_id.journal_id', 'in', self.ids),
|
||||
('edi_format_id', 'in', diff_edi_format_ids.ids),
|
||||
('state', 'in', ('to_cancel', 'to_send')),
|
||||
])
|
||||
# If the formats we are unchecking do not need a webservice, we don't need them to be correctly sent
|
||||
if documents.filtered(lambda d: d.edi_format_id._needs_web_services()):
|
||||
raise UserError(_('Cannot deactivate (%s) on this journal because not all documents are synchronized', ', '.join(documents.edi_format_id.mapped('display_name'))))
|
||||
# remove these documents which: do not need a web service & are linked to the edi formats we are unchecking
|
||||
if documents:
|
||||
documents.unlink()
|
||||
return res
|
||||
else:
|
||||
return super().write(vals)
|
||||
|
||||
@api.depends('type', 'company_id', 'company_id.account_fiscal_country_id')
|
||||
def _compute_compatible_edi_ids(self):
|
||||
edi_formats = self.env['account.edi.format'].search([])
|
||||
|
||||
for journal in self:
|
||||
compatible_edis = edi_formats.filtered(lambda e: e._is_compatible_with_journal(journal))
|
||||
journal.compatible_edi_ids = compatible_edis
|
||||
|
||||
@api.depends('type', 'company_id', 'company_id.account_fiscal_country_id')
|
||||
def _compute_edi_format_ids(self):
|
||||
edi_formats = self.env['account.edi.format'].search([])
|
||||
journal_ids = self.ids
|
||||
|
||||
if journal_ids:
|
||||
self._cr.execute('''
|
||||
SELECT
|
||||
move.journal_id,
|
||||
ARRAY_AGG(doc.edi_format_id) AS edi_format_ids
|
||||
FROM account_edi_document doc
|
||||
JOIN account_move move ON move.id = doc.move_id
|
||||
WHERE doc.state IN ('to_cancel', 'to_send')
|
||||
AND move.journal_id IN %s
|
||||
GROUP BY move.journal_id
|
||||
''', [tuple(journal_ids)])
|
||||
protected_edi_formats_per_journal = {r[0]: set(r[1]) for r in self._cr.fetchall()}
|
||||
else:
|
||||
protected_edi_formats_per_journal = defaultdict(set)
|
||||
|
||||
for journal in self:
|
||||
enabled_edi_formats = edi_formats.filtered(lambda e: e._is_compatible_with_journal(journal) and
|
||||
(e._is_enabled_by_default_on_journal(journal)
|
||||
or (e in journal.edi_format_ids)))
|
||||
|
||||
# The existing edi formats that are already in use so we can't remove it.
|
||||
protected_edi_format_ids = protected_edi_formats_per_journal.get(journal.id, set())
|
||||
protected_edi_formats = journal.edi_format_ids.filtered(lambda e: e.id in protected_edi_format_ids)
|
||||
|
||||
journal.edi_format_ids = enabled_edi_formats + protected_edi_formats
|
||||
|
|
@ -0,0 +1,500 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo import api, fields, models, _
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class AccountMove(models.Model):
|
||||
_inherit = 'account.move'
|
||||
|
||||
edi_document_ids = fields.One2many(
|
||||
comodel_name='account.edi.document',
|
||||
inverse_name='move_id')
|
||||
edi_state = fields.Selection(
|
||||
selection=[('to_send', 'To Send'), ('sent', 'Sent'), ('to_cancel', 'To Cancel'), ('cancelled', 'Cancelled')],
|
||||
string="Electronic invoicing",
|
||||
store=True,
|
||||
compute='_compute_edi_state',
|
||||
help='The aggregated state of all the EDIs with web-service of this move')
|
||||
edi_error_count = fields.Integer(
|
||||
compute='_compute_edi_error_count',
|
||||
help='How many EDIs are in error for this move ?')
|
||||
edi_blocking_level = fields.Selection(
|
||||
selection=[('info', 'Info'), ('warning', 'Warning'), ('error', 'Error')],
|
||||
compute='_compute_edi_error_message')
|
||||
edi_error_message = fields.Html(
|
||||
compute='_compute_edi_error_message')
|
||||
# Technical field to display the documents that will be processed by the CRON
|
||||
edi_web_services_to_process = fields.Text(
|
||||
compute='_compute_edi_web_services_to_process')
|
||||
edi_show_cancel_button = fields.Boolean(
|
||||
compute='_compute_edi_show_cancel_button')
|
||||
edi_show_abandon_cancel_button = fields.Boolean(
|
||||
compute='_compute_edi_show_abandon_cancel_button')
|
||||
|
||||
@api.depends('edi_document_ids.state')
|
||||
def _compute_edi_state(self):
|
||||
for move in self:
|
||||
all_states = set(move.edi_document_ids.filtered(lambda d: d.edi_format_id._needs_web_services()).mapped('state'))
|
||||
if all_states == {'sent'}:
|
||||
move.edi_state = 'sent'
|
||||
elif all_states == {'cancelled'}:
|
||||
move.edi_state = 'cancelled'
|
||||
elif 'to_send' in all_states:
|
||||
move.edi_state = 'to_send'
|
||||
elif 'to_cancel' in all_states:
|
||||
move.edi_state = 'to_cancel'
|
||||
else:
|
||||
move.edi_state = False
|
||||
|
||||
@api.depends('edi_document_ids.error')
|
||||
def _compute_edi_error_count(self):
|
||||
for move in self:
|
||||
move.edi_error_count = len(move.edi_document_ids.filtered(lambda d: d.error))
|
||||
|
||||
@api.depends('edi_error_count', 'edi_document_ids.error', 'edi_document_ids.blocking_level')
|
||||
def _compute_edi_error_message(self):
|
||||
for move in self:
|
||||
if move.edi_error_count == 0:
|
||||
move.edi_error_message = None
|
||||
move.edi_blocking_level = None
|
||||
elif move.edi_error_count == 1:
|
||||
error_doc = move.edi_document_ids.filtered(lambda d: d.error)
|
||||
move.edi_error_message = error_doc.error
|
||||
move.edi_blocking_level = error_doc.blocking_level
|
||||
else:
|
||||
error_levels = set([doc.blocking_level for doc in move.edi_document_ids])
|
||||
if 'error' in error_levels:
|
||||
move.edi_error_message = str(move.edi_error_count) + _(" Electronic invoicing error(s)")
|
||||
move.edi_blocking_level = 'error'
|
||||
elif 'warning' in error_levels:
|
||||
move.edi_error_message = str(move.edi_error_count) + _(" Electronic invoicing warning(s)")
|
||||
move.edi_blocking_level = 'warning'
|
||||
else:
|
||||
move.edi_error_message = str(move.edi_error_count) + _(" Electronic invoicing info(s)")
|
||||
move.edi_blocking_level = 'info'
|
||||
|
||||
@api.depends(
|
||||
'edi_document_ids',
|
||||
'edi_document_ids.state',
|
||||
'edi_document_ids.blocking_level',
|
||||
'edi_document_ids.edi_format_id',
|
||||
'edi_document_ids.edi_format_id.name')
|
||||
def _compute_edi_web_services_to_process(self):
|
||||
for move in self:
|
||||
to_process = move.edi_document_ids.filtered(lambda d: d.state in ['to_send', 'to_cancel'] and d.blocking_level != 'error')
|
||||
format_web_services = to_process.edi_format_id.filtered(lambda f: f._needs_web_services())
|
||||
move.edi_web_services_to_process = ', '.join(f.name for f in format_web_services)
|
||||
|
||||
def _check_edi_documents_for_reset_to_draft(self):
|
||||
self.ensure_one()
|
||||
for doc in self.edi_document_ids:
|
||||
move_applicability = doc.edi_format_id._get_move_applicability(self)
|
||||
if doc.edi_format_id._needs_web_services() \
|
||||
and doc.state in ('sent', 'to_cancel') \
|
||||
and move_applicability \
|
||||
and move_applicability.get('cancel'):
|
||||
return False
|
||||
return True
|
||||
|
||||
@api.depends('edi_document_ids.state')
|
||||
def _compute_show_reset_to_draft_button(self):
|
||||
# OVERRIDE
|
||||
super()._compute_show_reset_to_draft_button()
|
||||
for move in self:
|
||||
if not move._check_edi_documents_for_reset_to_draft():
|
||||
move.show_reset_to_draft_button = False
|
||||
|
||||
@api.depends('edi_document_ids.state')
|
||||
def _compute_edi_show_cancel_button(self):
|
||||
for move in self:
|
||||
if move.state != 'posted':
|
||||
move.edi_show_cancel_button = False
|
||||
continue
|
||||
|
||||
move.edi_show_cancel_button = False
|
||||
for doc in move.edi_document_ids:
|
||||
move_applicability = doc.edi_format_id._get_move_applicability(move)
|
||||
if doc.edi_format_id._needs_web_services() \
|
||||
and doc.state == 'sent' \
|
||||
and move_applicability \
|
||||
and move_applicability.get('cancel'):
|
||||
move.edi_show_cancel_button = True
|
||||
break
|
||||
|
||||
@api.depends('edi_document_ids.state')
|
||||
def _compute_edi_show_abandon_cancel_button(self):
|
||||
for move in self:
|
||||
move.edi_show_abandon_cancel_button = False
|
||||
for doc in move.edi_document_ids:
|
||||
move_applicability = doc.edi_format_id._get_move_applicability(move)
|
||||
if doc.edi_format_id._needs_web_services() \
|
||||
and doc.state == 'to_cancel' \
|
||||
and move_applicability \
|
||||
and move_applicability.get('cancel'):
|
||||
move.edi_show_abandon_cancel_button = True
|
||||
break
|
||||
|
||||
####################################################
|
||||
# Export Electronic Document
|
||||
####################################################
|
||||
|
||||
def _prepare_edi_tax_details(self, filter_to_apply=None, filter_invl_to_apply=None, grouping_key_generator=None):
|
||||
''' Compute amounts related to taxes for the current invoice.
|
||||
|
||||
:param filter_to_apply: Optional filter to exclude some tax values from the final results.
|
||||
The filter is defined as a method getting a dictionary as parameter
|
||||
representing the tax values for a single repartition line.
|
||||
This dictionary contains:
|
||||
|
||||
'base_line_id': An account.move.line record.
|
||||
'tax_id': An account.tax record.
|
||||
'tax_repartition_line_id': An account.tax.repartition.line record.
|
||||
'base_amount': The tax base amount expressed in company currency.
|
||||
'tax_amount': The tax amount expressed in company currency.
|
||||
'base_amount_currency': The tax base amount expressed in foreign currency.
|
||||
'tax_amount_currency': The tax amount expressed in foreign currency.
|
||||
|
||||
If the filter is returning False, it means the current tax values will be
|
||||
ignored when computing the final results.
|
||||
|
||||
:param filter_invl_to_apply: Optional filter to exclude some invoice lines.
|
||||
|
||||
:param grouping_key_generator: Optional method used to group tax values together. By default, the tax values
|
||||
are grouped by tax. This parameter is a method getting a dictionary as parameter
|
||||
(same signature as 'filter_to_apply').
|
||||
|
||||
This method must returns a dictionary where values will be used to create the
|
||||
grouping_key to aggregate tax values together. The returned dictionary is added
|
||||
to each tax details in order to retrieve the full grouping_key later.
|
||||
|
||||
:param compute_mode: Optional parameter to specify the method used to allocate the tax line amounts
|
||||
among the invoice lines:
|
||||
'tax_details' (the default) uses the AccountMove._get_query_tax_details method.
|
||||
'compute_all' uses the AccountTax._compute_all method.
|
||||
|
||||
The 'tax_details' method takes the tax line balance and allocates it among the
|
||||
invoice lines to which that tax applies, proportionately to the invoice lines'
|
||||
base amounts. This always ensures that the sum of the tax amounts equals the
|
||||
tax line's balance, which, depending on the constraints of a particular
|
||||
localization, can be more appropriate when 'Round Globally' is set.
|
||||
|
||||
The 'compute_all' method returns, for each invoice line, the exact tax amounts
|
||||
corresponding to the taxes applied to the invoice line. Depending on the
|
||||
constraints of the particular localization, this can be more appropriate when
|
||||
'Round per Line' is set.
|
||||
|
||||
:return: The full tax details for the current invoice and for each invoice line
|
||||
separately. The returned dictionary is the following:
|
||||
|
||||
'base_amount': The total tax base amount in company currency for the whole invoice.
|
||||
'tax_amount': The total tax amount in company currency for the whole invoice.
|
||||
'base_amount_currency': The total tax base amount in foreign currency for the whole invoice.
|
||||
'tax_amount_currency': The total tax amount in foreign currency for the whole invoice.
|
||||
'tax_details': A mapping of each grouping key (see 'grouping_key_generator') to a dictionary
|
||||
containing:
|
||||
|
||||
'base_amount': The tax base amount in company currency for the current group.
|
||||
'tax_amount': The tax amount in company currency for the current group.
|
||||
'base_amount_currency': The tax base amount in foreign currency for the current group.
|
||||
'tax_amount_currency': The tax amount in foreign currency for the current group.
|
||||
'group_tax_details': The list of all tax values aggregated into this group.
|
||||
|
||||
'tax_details_per_record': A mapping of each invoice line to a dictionary containing:
|
||||
|
||||
'base_amount': The total tax base amount in company currency for the whole invoice line.
|
||||
'tax_amount': The total tax amount in company currency for the whole invoice line.
|
||||
'base_amount_currency': The total tax base amount in foreign currency for the whole invoice line.
|
||||
'tax_amount_currency': The total tax amount in foreign currency for the whole invoice line.
|
||||
'tax_details': A mapping of each grouping key (see 'grouping_key_generator') to a dictionary
|
||||
containing:
|
||||
|
||||
'base_amount': The tax base amount in company currency for the current group.
|
||||
'tax_amount': The tax amount in company currency for the current group.
|
||||
'base_amount_currency': The tax base amount in foreign currency for the current group.
|
||||
'tax_amount_currency': The tax amount in foreign currency for the current group.
|
||||
'group_tax_details': The list of all tax values aggregated into this group.
|
||||
|
||||
'''
|
||||
return self._prepare_invoice_aggregated_taxes(
|
||||
filter_invl_to_apply=filter_invl_to_apply,
|
||||
filter_tax_values_to_apply=filter_to_apply,
|
||||
grouping_key_generator=grouping_key_generator,
|
||||
)
|
||||
|
||||
def _prepare_edi_vals_to_export(self):
|
||||
''' The purpose of this helper is to prepare values in order to export an invoice through the EDI system.
|
||||
This includes the computation of the tax details for each invoice line that could be very difficult to
|
||||
handle regarding the computation of the base amount.
|
||||
|
||||
:return: A python dict containing default pre-processed values.
|
||||
'''
|
||||
self.ensure_one()
|
||||
|
||||
res = {
|
||||
'record': self,
|
||||
'balance_multiplicator': -1 if self.is_inbound() else 1,
|
||||
'invoice_line_vals_list': [],
|
||||
}
|
||||
|
||||
# Invoice lines details.
|
||||
for index, line in enumerate(self.invoice_line_ids.filtered(lambda line: line.display_type == 'product'), start=1):
|
||||
line_vals = line._prepare_edi_vals_to_export()
|
||||
line_vals['index'] = index
|
||||
res['invoice_line_vals_list'].append(line_vals)
|
||||
|
||||
# Totals.
|
||||
res.update({
|
||||
'total_price_subtotal_before_discount': sum(x['price_subtotal_before_discount'] for x in res['invoice_line_vals_list']),
|
||||
'total_price_discount': sum(x['price_discount'] for x in res['invoice_line_vals_list']),
|
||||
})
|
||||
|
||||
return res
|
||||
|
||||
def _update_payments_edi_documents(self):
|
||||
''' Update the edi documents linked to the current journal entries. These journal entries must be linked to an
|
||||
account.payment of an account.bank.statement.line. This additional method is needed because the payment flow is
|
||||
not the same as the invoice one. Indeed, the edi documents must be created when the payment is fully reconciled
|
||||
with invoices.
|
||||
'''
|
||||
payments = self.filtered(lambda move: move.payment_id or move.statement_line_id)
|
||||
edi_document_vals_list = []
|
||||
to_remove = self.env['account.edi.document']
|
||||
for payment in payments:
|
||||
edi_formats = payment._get_reconciled_invoices().journal_id.edi_format_ids | payment.edi_document_ids.edi_format_id
|
||||
for edi_format in edi_formats:
|
||||
# Only recreate document when cancelled before.
|
||||
existing_edi_document = payment.edi_document_ids.filtered(lambda x: x.edi_format_id == edi_format)
|
||||
if existing_edi_document.state == 'sent':
|
||||
continue
|
||||
move_applicability = edi_format._get_move_applicability(payment)
|
||||
|
||||
if move_applicability:
|
||||
if existing_edi_document:
|
||||
existing_edi_document.write({
|
||||
'state': 'to_send',
|
||||
'error': False,
|
||||
'blocking_level': False,
|
||||
})
|
||||
else:
|
||||
edi_document_vals_list.append({
|
||||
'edi_format_id': edi_format.id,
|
||||
'move_id': payment.id,
|
||||
'state': 'to_send',
|
||||
})
|
||||
elif existing_edi_document:
|
||||
to_remove |= existing_edi_document
|
||||
|
||||
to_remove.unlink()
|
||||
self.env['account.edi.document'].create(edi_document_vals_list)
|
||||
payments.edi_document_ids._process_documents_no_web_services()
|
||||
|
||||
def _is_ready_to_be_sent(self):
|
||||
# OVERRIDE
|
||||
# Prevent a mail to be sent to the customer if the EDI document is not sent.
|
||||
res = super()._is_ready_to_be_sent()
|
||||
|
||||
if not res:
|
||||
return False
|
||||
|
||||
edi_documents_to_send = self.edi_document_ids.filtered(lambda x: x.state == 'to_send')
|
||||
return not bool(edi_documents_to_send)
|
||||
|
||||
def _post(self, soft=True):
|
||||
# OVERRIDE
|
||||
# Set the electronic document to be posted and post immediately for synchronous formats.
|
||||
posted = super()._post(soft=soft)
|
||||
|
||||
edi_document_vals_list = []
|
||||
for move in posted:
|
||||
for edi_format in move.journal_id.edi_format_ids:
|
||||
move_applicability = edi_format._get_move_applicability(move)
|
||||
|
||||
if move_applicability:
|
||||
errors = edi_format._check_move_configuration(move)
|
||||
if errors:
|
||||
raise UserError(_("Invalid invoice configuration:\n\n%s") % '\n'.join(errors))
|
||||
|
||||
existing_edi_document = move.edi_document_ids.filtered(lambda x: x.edi_format_id == edi_format)
|
||||
if existing_edi_document:
|
||||
existing_edi_document.sudo().write({
|
||||
'state': 'to_send',
|
||||
'attachment_id': False,
|
||||
})
|
||||
else:
|
||||
edi_document_vals_list.append({
|
||||
'edi_format_id': edi_format.id,
|
||||
'move_id': move.id,
|
||||
'state': 'to_send',
|
||||
})
|
||||
|
||||
self.env['account.edi.document'].create(edi_document_vals_list)
|
||||
posted.edi_document_ids._process_documents_no_web_services()
|
||||
self.env.ref('account_edi.ir_cron_edi_network')._trigger()
|
||||
return posted
|
||||
|
||||
def button_cancel(self):
|
||||
# OVERRIDE
|
||||
# Set the electronic document to be canceled and cancel immediately for synchronous formats.
|
||||
res = super().button_cancel()
|
||||
|
||||
self.edi_document_ids.filtered(lambda doc: doc.state != 'sent').write({'state': 'cancelled', 'error': False, 'blocking_level': False})
|
||||
self.edi_document_ids.filtered(lambda doc: doc.state == 'sent').write({'state': 'to_cancel', 'error': False, 'blocking_level': False})
|
||||
self.edi_document_ids._process_documents_no_web_services()
|
||||
self.env.ref('account_edi.ir_cron_edi_network')._trigger()
|
||||
|
||||
return res
|
||||
|
||||
def _edi_allow_button_draft(self):
|
||||
self.ensure_one()
|
||||
return not self.edi_show_cancel_button
|
||||
|
||||
def button_draft(self):
|
||||
# OVERRIDE
|
||||
for move in self:
|
||||
if not move._edi_allow_button_draft():
|
||||
raise UserError(_(
|
||||
"You can't edit the following journal entry %s because an electronic document has already been "
|
||||
"sent. Please use the 'Request EDI Cancellation' button instead."
|
||||
) % move.display_name)
|
||||
|
||||
res = super().button_draft()
|
||||
|
||||
self.edi_document_ids.write({'error': False, 'blocking_level': False})
|
||||
self.edi_document_ids.filtered(lambda doc: doc.state == 'to_send').unlink()
|
||||
|
||||
return res
|
||||
|
||||
def button_cancel_posted_moves(self):
|
||||
'''Mark the edi.document related to this move to be canceled.
|
||||
'''
|
||||
to_cancel_documents = self.env['account.edi.document']
|
||||
for move in self:
|
||||
move._check_fiscalyear_lock_date()
|
||||
is_move_marked = False
|
||||
for doc in move.edi_document_ids:
|
||||
move_applicability = doc.edi_format_id._get_move_applicability(move)
|
||||
if doc.edi_format_id._needs_web_services() \
|
||||
and doc.state == 'sent' \
|
||||
and move_applicability \
|
||||
and move_applicability.get('cancel'):
|
||||
to_cancel_documents |= doc
|
||||
is_move_marked = True
|
||||
if is_move_marked:
|
||||
move.message_post(body=_("A cancellation of the EDI has been requested."))
|
||||
|
||||
to_cancel_documents.write({'state': 'to_cancel', 'error': False, 'blocking_level': False})
|
||||
|
||||
def button_abandon_cancel_posted_posted_moves(self):
|
||||
'''Cancel the request for cancellation of the EDI.
|
||||
'''
|
||||
documents = self.env['account.edi.document']
|
||||
for move in self:
|
||||
is_move_marked = False
|
||||
for doc in move.edi_document_ids:
|
||||
move_applicability = doc.edi_format_id._get_move_applicability(move)
|
||||
if doc.state == 'to_cancel' and move_applicability and move_applicability.get('cancel'):
|
||||
documents |= doc
|
||||
is_move_marked = True
|
||||
if is_move_marked:
|
||||
move.message_post(body=_("A request for cancellation of the EDI has been called off."))
|
||||
|
||||
documents.write({'state': 'sent', 'error': False, 'blocking_level': False})
|
||||
|
||||
def _get_edi_document(self, edi_format):
|
||||
return self.edi_document_ids.filtered(lambda d: d.edi_format_id == edi_format)
|
||||
|
||||
def _get_edi_attachment(self, edi_format):
|
||||
return self._get_edi_document(edi_format).sudo().attachment_id
|
||||
|
||||
####################################################
|
||||
# Import Electronic Document
|
||||
####################################################
|
||||
|
||||
def _get_create_document_from_attachment_decoders(self):
|
||||
# OVERRIDE
|
||||
res = super()._get_create_document_from_attachment_decoders()
|
||||
res.append((10, self.env['account.edi.format'].search([])._create_document_from_attachment))
|
||||
return res
|
||||
|
||||
def _get_update_invoice_from_attachment_decoders(self, invoice):
|
||||
# OVERRIDE
|
||||
res = super()._get_update_invoice_from_attachment_decoders(invoice)
|
||||
res.append((10, self.env['account.edi.format'].search([])._update_invoice_from_attachment))
|
||||
return res
|
||||
|
||||
# this override is to make sure that the main attachment is not the edi xml otherwise the attachment viewer will not work correctly
|
||||
def _message_set_main_attachment_id(self, attachment_ids):
|
||||
if self.message_main_attachment_id and len(attachment_ids) > 1 and self.message_main_attachment_id in self.edi_document_ids.attachment_id:
|
||||
self.message_main_attachment_id = self.env['ir.attachment']
|
||||
super()._message_set_main_attachment_id(attachment_ids)
|
||||
|
||||
####################################################
|
||||
# Business operations
|
||||
####################################################
|
||||
|
||||
def button_process_edi_web_services(self):
|
||||
self.ensure_one()
|
||||
self.action_process_edi_web_services(with_commit=False)
|
||||
|
||||
def action_process_edi_web_services(self, with_commit=True):
|
||||
docs = self.edi_document_ids.filtered(lambda d: d.state in ('to_send', 'to_cancel') and d.blocking_level != 'error')
|
||||
docs._process_documents_web_services(with_commit=with_commit)
|
||||
|
||||
def _retry_edi_documents_error_hook(self):
|
||||
''' Hook called when edi_documents are retried. For example, when it's needed to clean a field.
|
||||
TO OVERRIDE
|
||||
'''
|
||||
return
|
||||
|
||||
def action_retry_edi_documents_error(self):
|
||||
self._retry_edi_documents_error_hook()
|
||||
self.edi_document_ids.write({'error': False, 'blocking_level': False})
|
||||
self.action_process_edi_web_services()
|
||||
|
||||
|
||||
class AccountMoveLine(models.Model):
|
||||
_inherit = 'account.move.line'
|
||||
|
||||
####################################################
|
||||
# Export Electronic Document
|
||||
####################################################
|
||||
|
||||
def _prepare_edi_vals_to_export(self):
|
||||
''' The purpose of this helper is the same as '_prepare_edi_vals_to_export' but for a single invoice line.
|
||||
This includes the computation of the tax details for each invoice line or the management of the discount.
|
||||
Indeed, in some EDI, we need to provide extra values depending the discount such as:
|
||||
- the discount as an amount instead of a percentage.
|
||||
- the price_unit but after subtraction of the discount.
|
||||
|
||||
:return: A python dict containing default pre-processed values.
|
||||
'''
|
||||
self.ensure_one()
|
||||
|
||||
if self.discount == 100.0:
|
||||
gross_price_subtotal = self.currency_id.round(self.price_unit * self.quantity)
|
||||
else:
|
||||
gross_price_subtotal = self.currency_id.round(self.price_subtotal / (1 - self.discount / 100.0))
|
||||
|
||||
res = {
|
||||
'line': self,
|
||||
'price_unit_after_discount': self.currency_id.round(self.price_unit * (1 - (self.discount / 100.0))),
|
||||
'price_subtotal_before_discount': gross_price_subtotal,
|
||||
'price_subtotal_unit': self.currency_id.round(self.price_subtotal / self.quantity) if self.quantity else 0.0,
|
||||
'price_total_unit': self.currency_id.round(self.price_total / self.quantity) if self.quantity else 0.0,
|
||||
'price_discount': gross_price_subtotal - self.price_subtotal,
|
||||
'price_discount_unit': (gross_price_subtotal - self.price_subtotal) / self.quantity if self.quantity else 0.0,
|
||||
'gross_price_total_unit': self.currency_id.round(gross_price_subtotal / self.quantity) if self.quantity else 0.0,
|
||||
'unece_uom_code': self.product_id.product_tmpl_id.uom_id._get_unece_code(),
|
||||
}
|
||||
return res
|
||||
|
||||
def reconcile(self):
|
||||
# OVERRIDE
|
||||
# In some countries, the payments must be sent to the government under some condition. One of them could be
|
||||
# there is at least one reconciled invoice to the payment. Then, we need to update the state of the edi
|
||||
# documents during the reconciliation.
|
||||
all_lines = self + self.matched_debit_ids.debit_move_id + self.matched_credit_ids.credit_move_id
|
||||
res = super().reconcile()
|
||||
all_lines.move_id._update_payments_edi_documents()
|
||||
return res
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo import models, fields, api, _
|
||||
|
||||
|
||||
class AccountPayment(models.Model):
|
||||
_inherit = 'account.payment'
|
||||
|
||||
def action_process_edi_web_services(self):
|
||||
return self.move_id.action_process_edi_web_services()
|
||||
|
||||
def action_retry_edi_documents_error(self):
|
||||
self.ensure_one()
|
||||
return self.move_id.action_retry_edi_documents_error()
|
||||
|
|
@ -0,0 +1,47 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
import io
|
||||
|
||||
from odoo import models
|
||||
from odoo.tools.pdf import OdooPdfFileReader, OdooPdfFileWriter
|
||||
|
||||
|
||||
class IrActionsReport(models.Model):
|
||||
_inherit = 'ir.actions.report'
|
||||
|
||||
def _render_qweb_pdf_prepare_streams(self, report_ref, data, res_ids=None):
|
||||
# EXTENDS base
|
||||
collected_streams = super()._render_qweb_pdf_prepare_streams(report_ref, data, res_ids=res_ids)
|
||||
|
||||
if collected_streams \
|
||||
and res_ids \
|
||||
and len(res_ids) == 1 \
|
||||
and self._is_invoice_report(report_ref):
|
||||
invoice = self.env['account.move'].browse(res_ids)
|
||||
if invoice.is_sale_document() and invoice.state != 'draft':
|
||||
to_embed = invoice.edi_document_ids
|
||||
# Add the attachments to the pdf file
|
||||
if to_embed:
|
||||
pdf_stream = collected_streams[invoice.id]['stream']
|
||||
|
||||
# Read pdf content.
|
||||
pdf_content = pdf_stream.getvalue()
|
||||
reader_buffer = io.BytesIO(pdf_content)
|
||||
reader = OdooPdfFileReader(reader_buffer, strict=False)
|
||||
|
||||
# Post-process and embed the additional files.
|
||||
writer = OdooPdfFileWriter()
|
||||
writer.cloneReaderDocumentRoot(reader)
|
||||
for edi_document in to_embed:
|
||||
# The attachements on the edi documents are only system readable
|
||||
# because they don't have res_id and res_model, here we are sure that
|
||||
# the user has access to the invoice and edi document
|
||||
edi_document.edi_format_id._prepare_invoice_report(writer, edi_document)
|
||||
|
||||
# Replace the current content.
|
||||
pdf_stream.close()
|
||||
new_pdf_stream = io.BytesIO()
|
||||
writer.write(new_pdf_stream)
|
||||
collected_streams[invoice.id]['stream'] = new_pdf_stream
|
||||
|
||||
return collected_streams
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from odoo import api, models, fields, _
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class IrAttachment(models.Model):
|
||||
_inherit = 'ir.attachment'
|
||||
|
||||
@api.ondelete(at_uninstall=False)
|
||||
def _unlink_except_government_document(self):
|
||||
linked_edi_documents = self.env['account.edi.document'].search([('attachment_id', 'in', self.ids)])
|
||||
linked_edi_formats_ws = linked_edi_documents.edi_format_id.filtered(lambda edi_format: edi_format._needs_web_services())
|
||||
if linked_edi_formats_ws:
|
||||
raise UserError(_("You can't unlink an attachment being an EDI document sent to the government."))
|
||||
|
|
@ -0,0 +1,58 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class MailTemplate(models.Model):
|
||||
_inherit = "mail.template"
|
||||
|
||||
def _get_edi_attachments(self, document):
|
||||
"""
|
||||
Will either return the information about the attachment of the edi document for adding the attachment in the
|
||||
mail, or the attachment id to be linked to the 'send & print' wizard.
|
||||
Can be overridden where e.g. a zip-file needs to be sent with the individual files instead of the entire zip
|
||||
IMPORTANT:
|
||||
* If the attachment's id is returned, no new attachment will be created, the existing one on the move is linked
|
||||
to the wizard (see _onchange_template_id in mail.compose.message).
|
||||
* If the attachment's content is returned, a new one is created and linked to the wizard. Thus, when sending
|
||||
the mail (clicking on 'send & print' in the wizard), a new attachment is added to the move (see
|
||||
_action_send_mail in mail.compose.message).
|
||||
:param document: an edi document
|
||||
:return: dict:
|
||||
{'attachments': tuple with the name and base64 content of the attachment}
|
||||
OR
|
||||
{'attachment_ids': list containing the id of the attachment}
|
||||
"""
|
||||
attachment_sudo = document.sudo().attachment_id
|
||||
if not attachment_sudo:
|
||||
return {}
|
||||
if not (attachment_sudo.res_model and attachment_sudo.res_id):
|
||||
# do not return system attachment not linked to a record
|
||||
return {}
|
||||
if len(self._context.get('active_ids', [])) > 1:
|
||||
# In mass mail mode 'attachments_ids' is removed from template values
|
||||
# as they should not be rendered
|
||||
return {'attachments': [(attachment_sudo.name, attachment_sudo.datas)]}
|
||||
return {'attachment_ids': [attachment_sudo.id]}
|
||||
|
||||
def generate_email(self, res_ids, fields):
|
||||
res = super().generate_email(res_ids, fields)
|
||||
|
||||
multi_mode = True
|
||||
if isinstance(res_ids, int):
|
||||
res_ids = [res_ids]
|
||||
multi_mode = False
|
||||
|
||||
if self.model not in ['account.move', 'account.payment']:
|
||||
return res
|
||||
|
||||
records = self.env[self.model].browse(res_ids)
|
||||
for record in records:
|
||||
record_data = (res[record.id] if multi_mode else res)
|
||||
for doc in record.edi_document_ids:
|
||||
record_data.setdefault('attachments', [])
|
||||
attachments = self._get_edi_attachments(doc)
|
||||
record_data['attachment_ids'] += attachments.get('attachment_ids', [])
|
||||
record_data['attachments'] += attachments.get('attachments', [])
|
||||
|
||||
return res
|
||||
38
odoo-bringout-oca-ocb-account_edi/account_edi/models/uom.py
Normal file
38
odoo-bringout-oca-ocb-account_edi/account_edi/models/uom.py
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
from odoo import models
|
||||
|
||||
|
||||
class UoM(models.Model):
|
||||
_inherit = 'uom.uom'
|
||||
|
||||
def _get_unece_code(self):
|
||||
""" Returns the UNECE code used for international trading for corresponding to the UoM as per
|
||||
https://unece.org/fileadmin/DAM/cefact/recommendations/rec20/rec20_rev3_Annex2e.pdf"""
|
||||
mapping = {
|
||||
'uom.product_uom_unit': 'C62',
|
||||
'uom.product_uom_dozen': 'DZN',
|
||||
'uom.product_uom_kgm': 'KGM',
|
||||
'uom.product_uom_gram': 'GRM',
|
||||
'uom.product_uom_day': 'DAY',
|
||||
'uom.product_uom_hour': 'HUR',
|
||||
'uom.product_uom_ton': 'TNE',
|
||||
'uom.product_uom_meter': 'MTR',
|
||||
'uom.product_uom_km': 'KMT',
|
||||
'uom.product_uom_cm': 'CMT',
|
||||
'uom.product_uom_litre': 'LTR',
|
||||
'uom.product_uom_lb': 'LBR',
|
||||
'uom.product_uom_oz': 'ONZ',
|
||||
'uom.product_uom_inch': 'INH',
|
||||
'uom.product_uom_foot': 'FOT',
|
||||
'uom.product_uom_mile': 'SMI',
|
||||
'uom.product_uom_floz': 'OZA',
|
||||
'uom.product_uom_qt': 'QT',
|
||||
'uom.product_uom_gal': 'GLL',
|
||||
'uom.product_uom_cubic_meter': 'MTQ',
|
||||
'uom.product_uom_cubic_inch': 'INQ',
|
||||
'uom.product_uom_cubic_foot': 'FTQ',
|
||||
}
|
||||
xml_ids = self._get_external_ids().get(self.id, [])
|
||||
matches = list(set(xml_ids) & set(mapping.keys()))
|
||||
return matches and mapping[matches[0]] or 'C62'
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink
|
||||
access_account_edi_format_readonly,account.edi.format,model_account_edi_format,,1,0,0,0
|
||||
access_account_edi_format_group_invoice,account.edi.format,model_account_edi_format,account.group_account_invoice,1,1,1,1
|
||||
access_account_edi_document_readonly,account.edi.document,model_account_edi_document,,1,0,0,0
|
||||
access_account_edi_document_group_invoice,account.edi.document,model_account_edi_document,account.group_account_invoice,1,1,1,1
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from . import common
|
||||
from . import test_edi
|
||||
from . import test_import_vendor_bill
|
||||
175
odoo-bringout-oca-ocb-account_edi/account_edi/tests/common.py
Normal file
175
odoo-bringout-oca-ocb-account_edi/account_edi/tests/common.py
Normal file
|
|
@ -0,0 +1,175 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo.modules.module import get_module_resource
|
||||
from odoo.addons.account.tests.common import AccountTestInvoicingCommon
|
||||
|
||||
from contextlib import contextmanager
|
||||
from unittest.mock import patch
|
||||
|
||||
import base64
|
||||
|
||||
|
||||
def _generate_mocked_needs_web_services(needs_web_services):
|
||||
return lambda edi_format: needs_web_services
|
||||
|
||||
|
||||
def _mocked_get_move_applicability(edi_format, move):
|
||||
if move.is_invoice():
|
||||
return {
|
||||
'post': edi_format._post_invoice_edi,
|
||||
'cancel': edi_format._cancel_invoice_edi,
|
||||
}
|
||||
elif move.payment_id or move.statement_line_id:
|
||||
return {
|
||||
'post': edi_format._post_payment_edi,
|
||||
'cancel': edi_format._cancel_invoice_edi,
|
||||
}
|
||||
|
||||
|
||||
def _mocked_check_move_configuration_success(edi_format, move):
|
||||
return []
|
||||
|
||||
|
||||
def _mocked_check_move_configuration_fail(edi_format, move):
|
||||
return ['Fake error (mocked)']
|
||||
|
||||
|
||||
def _mocked_cancel_success(edi_format, invoices):
|
||||
return {invoice: {'success': True} for invoice in invoices}
|
||||
|
||||
|
||||
class AccountEdiTestCommon(AccountTestInvoicingCommon):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls, chart_template_ref=None, edi_format_ref=None):
|
||||
super().setUpClass(chart_template_ref=chart_template_ref)
|
||||
|
||||
# ==== EDI ====
|
||||
if edi_format_ref:
|
||||
cls.edi_format = cls.env.ref(edi_format_ref)
|
||||
else:
|
||||
with cls.mock_edi(cls, _needs_web_services_method=_generate_mocked_needs_web_services(True)):
|
||||
cls.edi_format = cls.env['account.edi.format'].sudo().create({
|
||||
'name': 'Test EDI format',
|
||||
'code': 'test_edi',
|
||||
})
|
||||
cls.journal = cls.company_data['default_journal_sale']
|
||||
cls.journal.edi_format_ids = [(6, 0, cls.edi_format.ids)]
|
||||
|
||||
####################################################
|
||||
# EDI helpers
|
||||
####################################################
|
||||
|
||||
def _create_fake_edi_attachment(self):
|
||||
return self.env['ir.attachment'].create({
|
||||
'name': '_create_fake_edi_attachment.xml',
|
||||
'datas': base64.encodebytes(b"<?xml version='1.0' encoding='UTF-8'?><Invoice/>"),
|
||||
'mimetype': 'application/xml'
|
||||
})
|
||||
|
||||
@contextmanager
|
||||
def with_custom_method(self, method_name, method_content):
|
||||
path = f'odoo.addons.account_edi.models.account_edi_format.AccountEdiFormat.{method_name}'
|
||||
with patch(path, new=method_content, create=not hasattr(self.env['account.edi.format'], method_name)):
|
||||
yield
|
||||
|
||||
@contextmanager
|
||||
def mock_edi(self,
|
||||
_get_move_applicability_method=_mocked_get_move_applicability,
|
||||
_needs_web_services_method=_generate_mocked_needs_web_services(False),
|
||||
_check_move_configuration_method=_mocked_check_move_configuration_success,
|
||||
):
|
||||
|
||||
try:
|
||||
with patch('odoo.addons.account_edi.models.account_edi_format.AccountEdiFormat._needs_web_services',
|
||||
new=_needs_web_services_method), \
|
||||
patch('odoo.addons.account_edi.models.account_edi_format.AccountEdiFormat._check_move_configuration',
|
||||
new=_check_move_configuration_method), \
|
||||
patch('odoo.addons.account_edi.models.account_edi_format.AccountEdiFormat._get_move_applicability',
|
||||
new=_get_move_applicability_method):
|
||||
|
||||
yield
|
||||
finally:
|
||||
pass
|
||||
|
||||
def edi_cron(self):
|
||||
self.env['account.edi.document'].sudo().search([('state', 'in', ('to_send', 'to_cancel'))])._process_documents_web_services(with_commit=False)
|
||||
|
||||
def _create_empty_vendor_bill(self):
|
||||
invoice = self.env['account.move'].create({
|
||||
'move_type': 'in_invoice',
|
||||
'journal_id': self.company_data['default_journal_purchase'].id,
|
||||
})
|
||||
return invoice
|
||||
|
||||
def update_invoice_from_file(self, module_name, subfolder, filename, invoice):
|
||||
file_path = get_module_resource(module_name, subfolder, filename)
|
||||
file = open(file_path, 'rb').read()
|
||||
|
||||
attachment = self.env['ir.attachment'].create({
|
||||
'name': filename,
|
||||
'datas': base64.encodebytes(file),
|
||||
'res_id': invoice.id,
|
||||
'res_model': 'account.move',
|
||||
})
|
||||
|
||||
invoice.message_post(attachment_ids=[attachment.id])
|
||||
|
||||
def create_invoice_from_file(self, module_name, subfolder, filename):
|
||||
file_path = get_module_resource(module_name, subfolder, filename)
|
||||
file = open(file_path, 'rb').read()
|
||||
|
||||
attachment = self.env['ir.attachment'].create({
|
||||
'name': filename,
|
||||
'datas': base64.encodebytes(file),
|
||||
'res_model': 'account.move',
|
||||
})
|
||||
journal_id = self.company_data['default_journal_sale']
|
||||
action_vals = journal_id.with_context(default_move_type='in_invoice').create_document_from_attachment(attachment.ids)
|
||||
return self.env['account.move'].browse(action_vals['res_id'])
|
||||
|
||||
def assert_generated_file_equal(self, invoice, expected_values, applied_xpath=None):
|
||||
invoice.action_post()
|
||||
invoice.edi_document_ids._process_documents_web_services(with_commit=False) # synchronous are called in post, but there's no CRON in tests for asynchronous
|
||||
attachment = invoice._get_edi_attachment(self.edi_format)
|
||||
if not attachment:
|
||||
raise ValueError('No attachment was generated after posting EDI')
|
||||
xml_content = base64.b64decode(attachment.with_context(bin_size=False).datas)
|
||||
current_etree = self.get_xml_tree_from_string(xml_content)
|
||||
expected_etree = self.get_xml_tree_from_string(expected_values)
|
||||
if applied_xpath:
|
||||
expected_etree = self.with_applied_xpath(expected_etree, applied_xpath)
|
||||
self.assertXmlTreeEqual(current_etree, expected_etree)
|
||||
|
||||
def create_edi_document(self, edi_format, state, move=None, move_type=None):
|
||||
""" Creates a document based on an existing invoice or creates one, too.
|
||||
|
||||
:param edi_format: The edi_format of the document.
|
||||
:param state: The state of the document.
|
||||
:param move: The move of the document or None to create a new one.
|
||||
:param move_type: If move is None, the type of the invoice to create, defaults to 'out_invoice'.
|
||||
"""
|
||||
move = move or self.init_invoice(move_type or 'out_invoice', products=self.product_a)
|
||||
return self.env['account.edi.document'].create({
|
||||
'edi_format_id': edi_format.id,
|
||||
'move_id': move.id,
|
||||
'state': state
|
||||
})
|
||||
|
||||
def _process_documents_web_services(self, moves, formats_to_return=None):
|
||||
""" Generates and returns EDI files for the specified moves.
|
||||
formats_to_return is an optional parameter used to pass a set of codes from
|
||||
the formats we want to return the files for (in case we want to test specific formats).
|
||||
Other formats will still generate documents, they simply won't be returned.
|
||||
"""
|
||||
moves.edi_document_ids._process_documents_web_services(with_commit=False)
|
||||
|
||||
documents_to_return = moves.edi_document_ids
|
||||
if formats_to_return != None:
|
||||
documents_to_return = documents_to_return.filtered(lambda x: x.edi_format_id.code in formats_to_return)
|
||||
|
||||
attachments = documents_to_return.sudo().attachment_id
|
||||
data_str_list = []
|
||||
for attachment in attachments.with_context(bin_size=False):
|
||||
data_str_list.append(base64.decodebytes(attachment.datas))
|
||||
return data_str_list
|
||||
170
odoo-bringout-oca-ocb-account_edi/account_edi/tests/test_edi.py
Normal file
170
odoo-bringout-oca-ocb-account_edi/account_edi/tests/test_edi.py
Normal file
|
|
@ -0,0 +1,170 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
|
||||
from odoo.addons.account_edi.tests.common import AccountEdiTestCommon
|
||||
from odoo.addons.base.tests.test_ir_cron import CronMixinCase
|
||||
from odoo.tests import tagged
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestAccountEdi(AccountEdiTestCommon, CronMixinCase):
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls, chart_template_ref=None, edi_format_ref=None):
|
||||
super().setUpClass(chart_template_ref=chart_template_ref, edi_format_ref=edi_format_ref)
|
||||
|
||||
cls.env['account.edi.document'].search([]).unlink()
|
||||
cls.env['account.edi.format'].search([]).unlink()
|
||||
|
||||
cls.test_edi_format = cls.env['account.edi.format'].sudo().create({
|
||||
'name': 'test_edi_format',
|
||||
'code': 'test_edi_format',
|
||||
})
|
||||
cls.company_data['default_journal_sale'].edi_format_ids |= cls.test_edi_format
|
||||
|
||||
def test_export_edi(self):
|
||||
invoice = self.init_invoice('out_invoice', products=self.product_a)
|
||||
|
||||
self.assertEqual(len(invoice.edi_document_ids), 0)
|
||||
with self.with_custom_method('_get_move_applicability', lambda edi_format, inv: {'post': edi_format._test_edi_post_invoice}), \
|
||||
self.with_custom_method('_test_edi_post_invoice', lambda edi_format, inv: {inv: {'success': True}}):
|
||||
invoice.action_post()
|
||||
self.assertEqual(len(invoice.edi_document_ids), 1)
|
||||
|
||||
def test_prepare_jobs_no_batching(self):
|
||||
invoice1 = self.init_invoice('out_invoice', products=self.product_a)
|
||||
invoice2 = self.init_invoice('out_invoice', products=self.product_a)
|
||||
|
||||
with self.with_custom_method('_get_move_applicability', lambda edi_format, inv: {'post': edi_format._test_edi_post_invoice}), \
|
||||
self.with_custom_method('_test_edi_post_invoice', lambda edi_format, inv: {inv: {'success': True}}), \
|
||||
self.with_custom_method('_needs_web_services', lambda edi_format: True):
|
||||
(invoice1 + invoice2).action_post()
|
||||
|
||||
jobs = (invoice1 + invoice2).edi_document_ids._prepare_jobs()
|
||||
self.assertEqual(len(jobs), 2)
|
||||
|
||||
def test_prepare_jobs_batching(self):
|
||||
invoice1 = self.init_invoice('out_invoice', products=self.product_a)
|
||||
invoice2 = self.init_invoice('out_invoice', products=self.product_a)
|
||||
|
||||
with self.with_custom_method('_get_move_applicability',
|
||||
lambda edi_format, inv: {
|
||||
'post': edi_format._test_edi_post_invoice,
|
||||
'post_batching': lambda inv: (inv.partner_id,),
|
||||
}), \
|
||||
self.with_custom_method('_test_edi_post_invoice', lambda edi_format, inv: {inv: {'success': True}}), \
|
||||
self.with_custom_method('_needs_web_services', lambda edi_format: True):
|
||||
(invoice1 + invoice2).action_post()
|
||||
|
||||
jobs = (invoice1 + invoice2).edi_document_ids._prepare_jobs()
|
||||
self.assertEqual(len(jobs), 1)
|
||||
|
||||
def test_warning_is_retried(self):
|
||||
invoice = self.init_invoice('out_invoice', products=self.product_a)
|
||||
|
||||
with self.with_custom_method('_get_move_applicability', lambda edi_format, inv: {'post': edi_format._test_edi_post_invoice}), \
|
||||
self.with_custom_method('_needs_web_services', lambda edi_format: True):
|
||||
|
||||
with self.with_custom_method('_test_edi_post_invoice',
|
||||
lambda edi_format, inv: {inv: {'error': "turlututu", 'blocking_level': 'warning'}}):
|
||||
invoice.action_post()
|
||||
self.assertRecordValues(invoice.edi_document_ids, [{'state': 'to_send'}])
|
||||
|
||||
with self.with_custom_method('_test_edi_post_invoice', lambda edi_format, inv: {inv: {'success': True}}):
|
||||
invoice.action_process_edi_web_services(with_commit=False)
|
||||
self.assertRecordValues(invoice.edi_document_ids, [{'state': 'sent'}])
|
||||
|
||||
def test_edi_flow(self):
|
||||
invoice = self.init_invoice('out_invoice', products=self.product_a)
|
||||
|
||||
with self.with_custom_method('_get_move_applicability', lambda edi_format, inv: {
|
||||
'post': edi_format._test_edi_post_invoice,
|
||||
'cancel': edi_format._test_edi_cancel_invoice,
|
||||
}), \
|
||||
self.with_custom_method('_needs_web_services', lambda edi_format: True), \
|
||||
self.with_custom_method('_test_edi_post_invoice', lambda edi_format, inv: {inv: {'success': True}}), \
|
||||
self.with_custom_method('_test_edi_cancel_invoice', lambda edi_format, inv: {inv: {'success': True}}):
|
||||
invoice.action_post()
|
||||
self.assertRecordValues(invoice.edi_document_ids, [{'state': 'to_send'}])
|
||||
|
||||
invoice.action_process_edi_web_services(with_commit=False)
|
||||
self.assertRecordValues(invoice.edi_document_ids, [{'state': 'sent'}])
|
||||
|
||||
invoice.button_cancel_posted_moves()
|
||||
self.assertRecordValues(invoice.edi_document_ids, [{'state': 'to_cancel'}])
|
||||
|
||||
invoice.button_abandon_cancel_posted_posted_moves()
|
||||
self.assertRecordValues(invoice.edi_document_ids, [{'state': 'sent'}])
|
||||
|
||||
invoice.button_cancel_posted_moves()
|
||||
self.assertRecordValues(invoice.edi_document_ids, [{'state': 'to_cancel'}])
|
||||
|
||||
invoice.action_process_edi_web_services(with_commit=False)
|
||||
self.assertRecordValues(invoice.edi_document_ids, [{'state': 'cancelled'}])
|
||||
|
||||
def test_edi_flow_two_steps(self):
|
||||
def step1(edi_format, invoice):
|
||||
return {invoice: {'error': "step1 done", 'blocking_level': 'info'}}
|
||||
|
||||
def step2(edi_format, invoice):
|
||||
return {invoice: {'success': True}}
|
||||
|
||||
def get_move_applicability(edi_format, invoice):
|
||||
if "step1" in (invoice.edi_document_ids.error or ''):
|
||||
return {'post': edi_format._test_edi_post_invoice_step2}
|
||||
else:
|
||||
return {'post': edi_format._test_edi_post_invoice_step1}
|
||||
|
||||
invoice = self.init_invoice('out_invoice', products=self.product_a)
|
||||
|
||||
with self.with_custom_method('_get_move_applicability', get_move_applicability), \
|
||||
self.with_custom_method('_needs_web_services', lambda edi_format: True), \
|
||||
self.with_custom_method('_test_edi_post_invoice_step1', step1), \
|
||||
self.with_custom_method('_test_edi_post_invoice_step2', step2):
|
||||
invoice.action_post()
|
||||
self.assertRecordValues(invoice.edi_document_ids, [{'state': 'to_send'}])
|
||||
|
||||
invoice.action_process_edi_web_services(with_commit=False)
|
||||
self.assertRecordValues(invoice.edi_document_ids, [{'state': 'to_send'}])
|
||||
|
||||
invoice.action_process_edi_web_services(with_commit=False)
|
||||
self.assertRecordValues(invoice.edi_document_ids, [{'state': 'sent'}])
|
||||
|
||||
def test_cron_triggers(self):
|
||||
invoice = self.init_invoice('out_invoice', products=self.product_a)
|
||||
with self.with_custom_method('_get_move_applicability', lambda edi_format, inv: {'post': edi_format._test_edi_post_invoice}), \
|
||||
self.with_custom_method('_needs_web_services', lambda edi_format: True), \
|
||||
self.with_custom_method('_test_edi_post_invoice', lambda edi_format, inv: {inv: {'success': True}}), \
|
||||
self.capture_triggers('account_edi.ir_cron_edi_network') as capt:
|
||||
invoice.action_post()
|
||||
capt.records.ensure_one()
|
||||
|
||||
def test_cron_self_trigger(self):
|
||||
# Process single job by CRON call (and thus, disable the auto-commit).
|
||||
edi_cron = self.env.ref('account_edi.ir_cron_edi_network')
|
||||
edi_cron.code = 'model._cron_process_documents_web_services(job_count=1)'
|
||||
|
||||
invoice1 = self.init_invoice('out_invoice', products=self.product_a)
|
||||
invoice2 = self.init_invoice('out_invoice', products=self.product_a)
|
||||
with self.with_custom_method('_get_move_applicability', lambda edi_format, inv: {'post': edi_format._test_edi_post_invoice}), \
|
||||
self.with_custom_method('_needs_web_services', lambda edi_format: True), \
|
||||
self.with_custom_method('_test_edi_post_invoice', lambda edi_format, inv: {inv: {'success': True}}), \
|
||||
self.capture_triggers('account_edi.ir_cron_edi_network') as capt:
|
||||
(invoice1 + invoice2).action_post()
|
||||
|
||||
self.env.ref('account_edi.ir_cron_edi_network').method_direct_trigger()
|
||||
self.assertEqual(
|
||||
len(capt.records), 2,
|
||||
"Not all records have been processed in this run, the cron should re-trigger itself to process some"
|
||||
" more later",
|
||||
)
|
||||
|
||||
def test_invoice_ready_to_be_sent(self):
|
||||
invoice = self.init_invoice('out_invoice', products=self.product_a)
|
||||
with self.with_custom_method('_get_move_applicability', lambda edi_format, inv: {'post': edi_format._test_edi_post_invoice}), \
|
||||
self.with_custom_method('_needs_web_services', lambda edi_format: True), \
|
||||
self.with_custom_method('_test_edi_post_invoice', lambda edi_format, inv: {inv: {'success': True}}):
|
||||
invoice.action_post()
|
||||
self.assertFalse(invoice._is_ready_to_be_sent())
|
||||
invoice.action_process_edi_web_services(with_commit=False)
|
||||
self.assertTrue(invoice._is_ready_to_be_sent())
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from odoo.addons.account.tests.common import AccountTestInvoicingCommon
|
||||
from odoo.tests import tagged
|
||||
|
||||
|
||||
@tagged('post_install', '-at_install')
|
||||
class TestImportVendorBill(AccountTestInvoicingCommon):
|
||||
|
||||
def test_retrieve_partner(self):
|
||||
|
||||
def retrieve_partner(vat, import_vat):
|
||||
self.partner_a.with_context(no_vat_validation=True).vat = vat
|
||||
return self.env['account.edi.format']._retrieve_partner(vat=import_vat)
|
||||
|
||||
self.assertEqual(self.partner_a, retrieve_partner('BE0477472701', 'BE0477472701'))
|
||||
self.assertEqual(self.partner_a, retrieve_partner('BE0477472701', '0477472701'))
|
||||
self.assertEqual(self.partner_a, retrieve_partner('BE0477472701', '477472701'))
|
||||
self.assertEqual(self.partner_a, retrieve_partner('0477472701', 'BE0477472701'))
|
||||
self.assertEqual(self.partner_a, retrieve_partner('477472701', 'BE0477472701'))
|
||||
self.assertEqual(self.env['res.partner'], retrieve_partner('DE0477472701', 'BE0477472701'))
|
||||
self.assertEqual(self.partner_a, retrieve_partner('CHE-107.787.577 IVA', 'CHE-107.787.577 IVA')) # note that base_vat forces the space
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
<record id="view_tree_account_edi_document" model="ir.ui.view">
|
||||
<field name="name">Account.edi.document.tree</field>
|
||||
<field name="model">account.edi.document</field>
|
||||
<field name="arch" type="xml">
|
||||
<tree create="false" delete="false" edit="false"
|
||||
decoration-info="blocking_level == 'info'"
|
||||
decoration-warning="blocking_level == 'warning'"
|
||||
decoration-danger="blocking_level == 'error'">
|
||||
<field name="edi_format_name" />
|
||||
<field name="error" />
|
||||
<field name="blocking_level" invisible="1" />
|
||||
</tree>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
<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="//group[@name='group_alias_edit']" position="after">
|
||||
<group string="Electronic Data Interchange" attrs="{'invisible': [('compatible_edi_ids', '=', [])]}">
|
||||
<field name="compatible_edi_ids" invisible="1" />
|
||||
<field name="edi_format_ids" widget="many2many_checkboxes"/>
|
||||
</group>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,159 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
|
||||
<record id="account_edi.action_open_edi_documents" model="ir.actions.act_window">
|
||||
<field name="name">Electronic invoicing</field>
|
||||
<field name="res_model">account.edi.document</field>
|
||||
<field name="view_mode">tree</field>
|
||||
<field name="domain">[('move_id', '=', active_id), ('error', '!=', False)]</field>
|
||||
</record>
|
||||
|
||||
<record id="view_out_invoice_tree_inherit" model="ir.ui.view">
|
||||
<field name="name">account.move.tree.inherit</field>
|
||||
<field name="model">account.move</field>
|
||||
<field name="inherit_id" ref="account.view_out_invoice_tree" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="state" position="before">
|
||||
<field name="edi_state" optional="hide"/>
|
||||
<field name="edi_blocking_level" optional="hide"/>
|
||||
<field name="edi_error_message" optional="hide"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_out_credit_note_tree_inherit" model="ir.ui.view">
|
||||
<field name="name">account.move.tree.inherit</field>
|
||||
<field name="model">account.move</field>
|
||||
<field name="inherit_id" ref="account.view_out_credit_note_tree" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="state" position="before">
|
||||
<field name="edi_state" optional="hide"/>
|
||||
<field name="edi_blocking_level" optional="hide"/>
|
||||
<field name="edi_error_message" optional="hide"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_in_invoice_refund_tree_inherit" model="ir.ui.view">
|
||||
<field name="name">account.move.tree.inherit</field>
|
||||
<field name="model">account.move</field>
|
||||
<field name="inherit_id" ref="account.view_in_invoice_refund_tree" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="state" position="before">
|
||||
<field name="edi_state" optional="hide"/>
|
||||
<field name="edi_blocking_level" optional="hide"/>
|
||||
<field name="edi_error_message" optional="hide"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_in_bill_tree_inherit" model="ir.ui.view">
|
||||
<field name="name">account.move.tree.inherit</field>
|
||||
<field name="model">account.move</field>
|
||||
<field name="inherit_id" ref="account.view_in_invoice_bill_tree" />
|
||||
<field name="arch" type="xml">
|
||||
<field name="state" position="before">
|
||||
<field name="edi_state" optional="hide"/>
|
||||
<field name="edi_blocking_level" optional="hide"/>
|
||||
<field name="edi_error_message" optional="hide"/>
|
||||
</field>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_account_invoice_filter" model="ir.ui.view">
|
||||
<field name="name">account.invoice.select.inherit</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 string="Electronic invoicing state" name="edi_state" groups="base.group_no_one"
|
||||
context="{'group_by': 'edi_state'}"/>
|
||||
<separator/>
|
||||
<filter string="Electronic invoicing processing needed" name="edi_to_process" groups="base.group_no_one"
|
||||
domain="[('edi_state', 'in', [('to_send'), ('to_cancel')])]"/>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
<record id="view_move_form_inherit" model="ir.ui.view">
|
||||
<field name="name">account.move.form.inherit</field>
|
||||
<field name="model">account.move</field>
|
||||
<field name="inherit_id" ref="account.view_move_form" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//button[@name='button_cancel']" position="after">
|
||||
<field name="edi_show_cancel_button" invisible="1"/>
|
||||
<field name="edi_show_abandon_cancel_button" invisible="1"/>
|
||||
<button name="button_cancel_posted_moves"
|
||||
string="Request EDI Cancellation"
|
||||
type="object"
|
||||
groups="account.group_account_invoice"
|
||||
attrs="{'invisible' : [('edi_show_cancel_button', '=', False)]}"/>
|
||||
<button name="button_abandon_cancel_posted_posted_moves"
|
||||
string="Call off EDI Cancellation"
|
||||
type="object"
|
||||
groups="account.group_account_invoice"
|
||||
attrs="{'invisible' : [('edi_show_abandon_cancel_button', '=', False)]}"/>
|
||||
</xpath>
|
||||
<xpath expr="//header" position="after">
|
||||
<field name="edi_blocking_level" invisible="1" />
|
||||
<field name="edi_error_count" invisible="1" />
|
||||
<div class="alert alert-info" role="alert" style="margin-bottom:0px;"
|
||||
attrs="{'invisible': ['|', ('edi_web_services_to_process', 'in', ['', False]), ('state', '=', 'draft')]}">
|
||||
<div>The invoice will be processed asynchronously by the following E-invoicing service :
|
||||
<field name="edi_web_services_to_process" class="oe_inline"/>
|
||||
</div>
|
||||
<button name="button_process_edi_web_services" type="object" class="oe_link" string="Process now" />
|
||||
</div>
|
||||
<div class="alert alert-danger" role="alert" style="margin-bottom:0px;"
|
||||
attrs="{'invisible': ['|', ('edi_error_count', '=', 0), ('edi_blocking_level', '!=', 'error')]}">
|
||||
<div class="o_row">
|
||||
<field name="edi_error_message" />
|
||||
<button name="%(account_edi.action_open_edi_documents)d" string="⇒ See errors" type="action" class="oe_link" attrs="{'invisible': [('edi_error_count', '=', 1)]}" />
|
||||
<button name="action_retry_edi_documents_error" type="object" class="oe_link oe_inline" string="Retry" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="alert alert-warning" role="alert" style="margin-bottom:0px;"
|
||||
attrs="{'invisible': ['|', ('edi_error_count', '=', 0), ('edi_blocking_level', '!=', 'warning')]}">
|
||||
<div class="o_row">
|
||||
<field name="edi_error_message" />
|
||||
<button name="%(account_edi.action_open_edi_documents)d" string="⇒ See errors" type="action" class="oe_link" attrs="{'invisible': [('edi_error_count', '=', 1)]}" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="alert alert-info" role="alert" style="margin-bottom:0px;"
|
||||
attrs="{'invisible': ['|', ('edi_error_count', '=', 0), ('edi_blocking_level', '!=', 'info')]}">
|
||||
<div class="o_row">
|
||||
<field name="edi_error_message" />
|
||||
<button name="%(account_edi.action_open_edi_documents)d" string="⇒ See errors" type="action" class="oe_link" attrs="{'invisible': [('edi_error_count', '=', 1)]}" />
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
<xpath expr="//div[@name='journal_div']" position="after">
|
||||
<field name="edi_state" attrs="{'invisible': ['|', ('edi_state', '=', False), ('state', '=', 'draft')]}"/>
|
||||
</xpath>
|
||||
<xpath expr="//page[@id='other_tab']" position="after">
|
||||
<page id="edi_documents"
|
||||
string="EDI Documents"
|
||||
groups="base.group_no_one"
|
||||
attrs="{'invisible': [('edi_document_ids', '=', [])]}">
|
||||
<field name="edi_document_ids">
|
||||
<tree create="false" delete="false" edit="false" decoration-danger="error" no_open="1">
|
||||
<field name="name"/>
|
||||
<field name="edi_format_name"/>
|
||||
<field name="state"/>
|
||||
<field name="error" invisible="1"/>
|
||||
<field name="blocking_level" invisible="1"/>
|
||||
<button name="action_export_xml"
|
||||
type="object"
|
||||
class="oe_link oe_inline"
|
||||
string="Download"
|
||||
groups="base.group_no_one"
|
||||
attrs="{'invisible': ['|', ('error', '=', False), ('blocking_level', '=', 'info')]}"/>
|
||||
</tree>
|
||||
</field>
|
||||
</page>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1,79 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data>
|
||||
|
||||
<record id="account_edi.action_open_payment_edi_documents" model="ir.actions.act_window">
|
||||
<field name="name">Electronic invoicing</field>
|
||||
<field name="res_model">account.edi.document</field>
|
||||
<field name="view_mode">tree</field>
|
||||
<field name="domain">[('move_id.payment_id', '=', active_id), ('error', '!=', False)]</field>
|
||||
</record>
|
||||
|
||||
<record id="view_payment_form_inherit" model="ir.ui.view">
|
||||
<field name="name">account.payment.form.inherit</field>
|
||||
<field name="model">account.payment</field>
|
||||
<field name="inherit_id" ref="account.view_account_payment_form" />
|
||||
<field name="arch" type="xml">
|
||||
<xpath expr="//header" position="after">
|
||||
<field name="edi_blocking_level" invisible="1" />
|
||||
<field name="edi_error_count" invisible="1" />
|
||||
<div class="alert alert-info" role="alert" style="margin-bottom:0px;"
|
||||
attrs="{'invisible': ['|', ('edi_web_services_to_process', 'in', ['', False]), ('state', '=', 'draft')]}">
|
||||
<div>The payment will be processed asynchronously by the following E-invoicing service :
|
||||
<field name="edi_web_services_to_process" class="oe_inline"/>
|
||||
</div>
|
||||
<button name="action_process_edi_web_services" type="object" class="oe_link" string="Process now"/>
|
||||
</div>
|
||||
<div class="alert alert-danger" role="alert" style="margin-bottom:0px;"
|
||||
attrs="{'invisible': ['|', ('edi_error_count', '=', 0), ('edi_blocking_level', '!=', 'error')]}">
|
||||
<div class="o_row">
|
||||
<field name="edi_error_message" />
|
||||
<button name="%(account_edi.action_open_edi_documents)d" string="⇒ See errors" type="action" class="oe_link" attrs="{'invisible': [('edi_error_count', '=', 1)]}" />
|
||||
<button name="action_retry_edi_documents_error" type="object" class="oe_link oe_inline" string="Retry" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="alert alert-warning" role="alert" style="margin-bottom:0px;"
|
||||
attrs="{'invisible': ['|', ('edi_error_count', '=', 0), ('edi_blocking_level', '!=', 'warning')]}">
|
||||
<div class="o_row">
|
||||
<field name="edi_error_message" />
|
||||
<button name="%(account_edi.action_open_edi_documents)d" string="⇒ See errors" type="action" class="oe_link" attrs="{'invisible': [('edi_error_count', '=', 1)]}" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="alert alert-info" role="alert" style="margin-bottom:0px;"
|
||||
attrs="{'invisible': ['|', ('edi_error_count', '=', 0), ('edi_blocking_level', '!=', 'info')]}">
|
||||
<div class="o_row">
|
||||
<field name="edi_error_message" />
|
||||
<button name="%(account_edi.action_open_edi_documents)d" string="⇒ See errors" type="action" class="oe_link" attrs="{'invisible': [('edi_error_count', '=', 1)]}" />
|
||||
</div>
|
||||
</div>
|
||||
</xpath>
|
||||
<xpath expr="//field[@name='journal_id']" position="after">
|
||||
<field name="edi_state" attrs="{'invisible': ['|', ('edi_state', '=', False), ('state', '=', 'draft')]}"/>
|
||||
</xpath>
|
||||
<xpath expr="//group[@name='group2']" position="after">
|
||||
<group groups="base.group_no_one">
|
||||
<field name="edi_document_ids"
|
||||
string="EDI Documents"
|
||||
groups="base.group_no_one"
|
||||
options="{'no_open': '1'}"
|
||||
attrs="{'invisible': [('edi_document_ids', '=', [])]}">
|
||||
<tree create="false" delete="false" edit="false" decoration-danger="error">
|
||||
<field name="name"/>
|
||||
<field name="edi_format_name"/>
|
||||
<field name="state"/>
|
||||
<field name="error" invisible="1"/>
|
||||
<field name="blocking_level" invisible="1"/>
|
||||
<button name="action_export_xml"
|
||||
type="object"
|
||||
class="oe_link oe_inline"
|
||||
string="Download"
|
||||
groups="base.group_no_one"
|
||||
attrs="{'invisible': ['|', ('error', '=', False), ('blocking_level', '=', 'info')]}"/>
|
||||
</tree>
|
||||
</field>
|
||||
</group>
|
||||
</xpath>
|
||||
</field>
|
||||
</record>
|
||||
</data>
|
||||
</odoo>
|
||||
|
|
@ -0,0 +1 @@
|
|||
from . import account_resequence
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,23 @@
|
|||
from odoo import _, models
|
||||
from odoo.exceptions import UserError
|
||||
|
||||
|
||||
class ReSequenceWizard(models.TransientModel):
|
||||
_inherit = 'account.resequence.wizard'
|
||||
|
||||
def _frozen_edi_documents(self):
|
||||
"""Get EDI documents that can't change.
|
||||
|
||||
Their moves are restricted and cannot be resequenced.
|
||||
"""
|
||||
return self.move_ids.edi_document_ids.filtered(
|
||||
lambda d: d.edi_format_id._needs_web_services() and d.state == "sent"
|
||||
)
|
||||
|
||||
def resequence(self):
|
||||
edi_sent_moves = self._frozen_edi_documents()
|
||||
if edi_sent_moves:
|
||||
raise UserError(_("The following documents have already been sent and cannot be resequenced: %s")
|
||||
% ", ".join(set(edi_sent_moves.move_id.mapped('name')))
|
||||
)
|
||||
return super().resequence()
|
||||
32
odoo-bringout-oca-ocb-account_edi/doc/ARCHITECTURE.md
Normal file
32
odoo-bringout-oca-ocb-account_edi/doc/ARCHITECTURE.md
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
# Architecture
|
||||
|
||||
```mermaid
|
||||
flowchart TD
|
||||
U[Users] -->|HTTP| V[Views and QWeb Templates]
|
||||
V --> C[Controllers]
|
||||
V --> W[Wizards – Transient Models]
|
||||
C --> M[Models and ORM]
|
||||
W --> M
|
||||
M --> R[Reports]
|
||||
DX[Data XML] --> M
|
||||
S[Security – ACLs and Groups] -. enforces .-> M
|
||||
|
||||
subgraph Account_edi Module - account_edi
|
||||
direction LR
|
||||
M:::layer
|
||||
W:::layer
|
||||
C:::layer
|
||||
V:::layer
|
||||
R:::layer
|
||||
S:::layer
|
||||
DX:::layer
|
||||
end
|
||||
|
||||
classDef layer fill:#eef8ff,stroke:#6ea8fe,stroke-width:1px
|
||||
```
|
||||
|
||||
Notes
|
||||
- Views include tree/form/kanban templates and report templates.
|
||||
- Controllers provide website/portal routes when present.
|
||||
- Wizards are UI flows implemented with `models.TransientModel`.
|
||||
- Data XML loads data/demo records; Security defines groups and access.
|
||||
3
odoo-bringout-oca-ocb-account_edi/doc/CONFIGURATION.md
Normal file
3
odoo-bringout-oca-ocb-account_edi/doc/CONFIGURATION.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Configuration
|
||||
|
||||
Refer to Odoo settings for account_edi. Configure related models, access rights, and options as needed.
|
||||
3
odoo-bringout-oca-ocb-account_edi/doc/CONTROLLERS.md
Normal file
3
odoo-bringout-oca-ocb-account_edi/doc/CONTROLLERS.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Controllers
|
||||
|
||||
This module does not define custom HTTP controllers.
|
||||
5
odoo-bringout-oca-ocb-account_edi/doc/DEPENDENCIES.md
Normal file
5
odoo-bringout-oca-ocb-account_edi/doc/DEPENDENCIES.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# Dependencies
|
||||
|
||||
This addon depends on:
|
||||
|
||||
- [account](../../odoo-bringout-oca-ocb-account)
|
||||
4
odoo-bringout-oca-ocb-account_edi/doc/FAQ.md
Normal file
4
odoo-bringout-oca-ocb-account_edi/doc/FAQ.md
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# FAQ
|
||||
|
||||
- Q: Which Odoo version? A: 16.0 (OCA/OCB packaged).
|
||||
- Q: How to enable? A: Start server with --addon account_edi or install in UI.
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue