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

[16.0][MIG] queue_job_subscribe: Migration to 16.0 #548

Merged
merged 3 commits into from
Sep 25, 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
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
exclude: |
(?x)
# NOT INSTALLABLE ADDONS
^queue_job_subscribe/|
^test_base_import_async/|
# END NOT INSTALLABLE ADDONS
# Files and folders generated by bots, to avoid loops
Expand Down
4 changes: 2 additions & 2 deletions queue_job_subscribe/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Queue Job Subscribe",
"version": "15.0.1.0.0",
"version": "16.0.1.0.0",
"author": "Acsone SA/NV, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/queue",
"summary": "Control which users are subscribed to queue job notifications",
"license": "AGPL-3",
"category": "Generic Modules",
"depends": ["queue_job"],
"data": ["views/res_users_view.xml"],
"installable": False,
"installable": True,
}
11 changes: 7 additions & 4 deletions queue_job_subscribe/i18n/it.po
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ msgstr ""
"Project-Id-Version: Odoo Server 9.0c\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-05 00:42+0000\n"
"PO-Revision-Date: 2017-04-05 00:42+0000\n"
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2017\n"
"PO-Revision-Date: 2022-12-20 15:46+0000\n"
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
"Language-Team: Italian (https://www.transifex.com/oca/teams/23907/it/)\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.14.1\n"

#. module: queue_job_subscribe
#: model_terms:ir.ui.view,arch_db:queue_job_subscribe.view_user_connector_form
Expand All @@ -29,11 +30,13 @@ msgid ""
"If this flag is checked and the user is Connector Manager, he will receive "
"job notifications."
msgstr ""
"Se questa selezione è attiva e l'utente è un responsabile connettore, "
"riceverà le notifiche di lavoro."

#. module: queue_job_subscribe
#: model:ir.model.fields,field_description:queue_job_subscribe.field_res_users__subscribe_job
msgid "Job Notifications"
msgstr ""
msgstr "Notifiche lavoro"

#. module: queue_job_subscribe
#: model:ir.model,name:queue_job_subscribe.model_queue_job
Expand Down
1 change: 1 addition & 0 deletions setup/queue_job_subscribe/odoo/addons/queue_job_subscribe
6 changes: 6 additions & 0 deletions setup/queue_job_subscribe/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
Loading