odoo-addon-base-import-async 16.0.1.1.0.3__py3-none-any.whl → 16.0.1.1.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@ Asynchronous Import
7
7
  !! This file is generated by oca-gen-addon-readme !!
8
8
  !! changes will be overwritten. !!
9
9
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10
- !! source digest: sha256:e6374e585a643e2892d54c4838b3f74b861287f684624698d9028349bb33d8cd
10
+ !! source digest: sha256:4e6926a0780cf7844d24231d81d0fb2762f3a37c77d5e96696b9f5b0e3e5c5e2
11
11
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
12
12
 
13
13
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -5,7 +5,7 @@
5
5
  {
6
6
  "name": "Asynchronous Import",
7
7
  "summary": "Import CSV files in the background",
8
- "version": "16.0.1.1.0",
8
+ "version": "16.0.1.1.1",
9
9
  "author": "Akretion, ACSONE SA/NV, Odoo Community Association (OCA)",
10
10
  "license": "AGPL-3",
11
11
  "website": "https://github.com/OCA/queue",
@@ -0,0 +1,87 @@
1
+ # Translation of Odoo Server.
2
+ # This file contains the translation of the following modules:
3
+ # * base_import_async
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Odoo Server 16.0\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "PO-Revision-Date: 2024-01-11 09:34+0000\n"
10
+ "Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
11
+ "Language-Team: none\n"
12
+ "Language: it\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: \n"
16
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
17
+ "X-Generator: Weblate 4.17\n"
18
+
19
+ #. module: base_import_async
20
+ #. odoo-python
21
+ #: code:addons/base_import_async/models/queue_job.py:0
22
+ #, python-format
23
+ msgid "Attachment"
24
+ msgstr "Allegato"
25
+
26
+ #. module: base_import_async
27
+ #: model:ir.model,name:base_import_async.model_base_import_import
28
+ msgid "Base Import"
29
+ msgstr "Importazione base"
30
+
31
+ #. module: base_import_async
32
+ #. odoo-python
33
+ #: code:addons/base_import_async/models/base_import_import.py:0
34
+ #, python-format
35
+ msgid ""
36
+ "Import %(model)s from file %(file_name)s - #%(chunk)s - lines %(from)s to "
37
+ "%(to)s"
38
+ msgstr ""
39
+ "Importa %(model)s dal file %(file_name)s - #%(chunk)s - linee %(from)s a "
40
+ "%(to)s"
41
+
42
+ #. module: base_import_async
43
+ #. odoo-python
44
+ #: code:addons/base_import_async/models/base_import_import.py:0
45
+ #, python-format
46
+ msgid "Import %(model)s from file %(from_file)s"
47
+ msgstr "Importa %(model)s dal file %(from_file)s"
48
+
49
+ #. module: base_import_async
50
+ #. odoo-javascript
51
+ #: code:addons/base_import_async/static/src/xml/import.xml:0
52
+ #, python-format
53
+ msgid "Import in the background"
54
+ msgstr "Importa in background"
55
+
56
+ #. module: base_import_async
57
+ #: model:ir.model,name:base_import_async.model_queue_job
58
+ msgid "Queue Job"
59
+ msgstr "Lavoro in coda"
60
+
61
+ #. module: base_import_async
62
+ #. odoo-javascript
63
+ #: code:addons/base_import_async/static/src/xml/import.xml:0
64
+ #, python-format
65
+ msgid ""
66
+ "When checked, the import will be executed as a background job, after "
67
+ "splitting your file in small chunks that will be processed independently. "
68
+ "Use this to import very large files."
69
+ msgstr ""
70
+ "Quando selezionata, l'importazione verrà eseguita com un lavoro in "
71
+ "backgroud, dopo la divisine del file in piccole parti che verranno "
72
+ "processate indipendentemente. Utilizzare questa opzione per importare file "
73
+ "di grandi dimensioni."
74
+
75
+ #. module: base_import_async
76
+ #. odoo-javascript
77
+ #: code:addons/base_import_async/static/src/js/import.js:0
78
+ #, python-format
79
+ msgid "You can check the status of this job in menu 'Queue / Jobs'."
80
+ msgstr "Si può controllare lo stato di questo lavoro nel menu 'Coda / Lavori'."
81
+
82
+ #. module: base_import_async
83
+ #. odoo-javascript
84
+ #: code:addons/base_import_async/static/src/js/import.js:0
85
+ #, python-format
86
+ msgid "Your request is being processed"
87
+ msgstr "La richiesta è in lavorazione"
@@ -15,7 +15,7 @@ from odoo.models import fix_import_export_id_paths
15
15
  from odoo.addons.queue_job.exception import FailedJobError
16
16
 
17
17
  # options defined in base_import/import.js
18
- OPT_HAS_HEADER = "headers"
18
+ OPT_HAS_HEADER = "has_headers"
19
19
  OPT_SEPARATOR = "separator"
20
20
  OPT_QUOTING = "quoting"
21
21
  OPT_ENCODING = "encoding"
@@ -1,4 +1,3 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
1
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
2
  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
3
  <head>
@@ -367,7 +366,7 @@ ul.auto-toc {
367
366
  !! This file is generated by oca-gen-addon-readme !!
368
367
  !! changes will be overwritten. !!
369
368
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370
- !! source digest: sha256:e6374e585a643e2892d54c4838b3f74b861287f684624698d9028349bb33d8cd
369
+ !! source digest: sha256:4e6926a0780cf7844d24231d81d0fb2762f3a37c77d5e96696b9f5b0e3e5c5e2
371
370
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372
371
  <p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Production/Stable" src="https://img.shields.io/badge/maturity-Production%2FStable-green.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/queue/tree/16.0/base_import_async"><img alt="OCA/queue" src="https://img.shields.io/badge/github-OCA%2Fqueue-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/queue-16-0/queue-16-0-base_import_async"><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/queue&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373
372
  <p>This module extends the standard CSV import functionality
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-base-import-async
3
- Version: 16.0.1.1.0.3
3
+ Version: 16.0.1.1.1
4
4
  Summary: Import CSV files in the background
5
5
  Home-page: https://github.com/OCA/queue
6
6
  Author: Akretion, ACSONE SA/NV, Odoo Community Association (OCA)
@@ -25,7 +25,7 @@ Asynchronous Import
25
25
  !! This file is generated by oca-gen-addon-readme !!
26
26
  !! changes will be overwritten. !!
27
27
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
28
- !! source digest: sha256:e6374e585a643e2892d54c4838b3f74b861287f684624698d9028349bb33d8cd
28
+ !! source digest: sha256:4e6926a0780cf7844d24231d81d0fb2762f3a37c77d5e96696b9f5b0e3e5c5e2
29
29
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
30
30
 
31
31
  .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
@@ -1,12 +1,13 @@
1
- odoo/addons/base_import_async/README.rst,sha256=2GgSlKAQzysbql_QD5gk0SZofFtq_iIFk5SnoRXF5SE,5062
1
+ odoo/addons/base_import_async/README.rst,sha256=8NHJiv1JUbO_DdgTrViryNcDNUhvwTYkMN6GbHacWMA,5062
2
2
  odoo/addons/base_import_async/__init__.py,sha256=eShEGRadAlxopoLqIQ4-N42FM7MWPSuBe0h_l1cXTPM,87
3
- odoo/addons/base_import_async/__manifest__.py,sha256=e_0NqyZsG2ZIqjRuITsim2ueSp5WNO5T2LssylEJ_Do,843
3
+ odoo/addons/base_import_async/__manifest__.py,sha256=T7gYc-nBB-egoAwmcPMh0M7QUUX6DkhiACU2sIjgDbI,843
4
4
  odoo/addons/base_import_async/data/queue_job_function_data.xml,sha256=MhA59cNIFz0tybIEYYfas5vIgAL7YVje26-n0EKnwVE,763
5
5
  odoo/addons/base_import_async/i18n/base_import_async.pot,sha256=nwOsvZ7eHAHGNxc1s0iuMmjFlr5Xi-4FqmmLns1pJLI,2050
6
6
  odoo/addons/base_import_async/i18n/es.po,sha256=4pquZPN4cwoNJULxAPDDNgOO4bagakEJw7QRyU-QHHM,2774
7
+ odoo/addons/base_import_async/i18n/it.po,sha256=4WklbHLMT1sb8MfShTBaQQTP4Ruz1HpVi1PfTrbXuUc,2736
7
8
  odoo/addons/base_import_async/i18n/tr.po,sha256=kKC4SZ-I034SLjmSIpCkLyUFpaiflEw_7_cCEDCBe9Y,2854
8
9
  odoo/addons/base_import_async/models/__init__.py,sha256=O_Ai1JLN-RrWSSWZmCSu_fZ4kq-2nJiBEWOjerAN6Qo,123
9
- odoo/addons/base_import_async/models/base_import_import.py,sha256=1nzBA32NPza6vyeuDy1tW9GPLsWOad1RG35gqC4z4-g,7225
10
+ odoo/addons/base_import_async/models/base_import_import.py,sha256=biSkOrT5wsbxsr4cQ1MyyGJtWXiLaAYs6kTYsDucY0o,7229
10
11
  odoo/addons/base_import_async/models/queue_job.py,sha256=EqqBGroTGnMoIpMBeO6a3C4hE9XIR6_ShHSylOk_kLI,539
11
12
  odoo/addons/base_import_async/readme/CONTRIBUTORS.rst,sha256=u4L_ZT4Sx_MJVwndUIjR2JvTK9StCd30CdlRJTg0qC4,524
12
13
  odoo/addons/base_import_async/readme/CREDITS.rst,sha256=XtPazYj6oqxvg62KjKqErJ8pssTcghFavMtYTDMOozc,87
@@ -15,10 +16,10 @@ odoo/addons/base_import_async/readme/HISTORY.rst,sha256=T6aa_cvCBaKeznUBeElAxpkZ
15
16
  odoo/addons/base_import_async/readme/ROADMAP.rst,sha256=H7QLRKOuskOesnFfIjHKIEyrZr10TSA4hbJlDnZwpS4,243
16
17
  odoo/addons/base_import_async/readme/USAGE.rst,sha256=5Ftjm8p8wuAbkWftGQKFHgJNhJlo0AAC95D6FR79o14,1171
17
18
  odoo/addons/base_import_async/static/description/icon.png,sha256=6xBPJauaFOF0KDHfHgQopSc28kKvxMaeoQFQWZtfZDo,9455
18
- odoo/addons/base_import_async/static/description/index.html,sha256=tbm_54rV6kd6NBZtYCFaNvc5s596uXVaPE4ZXOUK2vQ,15708
19
+ odoo/addons/base_import_async/static/description/index.html,sha256=daOJHoJANB-H51JXbA1OLbcJTmSkBx9daGXLa96OSA0,15669
19
20
  odoo/addons/base_import_async/static/src/js/import.js,sha256=LWkEcNmEPPcjS61Bs8vbwkhFvYPGG5hPeIErb6uXZmM,997
20
21
  odoo/addons/base_import_async/static/src/xml/import.xml,sha256=67ASHYXFlGUnbJ1SxHLOlcLFIwuhisGVJw5buYP7JQc,706
21
- odoo_addon_base_import_async-16.0.1.1.0.3.dist-info/METADATA,sha256=_MPMQR9ITsW99_SZnTKYfa-JxdAHnmdbtJHPxmwuwl4,5727
22
- odoo_addon_base_import_async-16.0.1.1.0.3.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
23
- odoo_addon_base_import_async-16.0.1.1.0.3.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
24
- odoo_addon_base_import_async-16.0.1.1.0.3.dist-info/RECORD,,
22
+ odoo_addon_base_import_async-16.0.1.1.1.dist-info/METADATA,sha256=Er6b1WHCvoyVmTZJmLvGk9OM-n2E-GjKTX3qijEbQZI,5725
23
+ odoo_addon_base_import_async-16.0.1.1.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
24
+ odoo_addon_base_import_async-16.0.1.1.1.dist-info/top_level.txt,sha256=qBj40grFkGOfDZ2WDSw3y1RnDlgG0u8rP8pvGNdbz4w,5
25
+ odoo_addon_base_import_async-16.0.1.1.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5