Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Syncing from upstream OCA/server-tools (16.0) #1314

Merged
merged 9 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Available addons
----------------
addon | version | maintainers | summary
--- | --- | --- | ---
[attachment_queue](attachment_queue/) | 16.0.1.0.2 | [![florian-dacosta](https://github.com/florian-dacosta.png?size=30px)](https://github.com/florian-dacosta) [![sebastienbeau](https://github.com/sebastienbeau.png?size=30px)](https://github.com/sebastienbeau) | Base module adding the concept of queue for processing files
[attachment_queue](attachment_queue/) | 16.0.1.0.3 | [![florian-dacosta](https://github.com/florian-dacosta.png?size=30px)](https://github.com/florian-dacosta) [![sebastienbeau](https://github.com/sebastienbeau.png?size=30px)](https://github.com/sebastienbeau) | Base module adding the concept of queue for processing files
[attachment_unindex_content](attachment_unindex_content/) | 16.0.1.0.0 | [![moylop260](https://github.com/moylop260.png?size=30px)](https://github.com/moylop260) [![ebirbe](https://github.com/ebirbe.png?size=30px)](https://github.com/ebirbe) [![luisg123v](https://github.com/luisg123v.png?size=30px)](https://github.com/luisg123v) | Disable indexing of attachments
[auditlog](auditlog/) | 16.0.2.0.2 | | Audit Log
[base_cron_exclusion](base_cron_exclusion/) | 16.0.1.0.0 | [![LoisRForgeFlow](https://github.com/LoisRForgeFlow.png?size=30px)](https://github.com/LoisRForgeFlow) [![ChrisOForgeFlow](https://github.com/ChrisOForgeFlow.png?size=30px)](https://github.com/ChrisOForgeFlow) | Allow you to select scheduled actions that should not run simultaneously.
Expand Down
2 changes: 1 addition & 1 deletion attachment_queue/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Attachment Queue
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:99cada9560a63c621c8b99f829cdb6090730710b42fa6b1d2623707c50df603a
!! source digest: sha256:654f5aa5da3037c1fd1b8a6e4d92eea925574db015fb972d78b1692e87e55a28
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
Expand Down
2 changes: 1 addition & 1 deletion attachment_queue/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

{
"name": "Attachment Queue",
"version": "16.0.1.0.2",
"version": "16.0.1.0.3",
"author": "Akretion,Odoo Community Association (OCA)",
"summary": "Base module adding the concept of queue for processing files",
"website": "https://github.com/OCA/server-tools",
Expand Down
2 changes: 2 additions & 0 deletions attachment_queue/models/attachment_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class AttachmentQueue(models.Model):
)
file_type = fields.Selection(
selection=[],
index="btree",
help="The file type determines an import method to be used "
"to parse and transform data before their import in ERP or an export",
)
Expand All @@ -39,6 +40,7 @@ class AttachmentQueue(models.Model):
readonly=False,
required=True,
default="pending",
index="btree",
)
state_message = fields.Text()
failure_emails = fields.Char(
Expand Down
2 changes: 1 addition & 1 deletion attachment_queue/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ <h1 class="title">Attachment Queue</h1>
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:99cada9560a63c621c8b99f829cdb6090730710b42fa6b1d2623707c50df603a
!! source digest: sha256:654f5aa5da3037c1fd1b8a6e4d92eea925574db015fb972d78b1692e87e55a28
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/server-tools/tree/16.0/attachment_queue"><img alt="OCA/server-tools" src="https://img.shields.io/badge/github-OCA%2Fserver--tools-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/server-tools-16-0/server-tools-16-0-attachment_queue"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/server-tools&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>This module adds async processing capabilities to attachments by implementing a new model attachment.queue that wraps attachments and stores additional information so that it can be processed in an asynchronous way.</p>
Expand Down
18 changes: 6 additions & 12 deletions attachment_unindex_content/i18n/es_AR.po
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,11 @@ msgstr ""
msgid "Attachment"
msgstr "Adjunto"

#. module: attachment_unindex_content
#: model:ir.model.fields,field_description:attachment_unindex_content.field_ir_attachment__display_name
msgid "Display Name"
msgstr "Mostrar Nombre"
#~ msgid "Display Name"
#~ msgstr "Mostrar Nombre"

#. module: attachment_unindex_content
#: model:ir.model.fields,field_description:attachment_unindex_content.field_ir_attachment__id
msgid "ID"
msgstr "ID"
#~ msgid "ID"
#~ msgstr "ID"

#. module: attachment_unindex_content
#: model:ir.model.fields,field_description:attachment_unindex_content.field_ir_attachment____last_update
msgid "Last Modified on"
msgstr "Última modificación en"
#~ msgid "Last Modified on"
#~ msgstr "Última modificación en"
4 changes: 2 additions & 2 deletions auditlog/i18n/es_AR.po
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ msgstr ""
"POT-Creation-Date: 2016-11-26 01:45+0000\n"
"PO-Revision-Date: 2023-01-01 21:45+0000\n"
"Last-Translator: Ignacio Buioli <[email protected]>\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/teams/"
"23907/es_AR/)\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
"teams/23907/es_AR/)\n"
"Language: es_AR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down
4 changes: 2 additions & 2 deletions module_analysis/i18n/it.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 13.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2023-08-10 11:12+0000\n"
"PO-Revision-Date: 2023-10-09 09:09+0000\n"
"Last-Translator: mymage <[email protected]>\n"
"Language-Team: none\n"
"Language: it\n"
Expand Down Expand Up @@ -114,7 +114,7 @@ msgstr "Modulo"
#. module: module_analysis
#: model:ir.model.fields,field_description:module_analysis.field_ir_module_type_rule__module_domain
msgid "Module Domain"
msgstr "Dominio Modulo"
msgstr "Dominio modulo"

#. module: module_analysis
#: model:ir.model.fields,field_description:module_analysis.field_ir_module_module__module_type_id
Expand Down
6 changes: 4 additions & 2 deletions module_auto_update/i18n/it.po
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-07-21 02:43+0000\n"
"PO-Revision-Date: 2023-09-21 16:40+0000\n"
"PO-Revision-Date: 2023-10-09 09:09+0000\n"
"Last-Translator: mymage <[email protected]>\n"
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
"Language: it\n"
Expand All @@ -30,7 +30,7 @@ msgstr "Aggiorna Moduli Automaticamente"
#: code:addons/module_auto_update/models/module.py:0
#, python-format
msgid "Checksum upgrade complete."
msgstr ""
msgstr "Aggiornamento checksum completo."

#. module: module_auto_update
#: model:ir.model,name:module_auto_update.model_ir_module_module
Expand All @@ -45,6 +45,8 @@ msgid ""
"No checksum change detected in installed modules and all modules installed, "
"nothing to do."
msgstr ""
"Nessuna modifica del checksum rilevata nei moduli installati e tutti i "
"moduli installati, niente da fare."

#. module: module_auto_update
#: model:ir.model.fields,field_description:module_auto_update.field_ir_module_module__smart_search
Expand Down
8 changes: 4 additions & 4 deletions rpc_helper/i18n/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ msgstr ""
#: model:ir.model.fields,help:rpc_helper.field_ir_model__rpc_config_edit
msgid ""
"Configure RPC config via JSON. Value must be a list of methods to disable "
"wrapped by a dict with key `disable`. Eg: {'disable': ['search', "
"'do_this']}To disable all methods, use `{'disable: ['all']}`"
"wrapped by a dict with key `disable`. Eg: {'disable': ['search', 'do_this']}"
"To disable all methods, use `{'disable: ['all']}`"
msgstr ""
"Configurar RPC vía JSON. El valor debe ser una lista de métodos a "
"deshabilitar envueltos por un dict con la clave `disable`. Ej: {'disable': ["
"'search', 'do_this']}Para deshabilitar todos los métodos, usa `{'disable: "
"deshabilitar envueltos por un dict con la clave `disable`. Ej: {'disable': "
"['search', 'do_this']}Para deshabilitar todos los métodos, usa `{'disable: "
"['all']}`"

#. module: rpc_helper
Expand Down
8 changes: 4 additions & 4 deletions scheduler_error_mailer/i18n/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ msgstr ""
"<div style=\"font-family: 'Lucida Grande', Ubuntu, Arial, Verdana, sans-"
"serif; font-size: 12px; color: rgb(34, 34, 34); background-color: #FFF; \">\n"
"\n"
"<p>Odoo intentó ejecutar el programador <em><t t-out=\"object.name or ''\""
"/></em> en la base de datos <em><t t-out=\"ctx.get('dbname')\"/></em> pero "
"<p>Odoo intentó ejecutar el programador <em><t t-out=\"object.name or ''\"/"
"></em> en la base de datos <em><t t-out=\"ctx.get('dbname')\"/></em> pero "
"falló. Aquí está el mensaje de error:</p>\n"
"\n"
"<strong>\n"
Expand All @@ -78,8 +78,8 @@ msgstr ""
"<p>Puedes consultar los registros del servidor Odoo para obtener más "
"información sobre este fallo.</p>\n"
"\n"
"<p>Propiedades del planificador <em><t t-out=\"object.name or ''\""
"/>:</em>:</p>\n"
"<p>Propiedades del planificador <em><t t-out=\"object.name or ''\"/>:</em>:</"
"p>\n"
"<ul>\n"
"<li>Modelo: <t t-out=\"object.model_id.name or ''\"/></li>\n"
"<li>Código Python: <code><t t-out=\"object.code or ''\"/></code></li>\n"
Expand Down
Loading