[tryton-commits] changeset in weblate:default Translated using Weblate (German)

2022-04-22 Thread Korbinian Preisler
changeset 3dccaf7f111f in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=3dccaf7f111f
description:
Translated using Weblate (German)

Currently translated at 98.6% (927 of 940 strings)

Translation: Tryton/ir
Translate-URL: https://translate.tryton.org/projects/tryton/ir/de/
diffstat:

 trytond/trytond/ir/locale/de.po |  9 +++--
 1 files changed, 3 insertions(+), 6 deletions(-)

diffs (41 lines):

diff -r c7d7aebaab0c -r 3dccaf7f111f trytond/trytond/ir/locale/de.po
--- a/trytond/trytond/ir/locale/de.po   Fri Apr 22 17:24:13 2022 +
+++ b/trytond/trytond/ir/locale/de.po   Fri Apr 22 17:47:03 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-10-28 06:09+\n"
+"PO-Revision-Date: 2022-04-22 22:54+\n"
 "Last-Translator: Korbinian Preisler \n"
 "Language: de\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:ir.action,icon:"
 msgid "Icon"
@@ -1482,20 +1482,17 @@
 msgid "User"
 msgstr "Benutzer"
 
-#, fuzzy
 msgctxt "field:ir.ui.view_tree_optional,field:"
 msgid "Field"
 msgstr "Feld"
 
-#, fuzzy
 msgctxt "field:ir.ui.view_tree_optional,user:"
 msgid "User"
 msgstr "Benutzer"
 
-#, fuzzy
 msgctxt "field:ir.ui.view_tree_optional,value:"
 msgid "Value"
-msgstr "Werte"
+msgstr "Wert"
 
 #, fuzzy
 msgctxt "field:ir.ui.view_tree_optional,view_id:"



[tryton-commits] changeset in weblate:default Translated using Weblate (German)

2022-04-22 Thread Korbinian Preisler
changeset c7d7aebaab0c in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=c7d7aebaab0c
description:
Translated using Weblate (German)

Currently translated at 98.1% (788 of 803 strings)

Translation: Tryton/stock
Translate-URL: https://translate.tryton.org/projects/tryton/stock/de/
diffstat:

 modules/stock/locale/de.po |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r c5a7e1f42ce9 -r c7d7aebaab0c modules/stock/locale/de.po
--- a/modules/stock/locale/de.poThu Apr 21 15:51:17 2022 +
+++ b/modules/stock/locale/de.poFri Apr 22 17:24:13 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-10-28 06:11+\n"
+"PO-Revision-Date: 2022-04-22 22:49+\n"
 "Last-Translator: Korbinian Preisler \n"
 "Language: de\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:party.address,delivery:"
 msgid "Delivery"
@@ -3289,7 +3289,7 @@
 
 msgctxt "view:stock.configuration:"
 msgid "Shipments"
-msgstr "Lieferung"
+msgstr "Lieferungen"
 
 #, fuzzy
 msgctxt "view:stock.configuration:"



[tryton-commits] changeset in trytond:6.0 Initialize the pool before running queu...

2022-04-22 Thread Cédric Krier
changeset de73634a21f1 in trytond:6.0
details: https://hg.tryton.org/trytond?cmd=changeset=de73634a21f1
description:
Initialize the pool before running queue or cron tasks

issue11400
review384981002
(grafted from b52363a1d96234cf8cf0f955a12752c5a22f6508)
diffstat:

 trytond/cron.py   |   5 +
 trytond/worker.py |  28 ++--
 2 files changed, 23 insertions(+), 10 deletions(-)

diffs (94 lines):

diff -r 2fa2c08bfde2 -r de73634a21f1 trytond/cron.py
--- a/trytond/cron.py   Mon Apr 18 19:40:01 2022 +0200
+++ b/trytond/cron.py   Tue Apr 19 13:21:42 2022 +0200
@@ -5,6 +5,7 @@
 import logging
 
 from trytond.pool import Pool
+from trytond.transaction import Transaction
 
 __all__ = ['run']
 logger = logging.getLogger(__name__)
@@ -27,7 +28,11 @@
 logger.info(
 'skip "%s" as previous cron still running', db_name)
 continue
+database_list = Pool.database_list()
 pool = Pool(db_name)
+if db_name not in database_list:
+with Transaction().start(db_name, 0, readonly=True):
+pool.init()
 Cron = pool.get('ir.cron')
 thread = threading.Thread(
 target=Cron.run,
diff -r 2fa2c08bfde2 -r de73634a21f1 trytond/worker.py
--- a/trytond/worker.py Mon Apr 18 19:40:01 2022 +0200
+++ b/trytond/worker.py Tue Apr 19 13:21:42 2022 +0200
@@ -21,19 +21,22 @@
 
 
 class Queue(object):
-def __init__(self, pool, mpool):
-self.database = backend.Database(pool.database_name).connect()
+def __init__(self, database_name, mpool):
+self.database = backend.Database(database_name).connect()
 self.connection = self.database.get_connection(autocommit=True)
-self.pool = pool
 self.mpool = mpool
 
 def pull(self, name=None):
-Queue = self.pool.get('ir.queue')
+database_list = Pool.database_list()
+pool = Pool(self.database.name)
+if self.database.name not in database_list:
+with Transaction().start(self.database.name, 0, readonly=True):
+pool.init()
+Queue = pool.get('ir.queue')
 return Queue.pull(self.database, self.connection, name=name)
 
 def run(self, task_id):
-return self.mpool.apply_async(
-run_task, (self.pool.database_name, task_id))
+return self.mpool.apply_async(run_task, (self.database.name, task_id))
 
 
 class TaskList(list):
@@ -54,8 +57,9 @@
 processes = 1
 logger.info("start %d workers", processes)
 mpool = MPool(
-processes, initializer, (options,), options.maxtasksperchild)
-queues = [Queue(pool, mpool) for pool in initializer(options, False)]
+processes, initializer, (options.database_names,),
+options.maxtasksperchild)
+queues = [Queue(name, mpool) for name in options.database_names]
 
 tasks = TaskList()
 timeout = options.timeout
@@ -81,12 +85,12 @@
 mpool.close()
 
 
-def initializer(options, worker=True):
+def initializer(database_names, worker=True):
 if worker:
 signal.signal(signal.SIGINT, signal.SIG_IGN)
 pools = []
 database_list = Pool.database_list()
-for database_name in options.database_names:
+for database_name in database_names:
 pool = Pool(database_name)
 if database_name not in database_list:
 with Transaction().start(database_name, 0, readonly=True):
@@ -97,7 +101,11 @@
 
 def run_task(pool, task_id):
 if not isinstance(pool, Pool):
+database_list = Pool.database_list()
 pool = Pool(pool)
+if pool.database_name not in database_list:
+with Transaction().start(pool.database_name, 0, readonly=True):
+pool.init()
 Queue = pool.get('ir.queue')
 name = '' % (task_id, pool.database_name)
 logger.info('%s started', name)



[tryton-commits] changeset in trytond:6.2 Initialize the pool before running queu...

2022-04-22 Thread Cédric Krier
changeset a78b19372dbb in trytond:6.2
details: https://hg.tryton.org/trytond?cmd=changeset=a78b19372dbb
description:
Initialize the pool before running queue or cron tasks

issue11400
review384981002
(grafted from b52363a1d96234cf8cf0f955a12752c5a22f6508)
diffstat:

 trytond/cron.py   |   5 +
 trytond/worker.py |  28 ++--
 2 files changed, 23 insertions(+), 10 deletions(-)

diffs (94 lines):

diff -r db9e12d44720 -r a78b19372dbb trytond/cron.py
--- a/trytond/cron.py   Mon Apr 18 19:40:01 2022 +0200
+++ b/trytond/cron.py   Tue Apr 19 13:21:42 2022 +0200
@@ -5,6 +5,7 @@
 import logging
 
 from trytond.pool import Pool
+from trytond.transaction import Transaction
 
 __all__ = ['run']
 logger = logging.getLogger(__name__)
@@ -27,7 +28,11 @@
 logger.info(
 'skip "%s" as previous cron still running', db_name)
 continue
+database_list = Pool.database_list()
 pool = Pool(db_name)
+if db_name not in database_list:
+with Transaction().start(db_name, 0, readonly=True):
+pool.init()
 Cron = pool.get('ir.cron')
 thread = threading.Thread(
 target=Cron.run,
diff -r db9e12d44720 -r a78b19372dbb trytond/worker.py
--- a/trytond/worker.py Mon Apr 18 19:40:01 2022 +0200
+++ b/trytond/worker.py Tue Apr 19 13:21:42 2022 +0200
@@ -22,19 +22,22 @@
 
 
 class Queue(object):
-def __init__(self, pool, mpool):
-self.database = backend.Database(pool.database_name).connect()
+def __init__(self, database_name, mpool):
+self.database = backend.Database(database_name).connect()
 self.connection = self.database.get_connection(autocommit=True)
-self.pool = pool
 self.mpool = mpool
 
 def pull(self, name=None):
-Queue = self.pool.get('ir.queue')
+database_list = Pool.database_list()
+pool = Pool(self.database.name)
+if self.database.name not in database_list:
+with Transaction().start(self.database.name, 0, readonly=True):
+pool.init()
+Queue = pool.get('ir.queue')
 return Queue.pull(self.database, self.connection, name=name)
 
 def run(self, task_id):
-return self.mpool.apply_async(
-run_task, (self.pool.database_name, task_id))
+return self.mpool.apply_async(run_task, (self.database.name, task_id))
 
 
 class TaskList(list):
@@ -55,8 +58,9 @@
 processes = 1
 logger.info("start %d workers", processes)
 mpool = MPool(
-processes, initializer, (options,), options.maxtasksperchild)
-queues = [Queue(pool, mpool) for pool in initializer(options, False)]
+processes, initializer, (options.database_names,),
+options.maxtasksperchild)
+queues = [Queue(name, mpool) for name in options.database_names]
 
 tasks = TaskList()
 timeout = options.timeout
@@ -82,12 +86,12 @@
 mpool.close()
 
 
-def initializer(options, worker=True):
+def initializer(database_names, worker=True):
 if worker:
 signal.signal(signal.SIGINT, signal.SIG_IGN)
 pools = []
 database_list = Pool.database_list()
-for database_name in options.database_names:
+for database_name in database_names:
 pool = Pool(database_name)
 if database_name not in database_list:
 with Transaction().start(database_name, 0, readonly=True):
@@ -98,7 +102,11 @@
 
 def run_task(pool, task_id):
 if not isinstance(pool, Pool):
+database_list = Pool.database_list()
 pool = Pool(pool)
+if pool.database_name not in database_list:
+with Transaction().start(pool.database_name, 0, readonly=True):
+pool.init()
 Queue = pool.get('ir.queue')
 Error = pool.get('ir.error')
 name = '' % (task_id, pool.database_name)



[tryton-commits] changeset in trytond:6.0 Dumps Dict values in UTF-8 instead of A...

2022-04-22 Thread Cédric Krier
changeset 2fa2c08bfde2 in trytond:6.0
details: https://hg.tryton.org/trytond?cmd=changeset=2fa2c08bfde2
description:
Dumps Dict values in UTF-8 instead of ASCII

This is how they are stored in the database and so we must use also the 
UTF-8
version when using unaccent to properly remove the accents.

issue11418
(grafted from db29f8a10314f48f68be5b68ec075ae4f37edb2f)
diffstat:

 trytond/model/fields/dict.py |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (13 lines):

diff -r 4e84adc930d0 -r 2fa2c08bfde2 trytond/model/fields/dict.py
--- a/trytond/model/fields/dict.py  Sat Apr 16 11:25:38 2022 +0200
+++ b/trytond/model/fields/dict.py  Mon Apr 18 19:40:01 2022 +0200
@@ -14,7 +14,8 @@
 
 # Use canonical form
 dumps = partial(
-json.dumps, cls=JSONEncoder, separators=(',', ':'), sort_keys=True)
+json.dumps, cls=JSONEncoder, separators=(',', ':'), sort_keys=True,
+ensure_ascii=False)
 
 
 class ImmutableDict(dict):



[tryton-commits] changeset in trytond:6.2 Dumps Dict values in UTF-8 instead of A...

2022-04-22 Thread Cédric Krier
changeset db9e12d44720 in trytond:6.2
details: https://hg.tryton.org/trytond?cmd=changeset=db9e12d44720
description:
Dumps Dict values in UTF-8 instead of ASCII

This is how they are stored in the database and so we must use also the 
UTF-8
version when using unaccent to properly remove the accents.

issue11418
(grafted from db29f8a10314f48f68be5b68ec075ae4f37edb2f)
diffstat:

 trytond/model/fields/dict.py |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (13 lines):

diff -r a760d1b53d3d -r db9e12d44720 trytond/model/fields/dict.py
--- a/trytond/model/fields/dict.py  Sat Apr 16 11:25:38 2022 +0200
+++ b/trytond/model/fields/dict.py  Mon Apr 18 19:40:01 2022 +0200
@@ -15,7 +15,8 @@
 
 # Use canonical form
 dumps = partial(
-json.dumps, cls=JSONEncoder, separators=(',', ':'), sort_keys=True)
+json.dumps, cls=JSONEncoder, separators=(',', ':'), sort_keys=True,
+ensure_ascii=False)
 
 
 class Dict(Field):



[tryton-commits] changeset in trytond:6.0 Escape wildcard in tree separator for n...

2022-04-22 Thread Cédric Krier
changeset 4e84adc930d0 in trytond:6.0
details: https://hg.tryton.org/trytond?cmd=changeset=4e84adc930d0
description:
Escape wildcard in tree separator for name domain

issue11321
review356281002
(grafted from 8b1644ea12fad5b20ebd52a6641bd09570e0631c)
diffstat:

 trytond/model/tree.py  |  5 -
 trytond/tests/test_tree.py |  9 +
 trytond/tests/tree.py  |  8 
 3 files changed, 21 insertions(+), 1 deletions(-)

diffs (66 lines):

diff -r 05e9d5cb4c06 -r 4e84adc930d0 trytond/model/tree.py
--- a/trytond/model/tree.py Fri Apr 22 18:32:25 2022 +0200
+++ b/trytond/model/tree.py Sat Apr 16 11:25:38 2022 +0200
@@ -3,6 +3,8 @@
 from itertools import chain
 
 from trytond.i18n import gettext
+from trytond.tools import escape_wildcard
+
 from .modelstorage import ValidationError
 
 
@@ -19,7 +21,8 @@
 def __setup__(cls):
 super(TreeMixin, cls).__setup__()
 field = getattr(cls, name)
-clause = (name, 'not like', '%' + separator + '%')
+clause = (
+name, 'not like', '%' + escape_wildcard(separator) + '%')
 # If TreeMixin is after the class where name is defined in
 # __mro__, it modifies the base field copied so it must ensure
 # to add only once the domain
diff -r 05e9d5cb4c06 -r 4e84adc930d0 trytond/tests/test_tree.py
--- a/trytond/tests/test_tree.pyFri Apr 22 18:32:25 2022 +0200
+++ b/trytond/tests/test_tree.pySat Apr 16 11:25:38 2022 +0200
@@ -27,6 +27,15 @@
 record.save()
 
 @with_transaction()
+def test_name_domain_wildcard(self):
+"Test name domain on tree with wildcard"
+pool = Pool()
+Tree = pool.get('test.tree_wildcard')
+
+record = Tree(name="test 10%")
+record.save()
+
+@with_transaction()
 def test_rec_name(self):
 "Test rec_name"
 pool = Pool()
diff -r 05e9d5cb4c06 -r 4e84adc930d0 trytond/tests/tree.py
--- a/trytond/tests/tree.py Fri Apr 22 18:32:25 2022 +0200
+++ b/trytond/tests/tree.py Sat Apr 16 11:25:38 2022 +0200
@@ -12,6 +12,13 @@
 parent = fields.Many2One('test.tree', "Parent")
 
 
+class TreeWildcard(tree(separator='\\'), ModelSQL):
+"Tree separator wildcard"
+__name__ = 'test.tree_wildcard'
+name = fields.Char("Name")
+parent = fields.Many2One('test.tree_wildcard', "Parent")
+
+
 class Polytree(tree(parent='parents'), ModelSQL):
 "PolyTree"
 __name__ = 'test.polytree'
@@ -30,6 +37,7 @@
 def register(module):
 Pool.register(
 Tree,
+TreeWildcard,
 Polytree,
 PolytreeEdge,
 module=module, type_='model')



[tryton-commits] changeset in trytond:6.2 Escape wildcard in tree separator for n...

2022-04-22 Thread Cédric Krier
changeset a760d1b53d3d in trytond:6.2
details: https://hg.tryton.org/trytond?cmd=changeset=a760d1b53d3d
description:
Escape wildcard in tree separator for name domain

issue11321
review356281002
(grafted from 8b1644ea12fad5b20ebd52a6641bd09570e0631c)
diffstat:

 trytond/model/tree.py  |  5 -
 trytond/tests/test_tree.py |  9 +
 trytond/tests/tree.py  |  8 
 3 files changed, 21 insertions(+), 1 deletions(-)

diffs (66 lines):

diff -r a610674ec95c -r a760d1b53d3d trytond/model/tree.py
--- a/trytond/model/tree.py Fri Apr 22 18:32:25 2022 +0200
+++ b/trytond/model/tree.py Sat Apr 16 11:25:38 2022 +0200
@@ -3,6 +3,8 @@
 from itertools import chain
 
 from trytond.i18n import gettext
+from trytond.tools import escape_wildcard
+
 from .modelstorage import ValidationError
 
 
@@ -19,7 +21,8 @@
 def __setup__(cls):
 super(TreeMixin, cls).__setup__()
 field = getattr(cls, name)
-clause = (name, 'not like', '%' + separator + '%')
+clause = (
+name, 'not like', '%' + escape_wildcard(separator) + '%')
 # If TreeMixin is after the class where name is defined in
 # __mro__, it modifies the base field copied so it must ensure
 # to add only once the domain
diff -r a610674ec95c -r a760d1b53d3d trytond/tests/test_tree.py
--- a/trytond/tests/test_tree.pyFri Apr 22 18:32:25 2022 +0200
+++ b/trytond/tests/test_tree.pySat Apr 16 11:25:38 2022 +0200
@@ -189,6 +189,15 @@
 record.save()
 
 @with_transaction()
+def test_name_domain_wildcard(self):
+"Test name domain on tree with wildcard"
+pool = Pool()
+Tree = pool.get('test.tree_wildcard')
+
+record = Tree(name="test 10%")
+record.save()
+
+@with_transaction()
 def test_rec_name(self):
 "Test rec_name"
 pool = Pool()
diff -r a610674ec95c -r a760d1b53d3d trytond/tests/tree.py
--- a/trytond/tests/tree.py Fri Apr 22 18:32:25 2022 +0200
+++ b/trytond/tests/tree.py Sat Apr 16 11:25:38 2022 +0200
@@ -12,6 +12,13 @@
 parent = fields.Many2One('test.tree', "Parent")
 
 
+class TreeWildcard(tree(separator='\\'), ModelSQL):
+"Tree separator wildcard"
+__name__ = 'test.tree_wildcard'
+name = fields.Char("Name")
+parent = fields.Many2One('test.tree_wildcard', "Parent")
+
+
 class Polytree(tree(parent='parents'), ModelSQL):
 "PolyTree"
 __name__ = 'test.polytree'
@@ -30,6 +37,7 @@
 def register(module):
 Pool.register(
 Tree,
+TreeWildcard,
 Polytree,
 PolytreeEdge,
 module=module, type_='model')



[tryton-commits] changeset in trytond:6.0 Always use a Response wrapper when usin...

2022-04-22 Thread Cédric Krier
changeset 05e9d5cb4c06 in trytond:6.0
details: https://hg.tryton.org/trytond?cmd=changeset=05e9d5cb4c06
description:
Always use a Response wrapper when using testing client

This normalize the behavior through different versions of werkzeug.

issue11353
review385001002
(grafted from 171cdfb43730f5bcafca95149016366c794c7850)
diffstat:

 trytond/tests/test_wsgi.py |  8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (39 lines):

diff -r 415df618a3e8 -r 05e9d5cb4c06 trytond/tests/test_wsgi.py
--- a/trytond/tests/test_wsgi.pyFri Apr 15 21:18:43 2022 +0200
+++ b/trytond/tests/test_wsgi.pyFri Apr 22 18:32:25 2022 +0200
@@ -33,7 +33,7 @@
 sentinel.request = request
 raise exception
 
-client = Client(app)
+client = Client(app, Response)
 _ = client.get('/willfail')
 
 spy.assert_called_once_with(app, sentinel.request, exception)
@@ -59,7 +59,7 @@
 sentinel.request = request
 raise exception
 
-client = Client(app)
+client = Client(app, Response)
 _ = client.get('/willfail')
 
 spy1.assert_called_once_with(app, sentinel.request, exception)
@@ -83,7 +83,7 @@
 sentinel.request = request
 raise exception
 
-client = Client(app)
+client = Client(app, Response)
 _ = client.get('/willfail')
 
 spy.assert_called_once_with(app, sentinel.request, exception)
@@ -104,7 +104,7 @@
 def _route(request):
 raise self.TestException('foo')
 
-client = Client(app)
+client = Client(app, Response)
 response = client.get('/willfail')
 
 self.assertEqual(next(response.response), b'baz')



[tryton-commits] changeset in trytond:6.2 Always use a Response wrapper when usin...

2022-04-22 Thread Cédric Krier
changeset a610674ec95c in trytond:6.2
details: https://hg.tryton.org/trytond?cmd=changeset=a610674ec95c
description:
Always use a Response wrapper when using testing client

This normalize the behavior through different versions of werkzeug.

issue11353
review385001002
(grafted from 171cdfb43730f5bcafca95149016366c794c7850)
diffstat:

 trytond/tests/test_wsgi.py |  8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (39 lines):

diff -r 3bf2b931fc42 -r a610674ec95c trytond/tests/test_wsgi.py
--- a/trytond/tests/test_wsgi.pyFri Apr 15 21:17:05 2022 +0200
+++ b/trytond/tests/test_wsgi.pyFri Apr 22 18:32:25 2022 +0200
@@ -33,7 +33,7 @@
 sentinel.request = request
 raise exception
 
-client = Client(app)
+client = Client(app, Response)
 _ = client.get('/willfail')
 
 spy.assert_called_once_with(app, sentinel.request, exception)
@@ -59,7 +59,7 @@
 sentinel.request = request
 raise exception
 
-client = Client(app)
+client = Client(app, Response)
 _ = client.get('/willfail')
 
 spy1.assert_called_once_with(app, sentinel.request, exception)
@@ -83,7 +83,7 @@
 sentinel.request = request
 raise exception
 
-client = Client(app)
+client = Client(app, Response)
 _ = client.get('/willfail')
 
 spy.assert_called_once_with(app, sentinel.request, exception)
@@ -104,7 +104,7 @@
 def _route(request):
 raise self.TestException('foo')
 
-client = Client(app)
+client = Client(app, Response)
 response = client.get('/willfail')
 
 self.assertEqual(next(response.response), b'baz')



[tryton-commits] changeset in tryton:6.0 Use ListBox model to retrieve selected r...

2022-04-22 Thread Cédric Krier
changeset 89346ebf50ac in tryton:6.0
details: https://hg.tryton.org/tryton?cmd=changeset=89346ebf50ac
description:
Use ListBox model to retrieve selected records

The group attribute on the view may be different then the one currently 
used by
the ListBox model.

issue11350
review388341002
(grafted from fdfcec280ed699a97655a699158da45524fe209e)
diffstat:

 tryton/gui/window/view_form/view/list_form.py |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (22 lines):

diff -r b823a1aee3b4 -r 89346ebf50ac 
tryton/gui/window/view_form/view/list_form.py
--- a/tryton/gui/window/view_form/view/list_form.py Sun Apr 17 00:52:58 
2022 +0200
+++ b/tryton/gui/window/view_form/view/list_form.py Tue Apr 19 18:20:56 
2022 +0200
@@ -110,7 +110,8 @@
 @property
 def selected_records(self):
 selected_rows = self.listbox.get_selected_rows()
-return [self.group[r.get_index()] for r in selected_rows]
+return [
+self._model.get_item(r.get_index()).record for r in selected_rows]
 
 def group_list_changed(self, group, signal):
 action = signal[0]
@@ -132,7 +133,7 @@
 def _row_selected(self, listbox, row):
 if not row:
 return
-self.record = self.group[row.get_index()]
+self.record = self._model.get_item(row.get_index()).record
 
 @common.idle_add
 def _select_show_row(self, index):



[tryton-commits] changeset in tryton:6.2 Use ListBox model to retrieve selected r...

2022-04-22 Thread Cédric Krier
changeset c86e6fdba8f2 in tryton:6.2
details: https://hg.tryton.org/tryton?cmd=changeset=c86e6fdba8f2
description:
Use ListBox model to retrieve selected records

The group attribute on the view may be different then the one currently 
used by
the ListBox model.

issue11350
review388341002
(grafted from fdfcec280ed699a97655a699158da45524fe209e)
diffstat:

 tryton/gui/window/view_form/view/list_form.py |  5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diffs (22 lines):

diff -r 420f5d0c76a2 -r c86e6fdba8f2 
tryton/gui/window/view_form/view/list_form.py
--- a/tryton/gui/window/view_form/view/list_form.py Sun Apr 17 00:52:58 
2022 +0200
+++ b/tryton/gui/window/view_form/view/list_form.py Tue Apr 19 18:20:56 
2022 +0200
@@ -110,7 +110,8 @@
 @property
 def selected_records(self):
 selected_rows = self.listbox.get_selected_rows()
-return [self.group[r.get_index()] for r in selected_rows]
+return [
+self._model.get_item(r.get_index()).record for r in selected_rows]
 
 def group_list_changed(self, group, signal):
 action = signal[0]
@@ -132,7 +133,7 @@
 def _row_selected(self, listbox, row):
 if not row:
 return
-self.record = self.group[row.get_index()]
+self.record = self._model.get_item(row.get_index()).record
 
 @common.idle_add
 def _select_show_row(self, index):



[tryton-commits] changeset in tryton:6.0 Use EV prefix for evince environment setup

2022-04-22 Thread Cédric Krier
changeset b823a1aee3b4 in tryton:6.0
details: https://hg.tryton.org/tryton?cmd=changeset=b823a1aee3b4
description:
Use EV prefix for evince environment setup

See 
https://gitlab.gnome.org/GNOME/evince/-/commit/395312868baf4ee03c5118ee5c58f25601c2af1d
(grafted from 6f99b844d718c191a93aafd45adaa522473e9a41)
diffstat:

 bin/tryton |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r e28c9e1739bb -r b823a1aee3b4 bin/tryton
--- a/bin/trytonSat Apr 16 11:27:21 2022 +0200
+++ b/bin/trytonSun Apr 17 00:52:58 2022 +0200
@@ -17,7 +17,7 @@
 prefix = os.path.dirname(sys.executable)
 os.environ['GTK_EXE_PREFIX'] = prefix
 os.environ['GTK_DATA_PREFIX'] = prefix
-os.environ['EVINCE_BACKENDS_DIR'] = prefix
+os.environ['EV_BACKENDS_DIR'] = prefix
 os.environ['XDG_DATA_DIRS'] = os.path.join(prefix, 'share')
 etc = os.path.join(prefix, 'etc')
 os.environ['GDK_PIXBUF_MODULE_FILE'] = os.path.join(



[tryton-commits] changeset in tryton:6.2 Use EV prefix for evince environment setup

2022-04-22 Thread Cédric Krier
changeset 420f5d0c76a2 in tryton:6.2
details: https://hg.tryton.org/tryton?cmd=changeset=420f5d0c76a2
description:
Use EV prefix for evince environment setup

See 
https://gitlab.gnome.org/GNOME/evince/-/commit/395312868baf4ee03c5118ee5c58f25601c2af1d
(grafted from 6f99b844d718c191a93aafd45adaa522473e9a41)
diffstat:

 bin/tryton |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 0712649a1b67 -r 420f5d0c76a2 bin/tryton
--- a/bin/trytonSat Apr 16 11:27:21 2022 +0200
+++ b/bin/trytonSun Apr 17 00:52:58 2022 +0200
@@ -17,7 +17,7 @@
 prefix = os.path.dirname(sys.executable)
 os.environ['GTK_EXE_PREFIX'] = prefix
 os.environ['GTK_DATA_PREFIX'] = prefix
-os.environ['EVINCE_BACKENDS_DIR'] = prefix
+os.environ['EV_BACKENDS_DIR'] = prefix
 os.environ['XDG_DATA_DIRS'] = os.path.join(prefix, 'share')
 etc = os.path.join(prefix, 'etc')
 os.environ['GDK_PIXBUF_MODULE_FILE'] = os.path.join(



[tryton-commits] changeset in tryton:6.0 Do not delete text if there is no end po...

2022-04-22 Thread Cédric Krier
changeset e28c9e1739bb in tryton:6.0
details: https://hg.tryton.org/tryton?cmd=changeset=e28c9e1739bb
description:
Do not delete text if there is no end position

When inserting text without selection, there is no text to delete.

issue11138
review371051002
(grafted from 0c84c8539ede9f66ca4976ca1c19d72d9a196e94)
diffstat:

 tryton/common/cellrendererfloat.py |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (13 lines):

diff -r 667c6f201ab7 -r e28c9e1739bb tryton/common/cellrendererfloat.py
--- a/tryton/common/cellrendererfloat.pyFri Apr 15 21:24:20 2022 +0200
+++ b/tryton/common/cellrendererfloat.pySat Apr 16 11:27:21 2022 +0200
@@ -36,7 +36,8 @@
 end_pos = None
 if self._can_insert_text(widget, text, start_pos, end_pos):
 buffer_ = widget.get_buffer()
-buffer_.delete_text(start_pos, end_pos - start_pos)
+if end_pos:
+buffer_.delete_text(start_pos, end_pos - start_pos)
 buffer_.insert_text(start_pos, text, len(text))
 widget.set_position(widget.get_position() + len(text))
 return True



[tryton-commits] changeset in tryton:6.2 Do not delete text if there is no end po...

2022-04-22 Thread Cédric Krier
changeset 0712649a1b67 in tryton:6.2
details: https://hg.tryton.org/tryton?cmd=changeset=0712649a1b67
description:
Do not delete text if there is no end position

When inserting text without selection, there is no text to delete.

issue11138
review371051002
(grafted from 0c84c8539ede9f66ca4976ca1c19d72d9a196e94)
diffstat:

 tryton/common/cellrendererfloat.py |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (13 lines):

diff -r 7801173265b1 -r 0712649a1b67 tryton/common/cellrendererfloat.py
--- a/tryton/common/cellrendererfloat.pyFri Apr 15 21:21:39 2022 +0200
+++ b/tryton/common/cellrendererfloat.pySat Apr 16 11:27:21 2022 +0200
@@ -36,7 +36,8 @@
 end_pos = None
 if self._can_insert_text(widget, text, start_pos, end_pos):
 buffer_ = widget.get_buffer()
-buffer_.delete_text(start_pos, end_pos - start_pos)
+if end_pos:
+buffer_.delete_text(start_pos, end_pos - start_pos)
 buffer_.insert_text(start_pos, text, len(text))
 widget.set_position(widget.get_position() + len(text))
 return True



[tryton-commits] changeset in sao:5.0 Use JavaScript logical NOT when parsing time

2022-04-22 Thread Cédric Krier
changeset 357541dc3d16 in sao:5.0
details: https://hg.tryton.org/sao?cmd=changeset=357541dc3d16
description:
Use JavaScript logical NOT when parsing time

The jQuery isEmptyObject is not true on empty string.

issue11189
review356351002
(grafted from 1a7b8019712f02416507daa25761772eba125490)
diffstat:

 src/common.js |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 922377a859da -r 357541dc3d16 src/common.js
--- a/src/common.js Tue Apr 19 13:24:43 2022 +0200
+++ b/src/common.js Tue Apr 19 18:06:14 2022 +0200
@@ -234,7 +234,7 @@
 };
 
 Sao.common.parse_time = function(format, value) {
-if (jQuery.isEmptyObject(value)) {
+if (!value) {
 return null;
 }
 var getNumber = function(pattern) {



[tryton-commits] changeset in sao:6.0 Use JavaScript logical NOT when parsing time

2022-04-22 Thread Cédric Krier
changeset 1f370c1ecbe1 in sao:6.0
details: https://hg.tryton.org/sao?cmd=changeset=1f370c1ecbe1
description:
Use JavaScript logical NOT when parsing time

The jQuery isEmptyObject is not true on empty string.

issue11189
review356351002
(grafted from 1a7b8019712f02416507daa25761772eba125490)
diffstat:

 src/common.js |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 52e9cf630f98 -r 1f370c1ecbe1 src/common.js
--- a/src/common.js Tue Apr 19 13:24:43 2022 +0200
+++ b/src/common.js Tue Apr 19 18:06:14 2022 +0200
@@ -245,7 +245,7 @@
 };
 
 Sao.common.parse_time = function(format, value) {
-if (jQuery.isEmptyObject(value)) {
+if (!value) {
 return null;
 }
 var getNumber = function(pattern) {



[tryton-commits] changeset in sao:6.2 Use JavaScript logical NOT when parsing time

2022-04-22 Thread Cédric Krier
changeset ac1e582b7f8b in sao:6.2
details: https://hg.tryton.org/sao?cmd=changeset=ac1e582b7f8b
description:
Use JavaScript logical NOT when parsing time

The jQuery isEmptyObject is not true on empty string.

issue11189
review356351002
(grafted from 1a7b8019712f02416507daa25761772eba125490)
diffstat:

 src/common.js |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 2a654c1504ac -r ac1e582b7f8b src/common.js
--- a/src/common.js Tue Apr 19 13:24:43 2022 +0200
+++ b/src/common.js Tue Apr 19 18:06:14 2022 +0200
@@ -245,7 +245,7 @@
 };
 
 Sao.common.parse_time = function(format, value) {
-if (jQuery.isEmptyObject(value)) {
+if (!value) {
 return null;
 }
 var getNumber = function(pattern) {



[tryton-commits] changeset in sao:5.0 Always combine Time when setting DateTime w...

2022-04-22 Thread Cédric Krier
changeset 922377a859da in sao:5.0
details: https://hg.tryton.org/sao?cmd=changeset=922377a859da
description:
Always combine Time when setting DateTime with a Date

issue11346
review368381008
(grafted from 35a2da4a20d8590c2d97a4d4331f7ec2f9034367)
diffstat:

 src/model.js |  6 ++
 1 files changed, 2 insertions(+), 4 deletions(-)

diffs (16 lines):

diff -r 1507e5418549 -r 922377a859da src/model.js
--- a/src/model.js  Fri Apr 15 21:26:55 2022 +0200
+++ b/src/model.js  Tue Apr 19 13:24:43 2022 +0200
@@ -1689,10 +1689,8 @@
 value = null;
 }
 } else if (value.isDate) {
-current_value = this.get(record);
-if (current_value) {
-value = Sao.DateTime.combine(value, current_value);
-}
+current_value = this.get(record) || Sao.Time();
+value = Sao.DateTime.combine(value, current_value);
 }
 }
 Sao.field.DateTime._super.set_client.call(this, record, value,



[tryton-commits] changeset in sao:6.0 Always combine Time when setting DateTime w...

2022-04-22 Thread Cédric Krier
changeset 52e9cf630f98 in sao:6.0
details: https://hg.tryton.org/sao?cmd=changeset=52e9cf630f98
description:
Always combine Time when setting DateTime with a Date

issue11346
review368381008
(grafted from 35a2da4a20d8590c2d97a4d4331f7ec2f9034367)
diffstat:

 src/model.js |  6 ++
 1 files changed, 2 insertions(+), 4 deletions(-)

diffs (16 lines):

diff -r e4600348da8b -r 52e9cf630f98 src/model.js
--- a/src/model.js  Sat Apr 16 11:23:26 2022 +0200
+++ b/src/model.js  Tue Apr 19 13:24:43 2022 +0200
@@ -1821,10 +1821,8 @@
 value = null;
 }
 } else if (value.isDate) {
-current_value = this.get(record);
-if (current_value) {
-value = Sao.DateTime.combine(value, current_value);
-}
+current_value = this.get(record) || Sao.Time();
+value = Sao.DateTime.combine(value, current_value);
 }
 }
 Sao.field.DateTime._super.set_client.call(this, record, value,



[tryton-commits] changeset in sao:6.2 Always combine Time when setting DateTime w...

2022-04-22 Thread Cédric Krier
changeset 2a654c1504ac in sao:6.2
details: https://hg.tryton.org/sao?cmd=changeset=2a654c1504ac
description:
Always combine Time when setting DateTime with a Date

issue11346
review368381008
(grafted from 35a2da4a20d8590c2d97a4d4331f7ec2f9034367)
diffstat:

 src/model.js |  6 ++
 1 files changed, 2 insertions(+), 4 deletions(-)

diffs (16 lines):

diff -r d9948f2ad86f -r 2a654c1504ac src/model.js
--- a/src/model.js  Sat Apr 16 11:23:26 2022 +0200
+++ b/src/model.js  Tue Apr 19 13:24:43 2022 +0200
@@ -1821,10 +1821,8 @@
 value = null;
 }
 } else if (value.isDate) {
-current_value = this.get(record);
-if (current_value) {
-value = Sao.DateTime.combine(value, current_value);
-}
+current_value = this.get(record) || Sao.Time();
+value = Sao.DateTime.combine(value, current_value);
 }
 }
 Sao.field.DateTime._super.set_client.call(this, record, value,



[tryton-commits] changeset in sao:6.0 Return display promises in set_default

2022-04-22 Thread Cédric Krier
changeset e4600348da8b in sao:6.0
details: https://hg.tryton.org/sao?cmd=changeset=e4600348da8b
description:
Return display promises in set_default

issue11369
review384871002
(grafted from a531c98cdb16c3182ca0d82bf9519120a06329b6)
diffstat:

 src/model.js |  7 ---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (18 lines):

diff -r 2871888b11bd -r e4600348da8b src/model.js
--- a/src/model.js  Fri Apr 15 21:26:37 2022 +0200
+++ b/src/model.js  Sat Apr 16 11:23:26 2022 +0200
@@ -1016,10 +1016,11 @@
 this.on_change_with(fieldnames);
 var callback = function() {
 if (display) {
-return this.group.root_group.screens
-.forEach(function(screen) {
+return jQuery.when.apply(
+jQuery, this.group.root_group.screens
+.map(function(screen) {
 return screen.display();
-});
+}));
 }
 }.bind(this);
 if (validate) {



[tryton-commits] changeset in sao:6.2 Return display promises in set_default

2022-04-22 Thread Cédric Krier
changeset d9948f2ad86f in sao:6.2
details: https://hg.tryton.org/sao?cmd=changeset=d9948f2ad86f
description:
Return display promises in set_default

issue11369
review384871002
(grafted from a531c98cdb16c3182ca0d82bf9519120a06329b6)
diffstat:

 src/model.js |  7 ---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (18 lines):

diff -r 6a6e1d900445 -r d9948f2ad86f src/model.js
--- a/src/model.js  Fri Apr 15 21:26:08 2022 +0200
+++ b/src/model.js  Sat Apr 16 11:23:26 2022 +0200
@@ -1016,10 +1016,11 @@
 this.on_change_with(fieldnames);
 var callback = function() {
 if (display) {
-return this.group.root_group.screens
-.forEach(function(screen) {
+return jQuery.when.apply(
+jQuery, this.group.root_group.screens
+.map(function(screen) {
 return screen.display();
-});
+}));
 }
 }.bind(this);
 if (validate) {



[tryton-commits] changeset in modules/account_asset:6.2 Clear revisions when dupl...

2022-04-22 Thread Adrià Tarroja Caubet
changeset c59cb937054e in modules/account_asset:6.2
details: 
https://hg.tryton.org/modules/account_asset?cmd=changeset=c59cb937054e
description:
Clear revisions when duplicating asset

issue11274
review380401002
(grafted from 136f549bbc50f579469807bafb21fe393f652504)
diffstat:

 asset.py |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (11 lines):

diff -r cd82c15e6a98 -r c59cb937054e asset.py
--- a/asset.py  Tue Apr 19 23:24:03 2022 +0200
+++ b/asset.py  Tue Apr 19 23:24:18 2022 +0200
@@ -710,6 +710,7 @@
 default.setdefault('number', None)
 default.setdefault('supplier_invoice_line', None)
 default.setdefault('move')
+default.setdefault('revisions', [])
 return super(Asset, cls).copy(assets, default=default)
 
 @classmethod



[tryton-commits] changeset in modules/account_asset:5.0 Clear update moves when d...

2022-04-22 Thread Adrià Tarroja Caubet
changeset 10f20a7a8885 in modules/account_asset:5.0
details: 
https://hg.tryton.org/modules/account_asset?cmd=changeset=10f20a7a8885
description:
Clear update moves when duplicating asset

issue11274
review386121002
(grafted from 2d59fd7207988c3c1924dab46e7d05a8e117a98d)
diffstat:

 asset.py |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (11 lines):

diff -r 60cf0b33db16 -r 10f20a7a8885 asset.py
--- a/asset.py  Thu Jun 17 21:42:55 2021 +0200
+++ b/asset.py  Tue Apr 19 23:24:03 2022 +0200
@@ -622,6 +622,7 @@
 else:
 default = default.copy()
 default.setdefault('lines', [])
+default.setdefault('update_moves', [])
 default.setdefault('number', None)
 default.setdefault('supplier_invoice_line', None)
 default.setdefault('move')



[tryton-commits] changeset in modules/account_asset:6.0 Clear update moves when d...

2022-04-22 Thread Adrià Tarroja Caubet
changeset afb2ab0cbbc4 in modules/account_asset:6.0
details: 
https://hg.tryton.org/modules/account_asset?cmd=changeset=afb2ab0cbbc4
description:
Clear update moves when duplicating asset

issue11274
review386121002
(grafted from 2d59fd7207988c3c1924dab46e7d05a8e117a98d)
diffstat:

 asset.py |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (11 lines):

diff -r 0b79eed0c9f3 -r afb2ab0cbbc4 asset.py
--- a/asset.py  Thu Sep 16 23:52:43 2021 +0200
+++ b/asset.py  Tue Apr 19 23:24:03 2022 +0200
@@ -702,6 +702,7 @@
 else:
 default = default.copy()
 default.setdefault('lines', [])
+default.setdefault('update_moves', [])
 default.setdefault('number', None)
 default.setdefault('supplier_invoice_line', None)
 default.setdefault('move')



[tryton-commits] changeset in modules/account_asset:6.2 Clear update moves when d...

2022-04-22 Thread Adrià Tarroja Caubet
changeset cd82c15e6a98 in modules/account_asset:6.2
details: 
https://hg.tryton.org/modules/account_asset?cmd=changeset=cd82c15e6a98
description:
Clear update moves when duplicating asset

issue11274
review386121002
(grafted from 2d59fd7207988c3c1924dab46e7d05a8e117a98d)
diffstat:

 asset.py |  1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diffs (11 lines):

diff -r 0439eb1984cd -r cd82c15e6a98 asset.py
--- a/asset.py  Mon Nov 01 17:21:25 2021 +0100
+++ b/asset.py  Tue Apr 19 23:24:03 2022 +0200
@@ -706,6 +706,7 @@
 else:
 default = default.copy()
 default.setdefault('lines', [])
+default.setdefault('update_moves', [])
 default.setdefault('number', None)
 default.setdefault('supplier_invoice_line', None)
 default.setdefault('move')



[tryton-commits] changeset in trytond:default Always use a Response wrapper when ...

2022-04-22 Thread Cédric Krier
changeset 171cdfb43730 in trytond:default
details: https://hg.tryton.org/trytond?cmd=changeset=171cdfb43730
description:
Always use a Response wrapper when using testing client

This normalize the behavior through different versions of werkzeug.

issue11353
review385001002
diffstat:

 trytond/tests/test_wsgi.py |  8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (39 lines):

diff -r 92710378cff8 -r 171cdfb43730 trytond/tests/test_wsgi.py
--- a/trytond/tests/test_wsgi.pyFri Apr 22 09:34:19 2022 +0200
+++ b/trytond/tests/test_wsgi.pyFri Apr 22 18:32:25 2022 +0200
@@ -34,7 +34,7 @@
 sentinel.request = request
 raise exception
 
-client = Client(app)
+client = Client(app, Response)
 _ = client.get('/willfail')
 
 spy.assert_called_once_with(app, sentinel.request, exception)
@@ -60,7 +60,7 @@
 sentinel.request = request
 raise exception
 
-client = Client(app)
+client = Client(app, Response)
 _ = client.get('/willfail')
 
 spy1.assert_called_once_with(app, sentinel.request, exception)
@@ -84,7 +84,7 @@
 sentinel.request = request
 raise exception
 
-client = Client(app)
+client = Client(app, Response)
 _ = client.get('/willfail')
 
 spy.assert_called_once_with(app, sentinel.request, exception)
@@ -105,7 +105,7 @@
 def _route(request):
 raise self.TestException('foo')
 
-client = Client(app)
+client = Client(app, Response)
 response = client.get('/willfail')
 
 self.assertEqual(next(response.response), b'baz')



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Sergio Morillo
changeset c5a7e1f42ce9 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=c5a7e1f42ce9
description:
Translated using Weblate (Spanish)

Currently translated at 100.0% (8 of 8 strings)

Translation: Tryton/sale_product_quantity
Translate-URL: 
https://translate.tryton.org/projects/tryton/sale_product_quantity/es/
diffstat:

 modules/sale_product_quantity/locale/es.po |  6 --
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (27 lines):

diff -r 2b9bdea43c44 -r c5a7e1f42ce9 modules/sale_product_quantity/locale/es.po
--- a/modules/sale_product_quantity/locale/es.poThu Apr 21 15:51:13 
2022 +
+++ b/modules/sale_product_quantity/locale/es.poThu Apr 21 15:51:17 
2022 +
@@ -4,7 +4,7 @@
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2022-04-21 15:48+\n"
 "PO-Revision-Date: 2022-04-22 13:09+\n"
-"Last-Translator: Hodei Navarro \n"
+"Last-Translator: Sergio Morillo \n"
 "Language-Team: LANGUAGE \n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
@@ -35,7 +35,7 @@
 
 msgctxt "field:product.template,sale_quantity_rounding:"
 msgid "Sale Rounding Quantity"
-msgstr ""
+msgstr "Redondeo cantidad venta"
 
 msgctxt "model:ir.message,text:msg_sale_line_quantity_minimal"
 msgid ""
@@ -50,3 +50,5 @@
 "The quantity %(quantity)s of line %(line)s is not valid, you must set "
 "multiple of %(rounding)s."
 msgstr ""
+"La cantidad %(quantity)s de la línea %(line)s no es válida, debe ser "
+"múltiple de %(rounding)s."



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Hodei Navarro
changeset 2b9bdea43c44 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=2b9bdea43c44
description:
Translated using Weblate (Spanish)

Currently translated at 100.0% (8 of 8 strings)

Translation: Tryton/sale_product_quantity
Translate-URL: 
https://translate.tryton.org/projects/tryton/sale_product_quantity/es/
diffstat:

 modules/sale_product_quantity/locale/es.po |  6 --
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (30 lines):

diff -r c71a095d4ece -r 2b9bdea43c44 modules/sale_product_quantity/locale/es.po
--- a/modules/sale_product_quantity/locale/es.poThu Apr 21 15:51:07 
2022 +
+++ b/modules/sale_product_quantity/locale/es.poThu Apr 21 15:51:13 
2022 +
@@ -4,7 +4,7 @@
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2022-04-21 15:48+\n"
 "PO-Revision-Date: 2022-04-22 13:09+\n"
-"Last-Translator: Sergi Almacellas Abellana \n"
+"Last-Translator: Hodei Navarro \n"
 "Language-Team: LANGUAGE \n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
@@ -31,7 +31,7 @@
 
 msgctxt "field:product.template,sale_quantity_minimal:"
 msgid "Sale Minimal Quantity"
-msgstr ""
+msgstr "Cantidad mínima de venta"
 
 msgctxt "field:product.template,sale_quantity_rounding:"
 msgid "Sale Rounding Quantity"
@@ -42,6 +42,8 @@
 "The quantity %(quantity)s of line %(line)s is too small, you must set at "
 "least %(minimum)s."
 msgstr ""
+"La cantidad %(quantity)s de la línea %(line)s es demasiado pequeña, debe ser "
+"al menos %(minimum)s."
 
 msgctxt "model:ir.message,text:msg_sale_line_quantity_rounding"
 msgid ""



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Sergi Almacellas Abellana
changeset c71a095d4ece in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=c71a095d4ece
description:
Translated using Weblate (Spanish)

Currently translated at 100.0% (8 of 8 strings)

Translation: Tryton/sale_product_quantity
Translate-URL: 
https://translate.tryton.org/projects/tryton/sale_product_quantity/es/
diffstat:

 modules/sale_product_quantity/locale/es.po |  8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (32 lines):

diff -r fd6b61944d1a -r c71a095d4ece modules/sale_product_quantity/locale/es.po
--- a/modules/sale_product_quantity/locale/es.poThu Apr 21 15:52:04 
2022 +
+++ b/modules/sale_product_quantity/locale/es.poThu Apr 21 15:51:07 
2022 +
@@ -3,8 +3,8 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2022-04-21 15:48+\n"
-"PO-Revision-Date: 2022-04-21 15:50+\n"
-"Last-Translator: Hodei Navarro \n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Sergi Almacellas Abellana \n"
 "Language-Team: LANGUAGE \n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@
 
 msgctxt "field:product.product,sale_quantity_digits:"
 msgid "Sale Quantity Digits"
-msgstr "Dígitos cantidad venta"
+msgstr "Dígitos de la cantidad de venta"
 
 msgctxt "field:product.product,sale_quantity_minimal:"
 msgid "Sale Minimal Quantity"
@@ -27,7 +27,7 @@
 
 msgctxt "field:product.template,sale_quantity_digits:"
 msgid "Sale Quantity Digits"
-msgstr ""
+msgstr "Dígitos de la cantidad de venta"
 
 msgctxt "field:product.template,sale_quantity_minimal:"
 msgid "Sale Minimal Quantity"



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Sergio Morillo
changeset fd6b61944d1a in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=fd6b61944d1a
description:
Translated using Weblate (Spanish)

Currently translated at 76.6% (23 of 30 strings)

Translation: Tryton/account_receivable_rule
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_receivable_rule/es/
diffstat:

 modules/account_receivable_rule/locale/es.po |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r ed09b2563399 -r fd6b61944d1a 
modules/account_receivable_rule/locale/es.po
--- a/modules/account_receivable_rule/locale/es.po  Thu Apr 21 15:54:01 
2022 +
+++ b/modules/account_receivable_rule/locale/es.po  Thu Apr 21 15:52:04 
2022 +
@@ -4,7 +4,7 @@
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2022-04-22 13:09+\n"
 "PO-Revision-Date: 2022-04-22 13:09+\n"
-"Last-Translator: Hodei Navarro \n"
+"Last-Translator: Sergio Morillo \n"
 "Language-Team: LANGUAGE \n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
@@ -15,7 +15,7 @@
 
 msgctxt "field:account.account,receivable_rules:"
 msgid "Receivable Rules"
-msgstr ""
+msgstr "Reglas cobrables"
 
 msgctxt "field:account.account.receivable.rule,account:"
 msgid "Account"



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Hodei Navarro
changeset ed09b2563399 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=ed09b2563399
description:
Translated using Weblate (Spanish)

Currently translated at 76.6% (23 of 30 strings)

Translation: Tryton/account_receivable_rule
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_receivable_rule/es/
diffstat:

 modules/account_receivable_rule/locale/es.po |  59 +--
 1 files changed, 37 insertions(+), 22 deletions(-)

diffs (156 lines):

diff -r 13809c613839 -r ed09b2563399 
modules/account_receivable_rule/locale/es.po
--- a/modules/account_receivable_rule/locale/es.po  Thu Apr 21 18:57:34 
2022 +
+++ b/modules/account_receivable_rule/locale/es.po  Thu Apr 21 15:54:01 
2022 +
@@ -1,10 +1,25 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2022-04-22 13:09+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Hodei Navarro \n"
+"Language-Team: LANGUAGE \n"
+"Language: es\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
+
 msgctxt "field:account.account,receivable_rules:"
 msgid "Receivable Rules"
 msgstr ""
 
 msgctxt "field:account.account.receivable.rule,account:"
 msgid "Account"
-msgstr ""
+msgstr "Cuenta"
 
 msgctxt "field:account.account.receivable.rule,account_party_required:"
 msgid "Account Party Required"
@@ -12,23 +27,23 @@
 
 msgctxt "field:account.account.receivable.rule,account_payable:"
 msgid "Account Payable"
-msgstr ""
+msgstr "Cuenta a pagar"
 
 msgctxt "field:account.account.receivable.rule,account_receivable:"
 msgid "Account Receivable"
-msgstr ""
+msgstr "Cuenta a cobrar"
 
 msgctxt "field:account.account.receivable.rule,accounts:"
 msgid "Accounts"
-msgstr ""
+msgstr "Cuentas"
 
 msgctxt "field:account.account.receivable.rule,company:"
 msgid "Company"
-msgstr ""
+msgstr "Empresa"
 
 msgctxt "field:account.account.receivable.rule,journal:"
 msgid "Journal"
-msgstr ""
+msgstr "Diario"
 
 msgctxt "field:account.account.receivable.rule,overflow_account:"
 msgid "Overflow Account"
@@ -36,11 +51,11 @@
 
 msgctxt "field:account.account.receivable.rule,priorities:"
 msgid "Priorities"
-msgstr ""
+msgstr "Prioridades"
 
 msgctxt "field:account.account.receivable.rule.account,account:"
 msgid "Account"
-msgstr ""
+msgstr "Cuenta"
 
 msgctxt "field:account.account.receivable.rule.account,account_party_required:"
 msgid "Account Party Required"
@@ -48,15 +63,15 @@
 
 msgctxt "field:account.account.receivable.rule.account,account_payable:"
 msgid "Account Payable"
-msgstr ""
+msgstr "Cuenta a pagar"
 
 msgctxt "field:account.account.receivable.rule.account,account_receivable:"
 msgid "Account Receivable"
-msgstr ""
+msgstr "Cuenta a cobrar"
 
 msgctxt "field:account.account.receivable.rule.account,company:"
 msgid "Company"
-msgstr ""
+msgstr "Empresa"
 
 msgctxt "field:account.account.receivable.rule.account,only_reconcile:"
 msgid "Only Reconcile"
@@ -64,7 +79,7 @@
 
 msgctxt "field:account.account.receivable.rule.account,rule:"
 msgid "Rule"
-msgstr ""
+msgstr "Regla"
 
 msgctxt "help:account.account.receivable.rule,overflow_account:"
 msgid ""
@@ -78,7 +93,7 @@
 
 msgctxt "model:account.account.receivable.rule,name:"
 msgid "Account Receivable Rule"
-msgstr ""
+msgstr "Regla cuenta a cobrar"
 
 msgctxt "model:account.account.receivable.rule.account,name:"
 msgid "Account Receivable Rule Account"
@@ -86,36 +101,36 @@
 
 msgctxt "model:ir.action,name:act_account_receivable_rule_form"
 msgid "Account Receivable Rules"
-msgstr ""
+msgstr "Reglas cuenta a cobrar"
 
 msgctxt "model:ir.message,text:msg_account_unique"
 msgid "Only one active rule is allowed by account."
-msgstr ""
+msgstr "Solo se permite una regla activa por cuenta."
 
 msgctxt "model:ir.message,text:msg_rule_account_unique"
 msgid "Only one account is allowed by rule."
-msgstr ""
+msgstr "Solo se permite una cuenta por regla."
 
 msgctxt "model:ir.model.button,string:account_receivable_rule_apply_button"
 msgid "Apply"
-msgstr ""
+msgstr "Aplicar"
 
 msgctxt "model:ir.rule.group,name:rule_group_account_receivable_rule_companies"
 msgid "User in companies"
-msgstr ""
+msgstr "Usuario en las empresas"
 
 msgctxt "model:ir.ui.menu,name:menu_account_receivable_rule_form"
 msgid "Account Receivable Rules"
-msgstr ""
+msgstr "Reglas cuenta a cobrar"
 
 msgctxt "selection:account.account.receivable.rule,priorities:"
 msgid "Account, Maturity Date"
-msgstr ""
+msgstr "Cuenta, fecha de vencimiento"
 
 msgctxt "selection:account.account.receivable.rule,priorities:"
 msgid "Maturity Date, Account"
-msgstr ""
+msgstr "Fecha de vencimiento, cuenta"
 
 msgctxt "selection:ir.cron,method:"
 msgid "Apply Account Receivable Rules"
-msgstr ""
+msgstr "Aplicar reglas cuenta a cobrar"



[tryton-commits] changeset in weblate:default Translated using Weblate (Dutch)

2022-04-22 Thread EdbO
changeset 13809c613839 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=13809c613839
description:
Translated using Weblate (Dutch)

Currently translated at 100.0% (46 of 46 strings)

Translation: Tryton/account_es_sii
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_es_sii/nl/
diffstat:

 modules/account_es_sii/locale/nl.po |  4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r c8ce1082f1ff -r 13809c613839 modules/account_es_sii/locale/nl.po
--- a/modules/account_es_sii/locale/nl.po   Thu Apr 21 15:59:19 2022 +
+++ b/modules/account_es_sii/locale/nl.po   Thu Apr 21 18:57:34 2022 +
@@ -3,7 +3,7 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2022-04-16 17:09+\n"
-"PO-Revision-Date: 2022-04-16 17:09+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: EdbO \n"
 "Language-Team: LANGUAGE \n"
 "Language: nl\n"
@@ -95,7 +95,6 @@
 msgstr ""
 "Een validatie code die het verzenden van de gerelateerde factuur bevestigd."
 
-#, fuzzy
 msgctxt "help:account.period,es_sii_send_invoices:"
 msgid "Check to create SII records for the invoices in the period."
 msgstr "Vink aan om SII records aan te maken voor de facturen in de periode."
@@ -152,7 +151,6 @@
 "De SII instellingen voor periode \"%(period)s\" kunnen niet gewijzigd worden "
 "omdat er al geboekte facturen zijn."
 
-#, fuzzy
 msgctxt "model:ir.message,text:msg_missing_sii_url"
 msgid ""
 "To send invoices to SII service, you need to set an URL on the account "



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Sergi Almacellas Abellana
changeset c8ce1082f1ff in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=c8ce1082f1ff
description:
Translated using Weblate (Spanish)

Currently translated at 93.4% (43 of 46 strings)

Translation: Tryton/account_es_sii
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_es_sii/es/
diffstat:

 modules/account_es_sii/locale/es.po |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 796f8abb15f2 -r c8ce1082f1ff modules/account_es_sii/locale/es.po
--- a/modules/account_es_sii/locale/es.po   Thu Apr 21 15:57:22 2022 +
+++ b/modules/account_es_sii/locale/es.po   Thu Apr 21 15:59:19 2022 +
@@ -4,7 +4,7 @@
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2022-04-21 15:45+\n"
 "PO-Revision-Date: 2022-04-22 13:09+\n"
-"Last-Translator: Hodei Navarro \n"
+"Last-Translator: Sergi Almacellas Abellana \n"
 "Language-Team: LANGUAGE \n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
@@ -130,7 +130,7 @@
 msgctxt ""
 "model:ir.action.act_window.domain,name:act_invoice_sii_form_domain_rejected"
 msgid "Rejected"
-msgstr "Rechazado"
+msgstr "Rechazada"
 
 msgctxt "model:ir.message,text:msg_es_sii_invoice_delete_sent"
 msgid ""



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Hodei Navarro
changeset 796f8abb15f2 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=796f8abb15f2
description:
Translated using Weblate (Spanish)

Currently translated at 93.4% (43 of 46 strings)

Translation: Tryton/account_es_sii
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_es_sii/es/
diffstat:

 modules/account_es_sii/locale/es.po |  12 ++--
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (38 lines):

diff -r 2205bcbc9d6a -r 796f8abb15f2 modules/account_es_sii/locale/es.po
--- a/modules/account_es_sii/locale/es.po   Thu Apr 21 15:48:52 2022 +
+++ b/modules/account_es_sii/locale/es.po   Thu Apr 21 15:57:22 2022 +
@@ -3,7 +3,7 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2022-04-21 15:45+\n"
-"PO-Revision-Date: 2022-04-21 15:59+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Hodei Navarro \n"
 "Language-Team: LANGUAGE \n"
 "Language: es\n"
@@ -195,20 +195,20 @@
 
 msgctxt "selection:ir.cron,method:"
 msgid "Send invoices to SII"
-msgstr ""
+msgstr "Enviar facturas al SII"
 
 msgctxt "view:account.configuration:"
 msgid "Spanish Immediate Information Supply"
-msgstr ""
+msgstr "Suministro Inmediato de Información Español"
 
 msgctxt "view:account.fiscalyear:"
 msgid "Spanish SII"
-msgstr ""
+msgstr "SII Español"
 
 msgctxt "view:account.tax.template:"
 msgid "Spanish SII"
-msgstr ""
+msgstr "SII Español"
 
 msgctxt "view:account.tax:"
 msgid "Spanish SII"
-msgstr ""
+msgstr "SII Español"



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Sergi Almacellas Abellana
changeset 2205bcbc9d6a in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=2205bcbc9d6a
description:
Translated using Weblate (Spanish)

Currently translated at 100.0% (20 of 20 strings)

Translation: Tryton/sale_invoice_date
Translate-URL: 
https://translate.tryton.org/projects/tryton/sale_invoice_date/es/
diffstat:

 modules/sale_invoice_date/locale/es.po |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r a2c1e1a4a98f -r 2205bcbc9d6a modules/sale_invoice_date/locale/es.po
--- a/modules/sale_invoice_date/locale/es.poThu Apr 21 16:07:12 2022 +
+++ b/modules/sale_invoice_date/locale/es.poThu Apr 21 15:48:52 2022 +
@@ -3,8 +3,8 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2022-04-21 15:48+\n"
-"PO-Revision-Date: 2022-04-21 15:48+\n"
-"Last-Translator: Hodei Navarro \n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Sergi Almacellas Abellana \n"
 "Language-Team: LANGUAGE \n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
@@ -95,4 +95,4 @@
 
 msgctxt "model:sale.invoice.term.relative_delta,name:"
 msgid "Invoice Term Delta"
-msgstr "Incremento del término de la factura"
+msgstr "Incremento del plazo de facturación"



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Hodei Navarro
changeset a2c1e1a4a98f in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=a2c1e1a4a98f
description:
Translated using Weblate (Spanish)

Currently translated at 96.9% (64 of 66 strings)

Translation: Tryton/web_shop_shopify
Translate-URL: 
https://translate.tryton.org/projects/tryton/web_shop_shopify/es/
diffstat:

 modules/web_shop_shopify/locale/es.po |  8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (31 lines):

diff -r ee35a0c68bb0 -r a2c1e1a4a98f modules/web_shop_shopify/locale/es.po
--- a/modules/web_shop_shopify/locale/es.po Thu Apr 21 12:19:59 2022 +
+++ b/modules/web_shop_shopify/locale/es.po Thu Apr 21 16:07:12 2022 +
@@ -3,15 +3,15 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2021-10-25 19:16+\n"
-"PO-Revision-Date: 2021-10-28 06:12+\n"
-"Last-Translator: David Blanco Bautista \n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Hodei Navarro \n"
 "Language-Team: LANGUAGE \n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.8.1\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:product.attribute.set,shopify_option1:"
 msgid "Option 1"
@@ -119,7 +119,7 @@
 
 msgctxt "help:web.shop,shopify_webhook_endpoint_order:"
 msgid "The URL to be called by Shopify for Order events."
-msgstr ""
+msgstr "La URL que será llamada por Shopify para eventos de pedidos."
 
 msgctxt "help:web.shop-stock.location,shopify_stock_skip_warehouse:"
 msgid "Check to use only the quantity of the storage zone."



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset ee35a0c68bb0 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=ee35a0c68bb0
description:
Translated using Weblate (Italian)

Currently translated at 4.3% (4 of 93 strings)

Translation: Tryton/account_budget
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_budget/it/
diffstat:

 modules/account_budget/locale/it.po |  23 +++
 1 files changed, 19 insertions(+), 4 deletions(-)

diffs (46 lines):

diff -r cd9d7c13b589 -r ee35a0c68bb0 modules/account_budget/locale/it.po
--- a/modules/account_budget/locale/it.po   Thu Apr 21 12:19:40 2022 +
+++ b/modules/account_budget/locale/it.po   Thu Apr 21 12:19:59 2022 +
@@ -1,3 +1,18 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2022-04-22 13:09+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Luca Cristaldi \n"
+"Language-Team: LANGUAGE \n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
+
 msgctxt "field:account.budget,company:"
 msgid "Company"
 msgstr ""
@@ -132,19 +147,19 @@
 
 msgctxt "field:account.budget.line.period,currency:"
 msgid "Currency"
-msgstr ""
+msgstr "Valuta"
 
 msgctxt "field:account.budget.line.period,fiscalyear:"
 msgid "Fiscal Year"
-msgstr ""
+msgstr "Esercizio"
 
 msgctxt "field:account.budget.line.period,percentage:"
 msgid "Percentage"
-msgstr ""
+msgstr "Percentuale"
 
 msgctxt "field:account.budget.line.period,period:"
 msgid "Period"
-msgstr ""
+msgstr "Periodo"
 
 msgctxt "field:account.budget.line.period,ratio:"
 msgid "Ratio"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset cd9d7c13b589 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=cd9d7c13b589
description:
Translated using Weblate (Italian)

Currently translated at 4.3% (2 of 46 strings)

Translation: Tryton/account_invoice_defer
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_invoice_defer/it/
diffstat:

 modules/account_invoice_defer/locale/it.po |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (30 lines):

diff -r 720aea8b8d1f -r cd9d7c13b589 modules/account_invoice_defer/locale/it.po
--- a/modules/account_invoice_defer/locale/it.poThu Apr 21 12:19:27 
2022 +
+++ b/modules/account_invoice_defer/locale/it.poThu Apr 21 12:19:40 
2022 +
@@ -3,7 +3,7 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2022-01-27 14:15+\n"
-"PO-Revision-Date: 2022-01-27 14:15+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language-Team: LANGUAGE \n"
 "Language: it\n"
@@ -11,7 +11,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.10.1\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:account.configuration,deferred_account_expense:"
 msgid "Deferred Account Expense"
@@ -39,7 +39,7 @@
 
 msgctxt "field:account.invoice.deferred,currency:"
 msgid "Currency"
-msgstr ""
+msgstr "Valuta"
 
 msgctxt "field:account.invoice.deferred,end_date:"
 msgid "End Date"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 720aea8b8d1f in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=720aea8b8d1f
description:
Translated using Weblate (Italian)

Currently translated at 1.5% (1 of 65 strings)

Translation: Tryton/sale_gift_card
Translate-URL: 
https://translate.tryton.org/projects/tryton/sale_gift_card/it/
diffstat:

 modules/sale_gift_card/locale/it.po |  17 -
 1 files changed, 16 insertions(+), 1 deletions(-)

diffs (31 lines):

diff -r b7c0af58a397 -r 720aea8b8d1f modules/sale_gift_card/locale/it.po
--- a/modules/sale_gift_card/locale/it.po   Thu Apr 21 12:19:16 2022 +
+++ b/modules/sale_gift_card/locale/it.po   Thu Apr 21 12:19:27 2022 +
@@ -1,3 +1,18 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2022-04-22 13:09+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Luca Cristaldi \n"
+"Language-Team: LANGUAGE \n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
+
 msgctxt "field:account.account.type,gift_card:"
 msgid "Gift Card"
 msgstr ""
@@ -54,7 +69,7 @@
 
 msgctxt "field:sale.gift_card,currency:"
 msgid "Currency"
-msgstr ""
+msgstr "Valuta"
 
 msgctxt "field:sale.gift_card,number:"
 msgid "Number"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset b7c0af58a397 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=b7c0af58a397
description:
Translated using Weblate (Italian)

Currently translated at 3.7% (2 of 54 strings)

Translation: Tryton/web_shop
Translate-URL: https://translate.tryton.org/projects/tryton/web_shop/it/
diffstat:

 modules/web_shop/locale/it.po |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 3863d859d928 -r b7c0af58a397 modules/web_shop/locale/it.po
--- a/modules/web_shop/locale/it.po Thu Apr 21 12:25:33 2022 +
+++ b/modules/web_shop/locale/it.po Thu Apr 21 12:19:16 2022 +
@@ -3,7 +3,7 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2022-04-21 12:09+\n"
-"PO-Revision-Date: 2022-04-21 12:09+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language-Team: LANGUAGE \n"
 "Language: it\n"
@@ -67,7 +67,7 @@
 
 msgctxt "field:web.shop,currency:"
 msgid "Currency"
-msgstr ""
+msgstr "Valuta"
 
 msgctxt "field:web.shop,guest_party:"
 msgid "Guest Party"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 3863d859d928 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=3863d859d928
description:
Translated using Weblate (Italian)

Currently translated at 6.8% (8 of 116 strings)

Translation: Tryton/account_payment_braintree
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_payment_braintree/it/
diffstat:

 modules/account_payment_braintree/locale/it.po |  12 ++--
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (49 lines):

diff -r 4167b682fb30 -r 3863d859d928 
modules/account_payment_braintree/locale/it.po
--- a/modules/account_payment_braintree/locale/it.poThu Apr 21 18:56:49 
2022 +
+++ b/modules/account_payment_braintree/locale/it.poThu Apr 21 12:25:33 
2022 +
@@ -3,7 +3,7 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2022-01-27 14:15+\n"
-"PO-Revision-Date: 2022-01-27 14:15+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language-Team: LANGUAGE \n"
 "Language: it\n"
@@ -11,7 +11,7 @@
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.10.1\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:account.payment,braintree_account:"
 msgid "Braintree Account"
@@ -79,7 +79,7 @@
 
 msgctxt "field:account.payment.braintree.account,currency:"
 msgid "Currency"
-msgstr ""
+msgstr "Valuta"
 
 msgctxt "field:account.payment.braintree.account,environment:"
 msgid "Environment"
@@ -178,15 +178,15 @@
 
 msgctxt "field:account.payment.braintree.refund,currency:"
 msgid "Currency"
-msgstr ""
+msgstr "Valuta"
 
 msgctxt "field:account.payment.braintree.refund,payment:"
 msgid "Payment"
-msgstr ""
+msgstr "Pagamento"
 
 msgctxt "field:account.payment.braintree.refund,state:"
 msgid "State"
-msgstr ""
+msgstr "Stato"
 
 msgctxt "field:account.payment.braintree.refund,submitted_by:"
 msgid "Submitted by"



[tryton-commits] changeset in weblate:default Translated using Weblate (Dutch)

2022-04-22 Thread EdbO
changeset 4167b682fb30 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=4167b682fb30
description:
Translated using Weblate (Dutch)

Currently translated at 100.0% (16 of 16 strings)

Translation: Tryton/user_role
Translate-URL: 
https://translate.tryton.org/projects/tryton/user_role/nl/
diffstat:

 modules/user_role/locale/nl.po |  8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r 26c6b3265350 -r 4167b682fb30 modules/user_role/locale/nl.po
--- a/modules/user_role/locale/nl.poThu Apr 21 15:57:44 2022 +
+++ b/modules/user_role/locale/nl.poThu Apr 21 18:56:49 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2019-07-27 19:17+\n"
-"Last-Translator: Bert Defoor \n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: EdbO \n"
 "Language: nl\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.7.1\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:res.role,groups:"
 msgid "Groups"
@@ -71,7 +71,7 @@
 
 msgctxt "view:res.user.role:"
 msgid "Time"
-msgstr ""
+msgstr "Tijd"
 
 #, fuzzy
 #~ msgctxt "field:res.role,create_date:"



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Sergi Almacellas Abellana
changeset 26c6b3265350 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=26c6b3265350
description:
Translated using Weblate (Spanish)

Currently translated at 100.0% (16 of 16 strings)

Translation: Tryton/user_role
Translate-URL: 
https://translate.tryton.org/projects/tryton/user_role/es/
diffstat:

 modules/user_role/locale/es.po |  11 +--
 1 files changed, 9 insertions(+), 2 deletions(-)

diffs (27 lines):

diff -r 76d9db3373b9 -r 26c6b3265350 modules/user_role/locale/es.po
--- a/modules/user_role/locale/es.poThu Apr 21 15:55:23 2022 +
+++ b/modules/user_role/locale/es.poThu Apr 21 15:57:44 2022 +
@@ -1,6 +1,13 @@
 #
 msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8\n"
+msgstr ""
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Sergi Almacellas Abellana \n"
+"Language: es\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:res.role,groups:"
 msgid "Groups"
@@ -64,7 +71,7 @@
 
 msgctxt "view:res.user.role:"
 msgid "Time"
-msgstr ""
+msgstr "Hora"
 
 #, fuzzy
 #~ msgctxt "field:res.role,create_date:"



[tryton-commits] changeset in weblate:default Translated using Weblate (Catalan)

2022-04-22 Thread Sergi Almacellas Abellana
changeset 76d9db3373b9 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=76d9db3373b9
description:
Translated using Weblate (Catalan)

Currently translated at 100.0% (16 of 16 strings)

Translation: Tryton/user_role
Translate-URL: 
https://translate.tryton.org/projects/tryton/user_role/ca/
diffstat:

 modules/user_role/locale/ca.po |  11 +--
 1 files changed, 9 insertions(+), 2 deletions(-)

diffs (27 lines):

diff -r 5d2566e72ebe -r 76d9db3373b9 modules/user_role/locale/ca.po
--- a/modules/user_role/locale/ca.poThu Apr 21 12:39:15 2022 +
+++ b/modules/user_role/locale/ca.poThu Apr 21 15:55:23 2022 +
@@ -1,6 +1,13 @@
 #
 msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8\n"
+msgstr ""
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Sergi Almacellas Abellana \n"
+"Language: ca\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:res.role,groups:"
 msgid "Groups"
@@ -64,7 +71,7 @@
 
 msgctxt "view:res.user.role:"
 msgid "Time"
-msgstr ""
+msgstr "Hora"
 
 #, fuzzy
 #~ msgctxt "field:res.role,create_date:"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 5d2566e72ebe in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=5d2566e72ebe
description:
Translated using Weblate (Italian)

Currently translated at 100.0% (4 of 4 strings)

Translation: Tryton/stock_supply_day
Translate-URL: 
https://translate.tryton.org/projects/tryton/stock_supply_day/it/
diffstat:

 modules/stock_supply_day/locale/it.po |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 96c5770651bf -r 5d2566e72ebe modules/stock_supply_day/locale/it.po
--- a/modules/stock_supply_day/locale/it.po Thu Apr 21 12:28:00 2022 +
+++ b/modules/stock_supply_day/locale/it.po Thu Apr 21 12:39:15 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-01-27 14:15+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.10.1\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:purchase.product_supplier,weekdays:"
 msgid "Week Days"
@@ -17,7 +17,6 @@
 msgid "Day"
 msgstr "Giorno"
 
-#, fuzzy
 msgctxt "field:purchase.product_supplier.day,product_supplier:"
 msgid "Supplier"
 msgstr "Fornitore"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 96c5770651bf in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=96c5770651bf
description:
Translated using Weblate (Italian)

Currently translated at 45.4% (10 of 22 strings)

Translation: Tryton/stock_split
Translate-URL: 
https://translate.tryton.org/projects/tryton/stock_split/it/
diffstat:

 modules/stock_split/locale/it.po |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r aa44ce661e0d -r 96c5770651bf modules/stock_split/locale/it.po
--- a/modules/stock_split/locale/it.po  Thu Apr 21 16:53:44 2022 +
+++ b/modules/stock_split/locale/it.po  Thu Apr 21 12:28:00 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2020-04-30 17:40+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.11.3\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:stock.move.split.start,count:"
 msgid "Counts"
@@ -19,7 +19,7 @@
 
 msgctxt "field:stock.move.split.start,uom:"
 msgid "Uom"
-msgstr ""
+msgstr "UdM"
 
 msgctxt "field:stock.move.split.start,uom_category:"
 msgid "Uom Category"



[tryton-commits] changeset in weblate:default Translated using Weblate (French)

2022-04-22 Thread Cédric Krier
changeset aa44ce661e0d in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=aa44ce661e0d
description:
Translated using Weblate (French)

Currently translated at 100.0% (61 of 61 strings)

Translation: Tryton/stock_package
Translate-URL: 
https://translate.tryton.org/projects/tryton/stock_package/fr/
diffstat:

 modules/stock_package/locale/fr.po |  79 -
 1 files changed, 27 insertions(+), 52 deletions(-)

diffs (217 lines):

diff -r 339a6de71a90 -r aa44ce661e0d modules/stock_package/locale/fr.po
--- a/modules/stock_package/locale/fr.poThu Apr 21 16:04:46 2022 +
+++ b/modules/stock_package/locale/fr.poThu Apr 21 16:53:44 2022 +
@@ -1,7 +1,7 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-04-17 19:05+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Cédric Krier \n"
 "Language: fr\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -37,54 +37,45 @@
 msgid "Moves"
 msgstr "Mouvements"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_height:"
 msgid "Packaging Height"
-msgstr "Poids de l'emballage"
+msgstr "Hauteur de l'emballage"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_height_uom:"
 msgid "Packaging Height UOM"
-msgstr "Poids de l'emballage UDM"
+msgstr "Hauteur de l'emballage UDM"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_length:"
 msgid "Packaging Length"
-msgstr "Poids de l'emballage"
+msgstr "Longueur de l'emballage"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_length_uom:"
 msgid "Packaging Length UOM"
-msgstr "Poids de l'emballage UDM"
+msgstr "Longueur de l'emballage UDM"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_volume:"
 msgid "Packaging Volume"
-msgstr "Poids de l'emballage"
+msgstr "Volume de l'emballage"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_volume_uom:"
 msgid "Packaging Volume UOM"
-msgstr "Poids de l'emballage UDM"
+msgstr "Volume de l'emballage UDM"
 
 msgctxt "field:stock.package,packaging_weight:"
 msgid "Packaging Weight"
 msgstr "Poids de l'emballage"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_weight_uom:"
 msgid "Packaging Weight UOM"
 msgstr "Poids de l'emballage UDM"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_width:"
 msgid "Packaging Width"
-msgstr "Poids de l'emballage"
+msgstr "Largeur de l'emballage"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_width_uom:"
 msgid "Packaging Width UOM"
-msgstr "Poids de l'emballage UDM"
+msgstr "Largeur de l'emballage UDM"
 
 msgctxt "field:stock.package,parent:"
 msgid "Parent"
@@ -106,54 +97,45 @@
 msgid "Name"
 msgstr "Nom"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_height:"
 msgid "Packaging Height"
-msgstr "Poids de l'emballage"
+msgstr "Hauteur de l'emballage"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_height_uom:"
 msgid "Packaging Height UOM"
-msgstr "Poids de l'emballage UDM"
+msgstr "Hauteur de l'emballage UDM"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_length:"
 msgid "Packaging Length"
-msgstr "Poids de l'emballage"
+msgstr "Longueur de l'emballage"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_length_uom:"
 msgid "Packaging Length UOM"
-msgstr "Poids de l'emballage UDM"
+msgstr "Longueur de l'emballage UDM"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_volume:"
 msgid "Packaging Volume"
-msgstr "Poids de l'emballage"
+msgstr "Volume de l'emballage"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_volume_uom:"
 msgid "Packaging Volume UOM"
-msgstr "Poids de l'emballage UDM"
+msgstr "Volume de l'emballage UDM"
 
 msgctxt "field:stock.package.type,packaging_weight:"
 msgid "Packaging Weight"
 msgstr "Poids de l'emballage"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_weight_uom:"
 msgid "Packaging Weight UOM"
 msgstr "Poids de l'emballage UDM"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_width:"
 msgid "Packaging Width"
-msgstr "Poids de l'emballage"
+msgstr "Largeur de l'emballage"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_width_uom:"
 msgid "Packaging Width UOM"
-msgstr "Poids de l'emballage UDM"
+msgstr "Largeur de l'emballage UDM"
 
 msgctxt "field:stock.shipment.in.return,packages:"
 msgid "Packages"
@@ -171,53 +153,45 @@
 msgid "Packages"
 msgstr "Emballages"
 
-#, fuzzy
 msgctxt "help:stock.package,packaging_height:"
 msgid "The height of the package."
-msgstr "Le poids du colis vide."
+msgstr "La hauteur de l'emballage."
 
-#, fuzzy
 msgctxt "help:stock.package,packaging_length:"
 msgid "The length of the package."
-msgstr "Le poids du colis vide."
+msgstr "La longueur de l'emballage."
 
-#, fuzzy
 msgctxt "help:stock.package,packaging_volume:"
 msgid "The volume of the package."
-msgstr "Le poids du colis vide."
+msgstr "Le volume de l'emballage."
 
 msgctxt "help:stock.package,packaging_weight:"
 msgid "The weight of the package when empty."
 msgstr "Le poids du colis vide."
 
-#, fuzzy
 msgctxt 

[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Hodei Navarro
changeset 339a6de71a90 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=339a6de71a90
description:
Translated using Weblate (Spanish)

Currently translated at 98.3% (60 of 61 strings)

Translation: Tryton/stock_package
Translate-URL: 
https://translate.tryton.org/projects/tryton/stock_package/es/
diffstat:

 modules/stock_package/locale/es.po |  82 -
 1 files changed, 27 insertions(+), 55 deletions(-)

diffs (224 lines):

diff -r 2d5fd388d040 -r 339a6de71a90 modules/stock_package/locale/es.po
--- a/modules/stock_package/locale/es.poThu Apr 21 16:08:24 2022 +
+++ b/modules/stock_package/locale/es.poThu Apr 21 16:04:46 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-04-25 17:04+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Hodei Navarro \n"
 "Language: es\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.6\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:stock.configuration,package_sequence:"
 msgid "Package Sequence"
@@ -37,54 +37,45 @@
 msgid "Moves"
 msgstr "Movimientos"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_height:"
 msgid "Packaging Height"
-msgstr "Peso del paquete"
+msgstr "Altura del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_height_uom:"
 msgid "Packaging Height UOM"
-msgstr "UdM del peso del paquete"
+msgstr "UdM de la altura del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_length:"
 msgid "Packaging Length"
-msgstr "Peso del paquete"
+msgstr "Longitud del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_length_uom:"
 msgid "Packaging Length UOM"
-msgstr "UdM del peso del paquete"
+msgstr "UdM de la longitud del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_volume:"
 msgid "Packaging Volume"
-msgstr "Peso del paquete"
+msgstr "Volumen del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_volume_uom:"
 msgid "Packaging Volume UOM"
-msgstr "UdM del peso del paquete"
+msgstr "UdM del volumen del paquete"
 
 msgctxt "field:stock.package,packaging_weight:"
 msgid "Packaging Weight"
 msgstr "Peso del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_weight_uom:"
 msgid "Packaging Weight UOM"
 msgstr "UdM del peso del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_width:"
 msgid "Packaging Width"
-msgstr "Peso del paquete"
+msgstr "Ancho del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package,packaging_width_uom:"
 msgid "Packaging Width UOM"
-msgstr "UdM del peso del paquete"
+msgstr "UdM del ancho del paquete"
 
 msgctxt "field:stock.package,parent:"
 msgid "Parent"
@@ -106,54 +97,45 @@
 msgid "Name"
 msgstr "Nombre"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_height:"
 msgid "Packaging Height"
-msgstr "Peso del paquete"
+msgstr "Altura del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_height_uom:"
 msgid "Packaging Height UOM"
-msgstr "UdM del peso del paquete"
+msgstr "UdM de la altura del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_length:"
 msgid "Packaging Length"
-msgstr "Peso del paquete"
+msgstr "Longitud del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_length_uom:"
 msgid "Packaging Length UOM"
-msgstr "UdM del peso del paquete"
+msgstr "UdM de la longitud del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_volume:"
 msgid "Packaging Volume"
-msgstr "Peso del paquete"
+msgstr "Volumen del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_volume_uom:"
 msgid "Packaging Volume UOM"
-msgstr "UdM del peso del paquete"
+msgstr "UdM del volumen del paquete"
 
 msgctxt "field:stock.package.type,packaging_weight:"
 msgid "Packaging Weight"
 msgstr "Peso del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_weight_uom:"
 msgid "Packaging Weight UOM"
 msgstr "UdM del peso del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_width:"
 msgid "Packaging Width"
-msgstr "Peso del paquete"
+msgstr "Ancho del paquete"
 
-#, fuzzy
 msgctxt "field:stock.package.type,packaging_width_uom:"
 msgid "Packaging Width UOM"
-msgstr "UdM del peso del paquete"
+msgstr "UdM del ancho del paquete"
 
 msgctxt "field:stock.shipment.in.return,packages:"
 msgid "Packages"
@@ -171,53 +153,45 @@
 msgid "Packages"
 msgstr "Paquetes"
 
-#, fuzzy
 msgctxt "help:stock.package,packaging_height:"
 msgid "The height of the package."
-msgstr "El peso del paquete cuando esta vacío."
+msgstr "La altura del paquete."
 
-#, fuzzy
 msgctxt "help:stock.package,packaging_length:"
 msgid "The length of the package."
-msgstr "El peso del paquete cuando esta vacío."
+msgstr "La longitud del paquete."
 
-#, fuzzy
 msgctxt "help:stock.package,packaging_volume:"
 msgid "The volume of the package."
-msgstr "El peso del paquete 

[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread David Blanco Bautista
changeset 2d5fd388d040 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=2d5fd388d040
description:
Translated using Weblate (Spanish)

Currently translated at 98.8% (794 of 803 strings)

Translation: Tryton/stock
Translate-URL: https://translate.tryton.org/projects/tryton/stock/es/
diffstat:

 modules/stock/locale/es.po |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (24 lines):

diff -r b033d62f0808 -r 2d5fd388d040 modules/stock/locale/es.po
--- a/modules/stock/locale/es.poThu Apr 21 16:08:06 2022 +
+++ b/modules/stock/locale/es.poThu Apr 21 16:08:24 2022 +
@@ -2,7 +2,7 @@
 msgid ""
 msgstr ""
 "PO-Revision-Date: 2022-04-22 13:09+\n"
-"Last-Translator: Hodei Navarro \n"
+"Last-Translator: David Blanco Bautista \n"
 "Language: es\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -3255,10 +3255,9 @@
 msgid "Internal Sequence"
 msgstr "Secuencia de albarán interno"
 
-#, fuzzy
 msgctxt "view:stock.configuration:"
 msgid "Internal Transit"
-msgstr "Cantidad interna"
+msgstr "Tránsito interno"
 
 msgctxt "view:stock.configuration:"
 msgid "Inventory"



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Hodei Navarro
changeset b033d62f0808 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=b033d62f0808
description:
Translated using Weblate (Spanish)

Currently translated at 98.8% (794 of 803 strings)

Translation: Tryton/stock
Translate-URL: https://translate.tryton.org/projects/tryton/stock/es/
diffstat:

 modules/stock/locale/es.po |  3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r 0a4c3c0802a9 -r b033d62f0808 modules/stock/locale/es.po
--- a/modules/stock/locale/es.poThu Apr 21 16:08:02 2022 +
+++ b/modules/stock/locale/es.poThu Apr 21 16:08:06 2022 +
@@ -2,7 +2,7 @@
 msgid ""
 msgstr ""
 "PO-Revision-Date: 2022-04-22 13:09+\n"
-"Last-Translator: Sergi Almacellas Abellana \n"
+"Last-Translator: Hodei Navarro \n"
 "Language: es\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -2534,7 +2534,6 @@
 msgid "Margins"
 msgstr "Márgenes"
 
-#, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_shipment"
 msgid "Shipments"
 msgstr "Albaranes"



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Sergi Almacellas Abellana
changeset 0a4c3c0802a9 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=0a4c3c0802a9
description:
Translated using Weblate (Spanish)

Currently translated at 98.8% (794 of 803 strings)

Translation: Tryton/stock
Translate-URL: https://translate.tryton.org/projects/tryton/stock/es/
diffstat:

 modules/stock/locale/es.po |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 3efb02922665 -r 0a4c3c0802a9 modules/stock/locale/es.po
--- a/modules/stock/locale/es.poThu Apr 21 15:48:15 2022 +
+++ b/modules/stock/locale/es.poThu Apr 21 16:08:02 2022 +
@@ -1,7 +1,7 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-04-21 16:08+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Sergi Almacellas Abellana \n"
 "Language: es\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -2141,7 +2141,7 @@
 "It is recommended to clear the stock from the storage locations before "
 "deactivating the product."
 msgstr ""
-"Es recomendado limpiar las existencias de las ubicaciones de almacenamiento "
+"Es recomendado vaciar las existencias de las ubicaciones de almacenamiento "
 "antes de desactivar el producto."
 
 msgctxt "model:ir.message,text:msg_shipment_delete_cancel"



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Sergi Almacellas Abellana
changeset 3efb02922665 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=3efb02922665
description:
Translated using Weblate (Spanish)

Currently translated at 100.0% (3 of 3 strings)

Translation: Tryton/sale_stock_quantity
Translate-URL: 
https://translate.tryton.org/projects/tryton/sale_stock_quantity/es/
diffstat:

 modules/sale_stock_quantity/locale/es.po |  19 ---
 1 files changed, 12 insertions(+), 7 deletions(-)

diffs (40 lines):

diff -r 6901c8dd7384 -r 3efb02922665 modules/sale_stock_quantity/locale/es.po
--- a/modules/sale_stock_quantity/locale/es.po  Thu Apr 21 15:49:47 2022 +
+++ b/modules/sale_stock_quantity/locale/es.po  Thu Apr 21 15:48:15 2022 +
@@ -1,24 +1,29 @@
 #
 msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8\n"
+msgstr ""
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Sergi Almacellas Abellana \n"
+"Language: es\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
 
-#, fuzzy
 msgctxt "model:ir.message,text:msg_product_forecast_quantity_lower"
 msgid ""
 "The forecast quantity (%(forecast_quantity)s) of product \"%(product)s\" is "
 "lower than the quantity (%(quantity)s)."
 msgstr ""
-"La cantidad prevista (%(forecast_quantity)s%(default_uom)s ) de la linea "
-"\"%(line)s\" es menor que su cantidad (%(quantity)s%(unit)s)."
+"La cantidad prevista (%(forecast_quantity)s) del producto\"%(product)s\" es "
+"menor que su cantidad (%(quantity)s)."
 
-#, fuzzy
 msgctxt "model:ir.message,text:msg_sale_stock_quantity"
 msgid ""
 "The forcast quantity (%(forecast_quantity)s) for line \"%(line)s\" is lower "
 "than its quantity (%(quantity)s)."
 msgstr ""
-"La cantidad prevista (%(forecast_quantity)s%(default_uom)s ) de la linea "
-"\"%(line)s\" es menor que su cantidad (%(quantity)s%(unit)s)."
+"La cantidad prevista (%(forecast_quantity)s) de la linea \"%(line)s\" es "
+"menor que su cantidad (%(quantity)s)."
 
 msgctxt "model:res.group,name:group_sale_stock_quantity"
 msgid "Sale Stock Quantity"



[tryton-commits] changeset in weblate:default Translated using Weblate (Catalan)

2022-04-22 Thread Sergi Almacellas Abellana
changeset 6901c8dd7384 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=6901c8dd7384
description:
Translated using Weblate (Catalan)

Currently translated at 100.0% (3 of 3 strings)

Translation: Tryton/sale_stock_quantity
Translate-URL: 
https://translate.tryton.org/projects/tryton/sale_stock_quantity/ca/
diffstat:

 modules/sale_stock_quantity/locale/ca.po |  19 ---
 1 files changed, 12 insertions(+), 7 deletions(-)

diffs (40 lines):

diff -r df7bfc55c9c5 -r 6901c8dd7384 modules/sale_stock_quantity/locale/ca.po
--- a/modules/sale_stock_quantity/locale/ca.po  Thu Apr 21 12:38:58 2022 +
+++ b/modules/sale_stock_quantity/locale/ca.po  Thu Apr 21 15:49:47 2022 +
@@ -1,24 +1,29 @@
 #
 msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8\n"
+msgstr ""
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Sergi Almacellas Abellana \n"
+"Language: ca\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
 
-#, fuzzy
 msgctxt "model:ir.message,text:msg_product_forecast_quantity_lower"
 msgid ""
 "The forecast quantity (%(forecast_quantity)s) of product \"%(product)s\" is "
 "lower than the quantity (%(quantity)s)."
 msgstr ""
-"La quantitat prevista %(forecast_quantity)s%(default_uom)s de la línia "
-"\"%(line)s\" és menor que la seva quantitat %(quantity)s%(unit)s."
+"La quantitat prevista %(forecast_quantity)s)s del producte\"%(product)s\" és "
+"menor que la seva quantitat (%(quantity)s)."
 
-#, fuzzy
 msgctxt "model:ir.message,text:msg_sale_stock_quantity"
 msgid ""
 "The forcast quantity (%(forecast_quantity)s) for line \"%(line)s\" is lower "
 "than its quantity (%(quantity)s)."
 msgstr ""
-"La quantitat prevista %(forecast_quantity)s%(default_uom)s de la línia "
-"\"%(line)s\" és menor que la seva quantitat %(quantity)s%(unit)s."
+"La quantitat prevista %(forecast_quantity)s de la línia \"%(line)s\" és "
+"menor que la seva quantitat (%(quantity)s)."
 
 msgctxt "model:res.group,name:group_sale_stock_quantity"
 msgid "Sale Stock Quantity"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset df7bfc55c9c5 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=df7bfc55c9c5
description:
Translated using Weblate (Italian)

Currently translated at 100.0% (12 of 12 strings)

Translation: Tryton/sale_shipment_grouping
Translate-URL: 
https://translate.tryton.org/projects/tryton/sale_shipment_grouping/it/
diffstat:

 modules/sale_shipment_grouping/locale/it.po |  8 +---
 1 files changed, 5 insertions(+), 3 deletions(-)

diffs (41 lines):

diff -r 1875e46f5c2f -r df7bfc55c9c5 modules/sale_shipment_grouping/locale/it.po
--- a/modules/sale_shipment_grouping/locale/it.po   Thu Apr 21 12:17:27 
2022 +
+++ b/modules/sale_shipment_grouping/locale/it.po   Thu Apr 21 12:38:58 
2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-01-27 14:15+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.10.1\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:party.party,sale_shipment_grouping_method:"
 msgid "Sale Shipment Grouping Method"
@@ -19,7 +19,7 @@
 
 msgctxt "field:party.party.sale_shipment_grouping_method,party:"
 msgid "Party"
-msgstr ""
+msgstr "Controparte"
 
 msgctxt ""
 "field:party.party.sale_shipment_grouping_method,"
@@ -38,10 +38,12 @@
 msgctxt "help:sale.configuration,sale_shipment_grouping_method:"
 msgid "The default shipment grouping method for new customers."
 msgstr ""
+"Il metodo di raggruppamento delle spedizioni predefinito per i nuovi clienti."
 
 msgctxt "help:sale.configuration.sale_method,sale_shipment_grouping_method:"
 msgid "The default shipment grouping method for new customers."
 msgstr ""
+"Il metodo di raggruppamento delle spedizioni predefinito per i nuovi clienti."
 
 msgctxt "model:party.party.sale_shipment_grouping_method,name:"
 msgid "Party Sale Shipment Grouping Method"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 1875e46f5c2f in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=1875e46f5c2f
description:
Translated using Weblate (Italian)

Currently translated at 60.7% (17 of 28 strings)

Translation: Tryton/sale_promotion
Translate-URL: 
https://translate.tryton.org/projects/tryton/sale_promotion/it/
diffstat:

 modules/sale_promotion/locale/it.po |  11 +--
 1 files changed, 9 insertions(+), 2 deletions(-)

diffs (27 lines):

diff -r 32d1d41243f0 -r 1875e46f5c2f modules/sale_promotion/locale/it.po
--- a/modules/sale_promotion/locale/it.po   Thu Apr 21 12:10:39 2022 +
+++ b/modules/sale_promotion/locale/it.po   Thu Apr 21 12:17:27 2022 +
@@ -1,6 +1,13 @@
 #
 msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8\n"
+msgstr ""
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Luca Cristaldi \n"
+"Language: it\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:sale.line,draft_unit_price:"
 msgid "Draft Unit Price"
@@ -24,7 +31,7 @@
 
 msgctxt "field:sale.promotion,currency:"
 msgid "Currency"
-msgstr ""
+msgstr "Valuta"
 
 msgctxt "field:sale.promotion,end_date:"
 msgid "End Date"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 32d1d41243f0 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=32d1d41243f0
description:
Translated using Weblate (Italian)

Currently translated at 100.0% (4 of 4 strings)

Translation: Tryton/sale_payment
Translate-URL: 
https://translate.tryton.org/projects/tryton/sale_payment/it/
diffstat:

 modules/sale_payment/locale/it.po |  10 --
 1 files changed, 8 insertions(+), 2 deletions(-)

diffs (24 lines):

diff -r 473e161f7722 -r 32d1d41243f0 modules/sale_payment/locale/it.po
--- a/modules/sale_payment/locale/it.po Thu Apr 21 12:16:34 2022 +
+++ b/modules/sale_payment/locale/it.po Thu Apr 21 12:10:39 2022 +
@@ -1,12 +1,18 @@
 #
 msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8\n"
+msgstr ""
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Luca Cristaldi \n"
+"Language: it\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:sale.sale,payments:"
 msgid "Payments"
 msgstr "Pagamenti"
 
-#, fuzzy
 msgctxt "model:ir.action,name:act_payments_relate"
 msgid "Payments"
 msgstr "Pagamenti"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 473e161f7722 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=473e161f7722
description:
Translated using Weblate (Italian)

Currently translated at 87.5% (21 of 24 strings)

Translation: Tryton/sale_extra
Translate-URL: 
https://translate.tryton.org/projects/tryton/sale_extra/it/
diffstat:

 modules/sale_extra/locale/it.po |  15 ++-
 1 files changed, 10 insertions(+), 5 deletions(-)

diffs (40 lines):

diff -r 60c08ef37638 -r 473e161f7722 modules/sale_extra/locale/it.po
--- a/modules/sale_extra/locale/it.po   Thu Apr 21 12:19:33 2022 +
+++ b/modules/sale_extra/locale/it.po   Thu Apr 21 12:16:34 2022 +
@@ -1,15 +1,21 @@
 #
 msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8\n"
+msgstr ""
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Luca Cristaldi \n"
+"Language: it\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:sale.extra,company:"
 msgid "Company"
 msgstr "Azienda"
 
-#, fuzzy
 msgctxt "field:sale.extra,currency:"
 msgid "Currency"
-msgstr "posizioni valuta"
+msgstr "Valuta"
 
 msgctxt "field:sale.extra,end_date:"
 msgid "End Date"
@@ -35,10 +41,9 @@
 msgid "Start Date"
 msgstr "Data inizio"
 
-#, fuzzy
 msgctxt "field:sale.extra.line,currency:"
 msgid "Currency"
-msgstr "posizioni valuta"
+msgstr "Valuta"
 
 msgctxt "field:sale.extra.line,extra:"
 msgid "Extra"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 60c08ef37638 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=60c08ef37638
description:
Translated using Weblate (Italian)

Currently translated at 17.7% (8 of 45 strings)

Translation: Tryton/sale_advance_payment
Translate-URL: 
https://translate.tryton.org/projects/tryton/sale_advance_payment/it/
diffstat:

 modules/sale_advance_payment/locale/it.po |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r f44bb7a51fb6 -r 60c08ef37638 modules/sale_advance_payment/locale/it.po
--- a/modules/sale_advance_payment/locale/it.po Thu Apr 21 12:25:14 2022 +
+++ b/modules/sale_advance_payment/locale/it.po Thu Apr 21 12:19:33 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2020-04-30 17:40+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.11.3\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:account.account.type,unearned_revenue:"
 msgid "Unearned Revenue"
@@ -39,7 +39,7 @@
 
 msgctxt "field:sale.advance_payment.condition,currency:"
 msgid "Currency"
-msgstr ""
+msgstr "Valuta"
 
 msgctxt "field:sale.advance_payment.condition,description:"
 msgid "Description"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset f44bb7a51fb6 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=f44bb7a51fb6
description:
Translated using Weblate (Italian)

Currently translated at 80.0% (8 of 10 strings)

Translation: Tryton/project_revenue
Translate-URL: 
https://translate.tryton.org/projects/tryton/project_revenue/it/
diffstat:

 modules/project_revenue/locale/it.po |  7 +++
 1 files changed, 3 insertions(+), 4 deletions(-)

diffs (29 lines):

diff -r 774d65320d77 -r f44bb7a51fb6 modules/project_revenue/locale/it.po
--- a/modules/project_revenue/locale/it.po  Thu Apr 21 12:31:18 2022 +
+++ b/modules/project_revenue/locale/it.po  Thu Apr 21 12:25:14 2022 +
@@ -1,22 +1,21 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2020-04-25 07:33+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.11.3\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:project.work,cost:"
 msgid "Cost"
 msgstr "Costo"
 
-#, fuzzy
 msgctxt "field:project.work,currency:"
 msgid "Currency"
-msgstr "Cifre valuta"
+msgstr "Valuta"
 
 msgctxt "field:project.work,list_price:"
 msgid "List Price"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 774d65320d77 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=774d65320d77
description:
Translated using Weblate (Italian)

Currently translated at 90.0% (27 of 30 strings)

Translation: Tryton/project_invoice
Translate-URL: 
https://translate.tryton.org/projects/tryton/project_invoice/it/
diffstat:

 modules/project_invoice/locale/it.po |  15 ++-
 1 files changed, 6 insertions(+), 9 deletions(-)

diffs (62 lines):

diff -r 8c536a8d5d44 -r 774d65320d77 modules/project_invoice/locale/it.po
--- a/modules/project_invoice/locale/it.po  Thu Apr 21 12:49:00 2022 +
+++ b/modules/project_invoice/locale/it.po  Thu Apr 21 12:31:18 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2020-04-30 17:40+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.11.3\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:project.work,amount_to_invoice:"
 msgid "Amount to Invoice"
@@ -21,10 +21,9 @@
 msgid "Invoice Method"
 msgstr "Metodo di fatturazione"
 
-#, fuzzy
 msgctxt "field:project.work,invoice_timesheet_up_to:"
 msgid "Invoice up to"
-msgstr "Metodo di fatturazione"
+msgstr "Fattura fino a"
 
 msgctxt "field:project.work,invoiced_amount:"
 msgid "Invoiced Amount"
@@ -32,16 +31,15 @@
 
 msgctxt "field:project.work,invoiced_progress:"
 msgid "Invoiced Progress"
-msgstr ""
+msgstr "Progresso fatturato"
 
 msgctxt "field:project.work,project_invoice_method:"
 msgid "Invoice Method"
 msgstr "Metodo di fatturazione"
 
-#, fuzzy
 msgctxt "field:project.work,project_invoice_timesheet_up_to:"
 msgid "Invoice up to"
-msgstr "Metodo di fatturazione"
+msgstr "Fattura fino a"
 
 msgctxt "field:project.work,quantity_to_invoice:"
 msgid "Quantity to Invoice"
@@ -111,10 +109,9 @@
 msgid "Invoice"
 msgstr "Fattura"
 
-#, fuzzy
 msgctxt "model:project.work.invoiced_progress,name:"
 msgid "Work Invoiced Progress"
-msgstr "Progressi fatturati dal lavoro"
+msgstr "Avanzamento del lavoro fatturato"
 
 msgctxt "model:res.group,name:group_project_invoice"
 msgid "Project Invoice"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 8c536a8d5d44 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=8c536a8d5d44
description:
Translated using Weblate (Italian)

Currently translated at 100.0% (2 of 2 strings)

Translation: Tryton/product_price_list_parent
Translate-URL: 
https://translate.tryton.org/projects/tryton/product_price_list_parent/it/
diffstat:

 modules/product_price_list_parent/locale/it.po |  11 ++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diffs (24 lines):

diff -r 4fd2ab84eb4a -r 8c536a8d5d44 
modules/product_price_list_parent/locale/it.po
--- a/modules/product_price_list_parent/locale/it.poThu Apr 21 15:59:44 
2022 +
+++ b/modules/product_price_list_parent/locale/it.poThu Apr 21 12:49:00 
2022 +
@@ -1,6 +1,13 @@
 #
 msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8\n"
+msgstr ""
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Luca Cristaldi \n"
+"Language: it\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:product.price_list,parent:"
 msgid "Parent"
@@ -11,3 +18,5 @@
 "\n"
 "- parent_unit_price: the unit_price from the parent"
 msgstr ""
+"\n"
+"- parent_unit_price: il prezzo unitario dal padre"



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Hodei Navarro
changeset 4fd2ab84eb4a in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=4fd2ab84eb4a
description:
Translated using Weblate (Spanish)

Currently translated at 100.0% (32 of 32 strings)

Translation: Tryton/product_measurements
Translate-URL: 
https://translate.tryton.org/projects/tryton/product_measurements/es/
diffstat:

 modules/product_measurements/locale/es.po |  41 ++
 1 files changed, 19 insertions(+), 22 deletions(-)

diffs (158 lines):

diff -r 2e8d8ffaf9bd -r 4fd2ab84eb4a modules/product_measurements/locale/es.po
--- a/modules/product_measurements/locale/es.po Thu Apr 21 12:43:24 2022 +
+++ b/modules/product_measurements/locale/es.po Thu Apr 21 15:59:44 2022 +
@@ -1,12 +1,18 @@
 #
 msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8\n"
+msgstr ""
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Hodei Navarro \n"
+"Language: es\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:product.product,height:"
 msgid "Height"
 msgstr "Altura"
 
-#, fuzzy
 msgctxt "field:product.product,height_uom:"
 msgid "Height UOM"
 msgstr "UdM de la altura"
@@ -15,7 +21,6 @@
 msgid "Length"
 msgstr "Longitud"
 
-#, fuzzy
 msgctxt "field:product.product,length_uom:"
 msgid "Length UOM"
 msgstr "UdM de la longitud"
@@ -24,7 +29,6 @@
 msgid "Volume"
 msgstr "Volumen"
 
-#, fuzzy
 msgctxt "field:product.product,volume_uom:"
 msgid "Volume UOM"
 msgstr "UdM del volumen"
@@ -33,7 +37,6 @@
 msgid "Weight"
 msgstr "Peso"
 
-#, fuzzy
 msgctxt "field:product.product,weight_uom:"
 msgid "Weight UOM"
 msgstr "UdM del peso"
@@ -42,7 +45,6 @@
 msgid "Width"
 msgstr "Ancho"
 
-#, fuzzy
 msgctxt "field:product.product,width_uom:"
 msgid "Width UOM"
 msgstr "UdM del ancho"
@@ -51,7 +53,6 @@
 msgid "Height"
 msgstr "Altura"
 
-#, fuzzy
 msgctxt "field:product.template,height_uom:"
 msgid "Height UOM"
 msgstr "UdM de la altura"
@@ -60,7 +61,6 @@
 msgid "Length"
 msgstr "Longitud"
 
-#, fuzzy
 msgctxt "field:product.template,length_uom:"
 msgid "Length UOM"
 msgstr "UdM de la longitud"
@@ -69,7 +69,6 @@
 msgid "Volume"
 msgstr "Volumen"
 
-#, fuzzy
 msgctxt "field:product.template,volume_uom:"
 msgid "Volume UOM"
 msgstr "UdM del volumen"
@@ -78,7 +77,6 @@
 msgid "Weight"
 msgstr "Peso"
 
-#, fuzzy
 msgctxt "field:product.template,weight_uom:"
 msgid "Weight UOM"
 msgstr "UdM del peso"
@@ -87,50 +85,49 @@
 msgid "Width"
 msgstr "Ancho"
 
-#, fuzzy
 msgctxt "field:product.template,width_uom:"
 msgid "Width UOM"
 msgstr "UdM del ancho"
 
 msgctxt "help:product.product,height:"
 msgid "Height for 1 default UOM."
-msgstr ""
+msgstr "Altura para 1 UdM por defecto."
 
 msgctxt "help:product.product,length:"
 msgid "Length for 1 default UOM."
-msgstr ""
+msgstr "Longitud para 1 UdM por defecto."
 
 msgctxt "help:product.product,volume:"
 msgid "Volume for 1 default UOM."
-msgstr ""
+msgstr "Volumen para 1 UdM por defecto."
 
 msgctxt "help:product.product,weight:"
 msgid "Weight for 1 default UOM."
-msgstr ""
+msgstr "Peso para 1 UdM por defecto."
 
 msgctxt "help:product.product,width:"
 msgid "Width for 1 default UOM."
-msgstr ""
+msgstr "Ancho para 1 UdM por defecto."
 
 msgctxt "help:product.template,height:"
 msgid "Height for 1 default UOM."
-msgstr ""
+msgstr "Altura para 1 UdM por defecto."
 
 msgctxt "help:product.template,length:"
 msgid "Length for 1 default UOM."
-msgstr ""
+msgstr "Longitud para 1 UdM por defecto."
 
 msgctxt "help:product.template,volume:"
 msgid "Volume for 1 default UOM."
-msgstr ""
+msgstr "Volumen para 1 UdM por defecto."
 
 msgctxt "help:product.template,weight:"
 msgid "Weight for 1 default UOM."
-msgstr ""
+msgstr "Peso para 1 UdM por defecto."
 
 msgctxt "help:product.template,width:"
 msgid "Width for 1 default UOM."
-msgstr ""
+msgstr "Ancho para 1 UdM por defecto."
 
 msgctxt "view:product.template:"
 msgid "Measurements"
@@ -138,7 +135,7 @@
 
 msgctxt "view:product.template:"
 msgid "Measurements for 1 default UOM."
-msgstr ""
+msgstr "Medidas para 1 UdM por defecto."
 
 #~ msgctxt "field:product.product,height_digits:"
 #~ msgid "Height Digits"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 2e8d8ffaf9bd in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=2e8d8ffaf9bd
description:
Translated using Weblate (Italian)

Currently translated at 100.0% (10 of 10 strings)

Translation: Tryton/production_split
Translate-URL: 
https://translate.tryton.org/projects/tryton/production_split/it/
diffstat:

 modules/production_split/locale/it.po |  18 --
 1 files changed, 8 insertions(+), 10 deletions(-)

diffs (65 lines):

diff -r 5c071f23a707 -r 2e8d8ffaf9bd modules/production_split/locale/it.po
--- a/modules/production_split/locale/it.po Thu Apr 21 12:27:31 2022 +
+++ b/modules/production_split/locale/it.po Thu Apr 21 12:43:24 2022 +
@@ -1,17 +1,17 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2020-04-30 17:40+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.11.3\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:production.split.start,count:"
 msgid "Count"
-msgstr ""
+msgstr "Conteggio"
 
 msgctxt "field:production.split.start,quantity:"
 msgid "Quantity"
@@ -19,15 +19,15 @@
 
 msgctxt "field:production.split.start,uom:"
 msgid "Uom"
-msgstr ""
+msgstr "UdM"
 
 msgctxt "field:production.split.start,uom_category:"
 msgid "Uom Category"
-msgstr ""
+msgstr "Categoria UdM"
 
 msgctxt "help:production.split.start,count:"
 msgid "The limit number of productions"
-msgstr ""
+msgstr "Il numero limite di produzioni"
 
 msgctxt "model:ir.action,name:wizard_split_production"
 msgid "Split Production"
@@ -37,19 +37,17 @@
 msgid "Split"
 msgstr "Split"
 
-#, fuzzy
 msgctxt "model:production.split.start,name:"
 msgid "Split Production"
-msgstr "Split Production"
+msgstr "Dividi produzione"
 
 msgctxt "wizard_button:production.split,start,end:"
 msgid "Cancel"
 msgstr "Annulla"
 
-#, fuzzy
 msgctxt "wizard_button:production.split,start,split:"
 msgid "Split"
-msgstr "Split"
+msgstr "Dividi"
 
 #, fuzzy
 #~ msgctxt "field:production.split.start,unit_digits:"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 5c071f23a707 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=5c071f23a707
description:
Translated using Weblate (Italian)

Currently translated at 78.4% (109 of 139 strings)

Translation: Tryton/production
Translate-URL: 
https://translate.tryton.org/projects/tryton/production/it/
diffstat:

 modules/production/locale/it.po |  8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (37 lines):

diff -r b3376abc1992 -r 5c071f23a707 modules/production/locale/it.po
--- a/modules/production/locale/it.po   Thu Apr 21 12:27:45 2022 +
+++ b/modules/production/locale/it.po   Thu Apr 21 12:27:31 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-01-27 14:15+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.10.1\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:product.product,boms:"
 msgid "BOMs"
@@ -159,7 +159,7 @@
 
 msgctxt "field:production.bom.input,uom:"
 msgid "Uom"
-msgstr "Udm"
+msgstr "UdM"
 
 msgctxt "field:production.bom.input,uom_category:"
 msgid "Uom Category"
@@ -199,7 +199,7 @@
 
 msgctxt "field:production.bom.tree,uom:"
 msgid "Uom"
-msgstr "Udm"
+msgstr "UdM"
 
 msgctxt "field:production.bom.tree.open.start,bom:"
 msgid "BOM"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset b3376abc1992 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=b3376abc1992
description:
Translated using Weblate (Italian)

Currently translated at 82.5% (66 of 80 strings)

Translation: Tryton/customs
Translate-URL: https://translate.tryton.org/projects/tryton/customs/it/
diffstat:

 modules/customs/locale/it.po |  11 +--
 1 files changed, 9 insertions(+), 2 deletions(-)

diffs (27 lines):

diff -r 210726313ee4 -r b3376abc1992 modules/customs/locale/it.po
--- a/modules/customs/locale/it.po  Thu Apr 21 15:58:19 2022 +
+++ b/modules/customs/locale/it.po  Thu Apr 21 12:27:45 2022 +
@@ -1,6 +1,13 @@
 #
 msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8\n"
+msgstr ""
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: Luca Cristaldi \n"
+"Language: it\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:customs.duty.rate,amount:"
 msgid "Amount"
@@ -36,7 +43,7 @@
 
 msgctxt "field:customs.duty.rate,uom:"
 msgid "Uom"
-msgstr "udm"
+msgstr "UdM"
 
 msgctxt "field:customs.tariff.code,code:"
 msgid "Code"



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Hodei Navarro
changeset 210726313ee4 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=210726313ee4
description:
Translated using Weblate (Spanish)

Currently translated at 89.8% (150 of 167 strings)

Translation: Tryton/country
Translate-URL: https://translate.tryton.org/projects/tryton/country/es/
diffstat:

 modules/country/locale/es.po |  23 +--
 1 files changed, 9 insertions(+), 14 deletions(-)

diffs (91 lines):

diff -r b367b5b3d37f -r 210726313ee4 modules/country/locale/es.po
--- a/modules/country/locale/es.po  Thu Apr 21 15:59:03 2022 +
+++ b/modules/country/locale/es.po  Thu Apr 21 15:58:19 2022 +
@@ -2,7 +2,7 @@
 msgid ""
 msgstr ""
 "PO-Revision-Date: 2022-04-22 13:09+\n"
-"Last-Translator: David Blanco Bautista \n"
+"Last-Translator: Hodei Navarro \n"
 "Language: es\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -238,10 +238,9 @@
 msgid "Canton"
 msgstr "Cantón"
 
-#, fuzzy
 msgctxt "selection:country.subdivision,type:"
 msgid "Capital"
-msgstr "Ciudad capital"
+msgstr "Capital"
 
 msgctxt "selection:country.subdivision,type:"
 msgid "Capital District"
@@ -259,7 +258,6 @@
 msgid "Capital city"
 msgstr "Ciudad capital"
 
-#, fuzzy
 msgctxt "selection:country.subdivision,type:"
 msgid "Chain (of islands)"
 msgstr "Cadenas (de islas)"
@@ -276,7 +274,6 @@
 msgid "City corporation"
 msgstr "Ciudad corporativa"
 
-#, fuzzy
 msgctxt "selection:country.subdivision,type:"
 msgid "City municipality"
 msgstr "Municipalidad"
@@ -307,7 +304,7 @@
 
 msgctxt "selection:country.subdivision,type:"
 msgid "Decentralized regional entity"
-msgstr ""
+msgstr "Entidad regional descentralizada"
 
 msgctxt "selection:country.subdivision,type:"
 msgid "Department"
@@ -336,11 +333,11 @@
 
 msgctxt "selection:country.subdivision,type:"
 msgid "District with special status"
-msgstr ""
+msgstr "Distrito con estado especial"
 
 msgctxt "selection:country.subdivision,type:"
 msgid "Districts under republic administration"
-msgstr ""
+msgstr "Distritos bajo república administrativa"
 
 msgctxt "selection:country.subdivision,type:"
 msgid "Division"
@@ -404,7 +401,7 @@
 
 msgctxt "selection:country.subdivision,type:"
 msgid "Group of islands (20 inhabited islands)"
-msgstr ""
+msgstr "Grupo de islas (20 islas deshabitadas)"
 
 msgctxt "selection:country.subdivision,type:"
 msgid "Included for completeness"
@@ -426,15 +423,13 @@
 msgid "Island group"
 msgstr "Grupo de islas"
 
-#, fuzzy
 msgctxt "selection:country.subdivision,type:"
 msgid "Islands, groups of islands"
-msgstr "Grupo de islas"
-
-#, fuzzy
+msgstr "Islas, grupo de islas"
+
 msgctxt "selection:country.subdivision,type:"
 msgid "Land"
-msgstr "Landes"
+msgstr "Territorio"
 
 msgctxt "selection:country.subdivision,type:"
 msgid "Local council"



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread David Blanco Bautista
changeset b367b5b3d37f in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=b367b5b3d37f
description:
Translated using Weblate (Spanish)

Currently translated at 89.8% (150 of 167 strings)

Translation: Tryton/country
Translate-URL: https://translate.tryton.org/projects/tryton/country/es/
diffstat:

 modules/country/locale/es.po |  29 -
 1 files changed, 12 insertions(+), 17 deletions(-)

diffs (80 lines):

diff -r 477b0ae3965a -r b367b5b3d37f modules/country/locale/es.po
--- a/modules/country/locale/es.po  Thu Apr 21 12:13:04 2022 +
+++ b/modules/country/locale/es.po  Thu Apr 21 15:59:03 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-04-25 17:04+\n"
-"Last-Translator: Hodei Navarro \n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
+"Last-Translator: David Blanco Bautista \n"
 "Language: es\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.6\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:country.country,code3:"
 msgid "3-letters Code"
@@ -190,10 +190,9 @@
 msgid "Autonomous Region"
 msgstr "Región autónoma"
 
-#, fuzzy
 msgctxt "selection:country.subdivision,type:"
 msgid "Autonomous city in north africa"
-msgstr "Distrito autónomo"
+msgstr "Ciudad autónoma del norte de África"
 
 msgctxt "selection:country.subdivision,type:"
 msgid "Autonomous communities"
@@ -375,19 +374,17 @@
 msgid "Federal Territories"
 msgstr "Territorios federales"
 
-#, fuzzy
 msgctxt "selection:country.subdivision,type:"
 msgid "Federal Territory"
-msgstr "Territorios federales"
-
-#, fuzzy
+msgstr "Territorio federal"
+
 msgctxt "selection:country.subdivision,type:"
 msgid "Federal capital territory"
-msgstr "Australian Capital Territory"
+msgstr "Territorio de capital federal"
 
 msgctxt "selection:country.subdivision,type:"
 msgid "Free municipal consortium"
-msgstr ""
+msgstr "Consorcio municipal libre"
 
 msgctxt "selection:country.subdivision,type:"
 msgid "Geographical entity"
@@ -678,19 +675,17 @@
 msgid "Unitary authority (wales)"
 msgstr "Autoridad unitaria (Gales)"
 
-#, fuzzy
 msgctxt "selection:country.subdivision,type:"
 msgid "Urban community"
-msgstr "Comunidad autónoma"
-
-#, fuzzy
+msgstr "Comunidad urbana"
+
 msgctxt "selection:country.subdivision,type:"
 msgid "Urban municipality"
-msgstr "Nairobi Municipality"
+msgstr "Municipalidad urbana"
 
 msgctxt "selection:country.subdivision,type:"
 msgid "Voivodship"
-msgstr ""
+msgstr "Voivodato"
 
 #, fuzzy
 msgctxt "selection:country.subdivision,type:"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 477b0ae3965a in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=477b0ae3965a
description:
Translated using Weblate (Italian)

Currently translated at 100.0% (16 of 16 strings)

Translation: Tryton/carrier_weight
Translate-URL: 
https://translate.tryton.org/projects/tryton/carrier_weight/it/
diffstat:

 modules/carrier_weight/locale/it.po |  7 +++
 1 files changed, 3 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r ed4083f9e916 -r 477b0ae3965a modules/carrier_weight/locale/it.po
--- a/modules/carrier_weight/locale/it.po   Thu Apr 21 16:01:11 2022 +
+++ b/modules/carrier_weight/locale/it.po   Thu Apr 21 12:13:04 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2020-04-30 17:40+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.11.3\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:carrier,weight_currency:"
 msgid "Currency"
@@ -29,7 +29,6 @@
 msgid "Carrier"
 msgstr "Vettore"
 
-#, fuzzy
 msgctxt "field:carrier.weight_price_list,currency:"
 msgid "Currency"
 msgstr "Valuta"
@@ -52,7 +51,7 @@
 
 msgctxt "help:carrier,weight_uom:"
 msgid "The unit of weight criteria of the price list."
-msgstr ""
+msgstr "L'unità di peso utilizzata nel listino prezzi."
 
 msgctxt "help:carrier.weight_price_list,carrier:"
 msgid "The carrier that the price list belongs to."



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Sergi Almacellas Abellana
changeset ed4083f9e916 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=ed4083f9e916
description:
Translated using Weblate (Spanish)

Currently translated at 100.0% (36 of 36 strings)

Translation: Tryton/bank
Translate-URL: https://translate.tryton.org/projects/tryton/bank/es/
diffstat:

 modules/bank/locale/es.po |  3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r e8342a1abd25 -r ed4083f9e916 modules/bank/locale/es.po
--- a/modules/bank/locale/es.po Thu Apr 21 16:01:18 2022 +
+++ b/modules/bank/locale/es.po Thu Apr 21 16:01:11 2022 +
@@ -1,7 +1,7 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-04-20 10:33+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Sergi Almacellas Abellana \n"
 "Language: es\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -114,7 +114,6 @@
 msgid "The BIC \"%(bic)s\" is not valid."
 msgstr "El BIC \"%(bic)s\" no es válido."
 
-#, fuzzy
 msgctxt "model:ir.message,text:msg_invalid_iban"
 msgid "IBAN \"%(number)s\" is not valid."
 msgstr "El número IBAN \"%(number)s\" no es válido."



[tryton-commits] changeset in weblate:default Translated using Weblate (Catalan)

2022-04-22 Thread Sergi Almacellas Abellana
changeset e8342a1abd25 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=e8342a1abd25
description:
Translated using Weblate (Catalan)

Currently translated at 100.0% (36 of 36 strings)

Translation: Tryton/bank
Translate-URL: https://translate.tryton.org/projects/tryton/bank/ca/
diffstat:

 modules/bank/locale/ca.po |  3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diffs (20 lines):

diff -r 7ab58b3df0ac -r e8342a1abd25 modules/bank/locale/ca.po
--- a/modules/bank/locale/ca.po Thu Apr 21 12:15:23 2022 +
+++ b/modules/bank/locale/ca.po Thu Apr 21 16:01:18 2022 +
@@ -1,7 +1,7 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-04-20 10:33+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Sergi Almacellas Abellana \n"
 "Language: ca\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -113,7 +113,6 @@
 msgid "The BIC \"%(bic)s\" is not valid."
 msgstr "El BIC \"%(bic)s\" es invàlid."
 
-#, fuzzy
 msgctxt "model:ir.message,text:msg_invalid_iban"
 msgid "IBAN \"%(number)s\" is not valid."
 msgstr "El número IBAN \"%(number)s\" es invàlid."



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 7ab58b3df0ac in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=7ab58b3df0ac
description:
Translated using Weblate (Italian)

Currently translated at 100.0% (8 of 8 strings)

Translation: Tryton/authentication_sms
Translate-URL: 
https://translate.tryton.org/projects/tryton/authentication_sms/it/
diffstat:

 modules/authentication_sms/locale/it.po |  10 --
 1 files changed, 4 insertions(+), 6 deletions(-)

diffs (41 lines):

diff -r 4d3735b338b4 -r 7ab58b3df0ac modules/authentication_sms/locale/it.po
--- a/modules/authentication_sms/locale/it.po   Thu Apr 21 12:12:18 2022 +
+++ b/modules/authentication_sms/locale/it.po   Thu Apr 21 12:15:23 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-01-27 14:15+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.10.1\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:res.user,mobile:"
 msgid "Mobile"
@@ -25,19 +25,17 @@
 msgid "User ID"
 msgstr "ID utente"
 
-#, fuzzy
 msgctxt "help:res.user,mobile:"
 msgid "Phone number that supports receiving SMS."
-msgstr "numero telefonico abilitato alla ricezione SMS"
+msgstr "Numero telefonico abilitato alla ricezione di SMS."
 
-#, fuzzy
 msgctxt "model:ir.message,text:msg_sms_text"
 msgid "%(name)s code %(code)s"
 msgstr "%(name)s codice %(code)s"
 
 msgctxt "model:ir.message,text:msg_user_sms_code"
 msgid "SMS Code for %(login)s"
-msgstr ""
+msgstr "Codice SMS per %(login)s"
 
 msgctxt "model:res.user.login.sms_code,name:"
 msgid "SMS Code"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 4d3735b338b4 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=4d3735b338b4
description:
Translated using Weblate (Italian)

Currently translated at 100.0% (7 of 7 strings)

Translation: Tryton/account_statement_aeb43
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_statement_aeb43/it/
diffstat:

 modules/account_statement_aeb43/locale/it.po |  8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (35 lines):

diff -r c37cc7a8e6bf -r 4d3735b338b4 
modules/account_statement_aeb43/locale/it.po
--- a/modules/account_statement_aeb43/locale/it.po  Thu Apr 21 12:17:16 
2022 +
+++ b/modules/account_statement_aeb43/locale/it.po  Thu Apr 21 12:12:18 
2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2020-04-25 07:33+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.11.3\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt ""
 "model:account.statement.origin.information,selection:information_record_type"
@@ -70,13 +70,13 @@
 msgctxt ""
 "model:account.statement.origin.information,string:information_record_type"
 msgid "Record Type"
-msgstr ""
+msgstr "Tipo di record"
 
 msgctxt ""
 "model:account.statement.origin.information,string:"
 "information_second_reference"
 msgid "Second Reference"
-msgstr ""
+msgstr "Secondo riferimento"
 
 msgctxt "selection:account.statement.import.start,file_format:"
 msgid "AEB Norm 43"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset c37cc7a8e6bf in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=c37cc7a8e6bf
description:
Translated using Weblate (Italian)

Currently translated at 13.1% (19 of 144 strings)

Translation: Tryton/account_payment_stripe
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_payment_stripe/it/
diffstat:

 modules/account_payment_stripe/locale/it.po |  8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (33 lines):

diff -r 6e680a20f815 -r c37cc7a8e6bf modules/account_payment_stripe/locale/it.po
--- a/modules/account_payment_stripe/locale/it.po   Thu Apr 21 12:18:13 
2022 +
+++ b/modules/account_payment_stripe/locale/it.po   Thu Apr 21 12:17:16 
2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-01-27 14:15+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.10.1\n"
+"X-Generator: Weblate 4.11.2\n"
 
 #, fuzzy
 msgctxt "field:account.payment,stripe_account:"
@@ -219,11 +219,11 @@
 
 msgctxt "field:account.payment.stripe.refund,currency:"
 msgid "Currency"
-msgstr ""
+msgstr "Valuta"
 
 msgctxt "field:account.payment.stripe.refund,payment:"
 msgid "Payment"
-msgstr ""
+msgstr "Pagamento"
 
 msgctxt "field:account.payment.stripe.refund,reason:"
 msgid "Reason"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 6e680a20f815 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=6e680a20f815
description:
Translated using Weblate (Italian)

Currently translated at 40.3% (65 of 161 strings)

Translation: Tryton/account_payment
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_payment/it/
diffstat:

 modules/account_payment/locale/it.po |  7 +++
 1 files changed, 3 insertions(+), 4 deletions(-)

diffs (31 lines):

diff -r 4703b0f1d06d -r 6e680a20f815 modules/account_payment/locale/it.po
--- a/modules/account_payment/locale/it.po  Thu Apr 21 12:51:12 2022 +
+++ b/modules/account_payment/locale/it.po  Thu Apr 21 12:18:13 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2020-10-16 15:42+\n"
+"PO-Revision-Date: 2022-04-22 13:09+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.2.2\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:account.configuration,payment_group_sequence:"
 msgid "Payment Group Sequence"
@@ -581,10 +581,9 @@
 msgid "Party Reception Direct Debit"
 msgstr ""
 
-#, fuzzy
 msgctxt "model:res.group,name:group_payment"
 msgid "Payment"
-msgstr "Payment"
+msgstr "Pagamento"
 
 #, fuzzy
 msgctxt "model:res.group,name:group_payment_approval"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 4703b0f1d06d in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=4703b0f1d06d
description:
Translated using Weblate (Italian)

Currently translated at 100.0% (12 of 12 strings)

Translation: Tryton/account_invoice_stock
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_invoice_stock/it/
diffstat:

 modules/account_invoice_stock/locale/it.po |  22 ++
 1 files changed, 14 insertions(+), 8 deletions(-)

diffs (59 lines):

diff -r 3d204827f2a3 -r 4703b0f1d06d modules/account_invoice_stock/locale/it.po
--- a/modules/account_invoice_stock/locale/it.poThu Apr 21 12:10:12 
2022 +
+++ b/modules/account_invoice_stock/locale/it.poThu Apr 21 12:51:12 
2022 +
@@ -1,18 +1,25 @@
 #
 msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8\n"
+msgstr ""
+"PO-Revision-Date: 2022-04-22 13:08+\n"
+"Last-Translator: Luca Cristaldi \n"
+"Language: it\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:account.invoice,shipments:"
 msgid "Shipments"
-msgstr ""
+msgstr "Spedizioni"
 
 msgctxt "field:account.invoice.line,correction:"
 msgid "Correction"
-msgstr ""
+msgstr "Correzione"
 
 msgctxt "field:account.invoice.line,shipments:"
 msgid "Shipments"
-msgstr ""
+msgstr "Spedizioni"
 
 msgctxt "field:account.invoice.line,stock_moves:"
 msgid "Stock Moves"
@@ -20,7 +27,7 @@
 
 msgctxt "field:account.invoice.line,warehouse:"
 msgid "Warehouse"
-msgstr ""
+msgstr "Magazzino"
 
 msgctxt "field:account.invoice.line-stock.move,invoice_line:"
 msgid "Invoice Line"
@@ -34,14 +41,13 @@
 msgid "Invoice Lines"
 msgstr "Righe fattura"
 
-#, fuzzy
 msgctxt "field:stock.move,invoice_types:"
 msgid "Invoice Types"
-msgstr "Righe fattura"
+msgstr "Tipi di fattura"
 
 msgctxt "help:account.invoice.line,correction:"
 msgid "Check to correct price of already posted invoice."
-msgstr ""
+msgstr "Spunta per correggere il prezzo della fattura già registrata."
 
 msgctxt "model:account.invoice.line-stock.move,name:"
 msgid "Invoice Line - Stock Move"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 3d204827f2a3 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=3d204827f2a3
description:
Translated using Weblate (Italian)

Currently translated at 100.0% (21 of 21 strings)

Translation: Tryton/account_dunning_fee
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_dunning_fee/it/
diffstat:

 modules/account_dunning_fee/locale/it.po |  6 ++
 1 files changed, 2 insertions(+), 4 deletions(-)

diffs (26 lines):

diff -r e23eaa7bdd88 -r 3d204827f2a3 modules/account_dunning_fee/locale/it.po
--- a/modules/account_dunning_fee/locale/it.po  Thu Apr 21 12:17:49 2022 +
+++ b/modules/account_dunning_fee/locale/it.po  Thu Apr 21 12:10:12 2022 +
@@ -1,7 +1,7 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-04-21 12:08+\n"
+"PO-Revision-Date: 2022-04-22 13:08+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -73,12 +73,10 @@
 msgid "Fees"
 msgstr "Spese"
 
-#, fuzzy
 msgctxt "model:ir.message,text:msg_fee_dunning_level_unique"
 msgid "Fee must be unique by dunning and level."
-msgstr "L'addebito di spesa dev'essere unico per ogni sollecito e livello"
+msgstr "La spesa dev'essere univocha per ogni sollecito e livello."
 
-#, fuzzy
 msgctxt "model:ir.ui.menu,name:menu_dunning_fee_form"
 msgid "Fees"
 msgstr "Spese"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset e23eaa7bdd88 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=e23eaa7bdd88
description:
Translated using Weblate (Italian)

Currently translated at 50.0% (37 of 74 strings)

Translation: Tryton/account_dunning
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_dunning/it/
diffstat:

 modules/account_dunning/locale/it.po |  8 +++-
 1 files changed, 3 insertions(+), 5 deletions(-)

diffs (33 lines):

diff -r 01361547531a -r e23eaa7bdd88 modules/account_dunning/locale/it.po
--- a/modules/account_dunning/locale/it.po  Thu Apr 21 12:40:30 2022 +
+++ b/modules/account_dunning/locale/it.po  Thu Apr 21 12:17:49 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2020-10-16 15:42+\n"
+"PO-Revision-Date: 2022-04-22 13:08+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.2.2\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:account.configuration,default_dunning_procedure:"
 msgid "Default Dunning Procedure"
@@ -44,12 +44,10 @@
 msgid "Company"
 msgstr "Azienda"
 
-#, fuzzy
 msgctxt "field:account.dunning,currency:"
 msgid "Currency"
-msgstr "Posizioni decimali valuta"
+msgstr "Valuta"
 
-#, fuzzy
 msgctxt "field:account.dunning,date:"
 msgid "Date"
 msgstr "Data"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset 01361547531a in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=01361547531a
description:
Translated using Weblate (Italian)

Currently translated at 81.8% (9 of 11 strings)

Translation: Tryton/account_be
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_be/it/
diffstat:

 modules/account_be/locale/it.po |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r b22192113213 -r 01361547531a modules/account_be/locale/it.po
--- a/modules/account_be/locale/it.po   Thu Apr 21 12:19:05 2022 +
+++ b/modules/account_be/locale/it.po   Thu Apr 21 12:40:30 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2020-04-30 17:40+\n"
+"PO-Revision-Date: 2022-04-22 13:08+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.11.3\n"
+"X-Generator: Weblate 4.11.2\n"
 
 msgctxt "field:account.be.vat_customer,company_tax_identifier:"
 msgid "Company Tax Identifier"
@@ -23,7 +23,7 @@
 
 msgctxt "field:account.be.vat_customer,turnover:"
 msgid "Turnover"
-msgstr ""
+msgstr "Turnover"
 
 msgctxt "field:account.be.vat_customer,vat:"
 msgid "VAT"



[tryton-commits] changeset in weblate:default Translated using Weblate (Italian)

2022-04-22 Thread Luca Cristaldi
changeset b22192113213 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=b22192113213
description:
Translated using Weblate (Italian)

Currently translated at 57.1% (112 of 196 strings)

Translation: Tryton/account_asset
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_asset/it/
diffstat:

 modules/account_asset/locale/it.po |  5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)

diffs (24 lines):

diff -r a1bfc2a6e413 -r b22192113213 modules/account_asset/locale/it.po
--- a/modules/account_asset/locale/it.poThu Apr 21 16:02:30 2022 +
+++ b/modules/account_asset/locale/it.poThu Apr 21 12:19:05 2022 +
@@ -1,7 +1,7 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-04-21 12:08+\n"
+"PO-Revision-Date: 2022-04-22 13:08+\n"
 "Last-Translator: Luca Cristaldi \n"
 "Language: it\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -143,10 +143,9 @@
 msgid "Asset"
 msgstr "Immobilizzazione"
 
-#, fuzzy
 msgctxt "field:account.asset.line,currency:"
 msgid "Currency"
-msgstr "Posizioni valuta"
+msgstr "Valuta"
 
 msgctxt "field:account.asset.line,date:"
 msgid "Date"



[tryton-commits] changeset in weblate:default Translated using Weblate (Spanish)

2022-04-22 Thread Hodei Navarro
changeset a1bfc2a6e413 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=a1bfc2a6e413
description:
Translated using Weblate (Spanish)

Currently translated at 100.0% (224 of 224 strings)

Translation: Tryton/sao
Translate-URL: https://translate.tryton.org/projects/tryton/sao/es/
diffstat:

 sao/locale/es.po |  10 +-
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (34 lines):

diff -r a75dd7407d1a -r a1bfc2a6e413 sao/locale/es.po
--- a/sao/locale/es.po  Thu Apr 21 16:03:06 2022 +
+++ b/sao/locale/es.po  Thu Apr 21 16:02:30 2022 +
@@ -3,8 +3,8 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2021-10-28 06:10+\n"
-"PO-Revision-Date: 2022-04-21 16:02+\n"
-"Last-Translator: Sergi Almacellas Abellana \n"
+"PO-Revision-Date: 2022-04-22 13:08+\n"
+"Last-Translator: Hodei Navarro \n"
 "Language-Team: LANGUAGE \n"
 "Language: es\n"
 "MIME-Version: 1.0\n"
@@ -607,7 +607,7 @@
 msgid "%1 record imported"
 msgid_plural "%1 records imported"
 msgstr[0] "%1 registro importado"
-msgstr[1] "%1 registros importado"
+msgstr[1] "%1 registros importados"
 
 msgid "CSV Export: %1"
 msgstr "Exportación CSV: %1"
@@ -659,8 +659,8 @@
 
 msgid "%1 record saved"
 msgid_plural "%1 records saved"
-msgstr[0] "%1 registro guardado."
-msgstr[1] "%1 registros guardados."
+msgstr[0] "%1 registro guardado"
+msgstr[1] "%1 registros guardados"
 
 msgid "E-mail %1"
 msgstr "Correo electrónico %1"



[tryton-commits] changeset in weblate:default Translated using Weblate (Catalan)

2022-04-22 Thread David Blanco Bautista
changeset a75dd7407d1a in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=a75dd7407d1a
description:
Translated using Weblate (Catalan)

Currently translated at 100.0% (224 of 224 strings)

Translation: Tryton/sao
Translate-URL: https://translate.tryton.org/projects/tryton/sao/ca/
diffstat:

 sao/locale/ca.po |  16 +++-
 1 files changed, 7 insertions(+), 9 deletions(-)

diffs (51 lines):

diff -r 9002d38abd52 -r a75dd7407d1a sao/locale/ca.po
--- a/sao/locale/ca.po  Thu Apr 21 16:06:16 2022 +
+++ b/sao/locale/ca.po  Thu Apr 21 16:03:06 2022 +
@@ -3,8 +3,8 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2021-11-04 08:35+\n"
-"PO-Revision-Date: 2022-04-20 10:33+\n"
-"Last-Translator: Sergi Almacellas Abellana \n"
+"PO-Revision-Date: 2022-04-22 13:08+\n"
+"Last-Translator: David Blanco Bautista \n"
 "Language-Team: LANGUAGE \n"
 "Language: ca\n"
 "MIME-Version: 1.0\n"
@@ -518,7 +518,7 @@
 msgstr ": "
 
 msgid "Customize"
-msgstr ""
+msgstr "Personalitza"
 
 msgid "More"
 msgstr "Més"
@@ -604,11 +604,10 @@
 msgid "Import failed"
 msgstr "Ha fallat la importació"
 
-#, fuzzy
 msgid "%1 record imported"
 msgid_plural "%1 records imported"
-msgstr[0] "%1 (nom del registre)"
-msgstr[1] "%1 (nom del registre)"
+msgstr[0] "%1 registre importat"
+msgstr[1] "%1 registres importats"
 
 msgid "CSV Export: %1"
 msgstr "Exportació CSV: %1"
@@ -658,11 +657,10 @@
 msgid "Override %1 definition?"
 msgstr "Voleu sobreescriure la definició %1?"
 
-#, fuzzy
 msgid "%1 record saved"
 msgid_plural "%1 records saved"
-msgstr[0] "Registre desat."
-msgstr[1] "Registre desat."
+msgstr[0] "%1 registre desat"
+msgstr[1] "%1 registres desats"
 
 msgid "E-mail %1"
 msgstr "Correu electrònic %1"



[tryton-commits] changeset in trytond:default Correctly indent tutorial entry in ...

2022-04-22 Thread Cédric Krier
changeset 92710378cff8 in trytond:default
details: https://hg.tryton.org/trytond?cmd=changeset=92710378cff8
description:
Correctly indent tutorial entry in documentation index
diffstat:

 doc/index.rst |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (14 lines):

diff -r 51be8a376b81 -r 92710378cff8 doc/index.rst
--- a/doc/index.rst Thu Apr 21 10:01:42 2022 +0200
+++ b/doc/index.rst Fri Apr 22 09:34:19 2022 +0200
@@ -13,8 +13,8 @@
   :ref:`Setup a database ` |
   :ref:`Start the server `
 
-* **Tutorials:**
-  :ref:`Create a module `
+* **Tutorials:**
+  :ref:`Create a module `
 
 The model layer
 ===