[tryton-commits] changeset in modules/account_invoice:default Rename split lines ...

2022-01-25 Thread David Blanco Bautista
changeset 8e9d429ef1b5 in modules/account_invoice:default
details: 
https://hg.tryton.org/modules/account_invoice?cmd=changeset=8e9d429ef1b5
description:
Rename split lines into reschedule lines

issue11069
review387661002
diffstat:

 __init__.py |2 +-
 account.py  |8 +-
 doc/design.rst  |4 +-
 invoice.py  |2 +-
 tests/scenario_invoice_reschedule_lines.rst |  110 
 tests/scenario_invoice_split_lines.rst  |  109 ---
 tests/test_account_invoice.py   |2 +-
 7 files changed, 119 insertions(+), 118 deletions(-)

diffs (299 lines):

diff -r 02be5467be12 -r 8e9d429ef1b5 __init__.py
--- a/__init__.py   Tue Jan 25 23:30:35 2022 +0100
+++ b/__init__.py   Wed Jan 26 00:32:20 2022 +0100
@@ -47,7 +47,7 @@
 party.Replace,
 party.Erase,
 account.RenewFiscalYear,
-account.SplitLines,
+account.RescheduleLines,
 module='account_invoice', type_='wizard')
 Pool.register(
 invoice.InvoiceReport,
diff -r 02be5467be12 -r 8e9d429ef1b5 account.py
--- a/account.pyTue Jan 25 23:30:35 2022 +0100
+++ b/account.pyWed Jan 26 00:32:20 2022 +0100
@@ -413,14 +413,14 @@
 return fiscalyear
 
 
-class SplitLines(metaclass=PoolMeta):
-__name__ = 'account.move.line.split'
+class RescheduleLines(metaclass=PoolMeta):
+__name__ = 'account.move.line.reschedule'
 
 @classmethod
-def split_lines(cls, lines, journal, terms):
+def reschedule_lines(cls, lines, journal, terms):
 pool = Pool()
 Invoice = pool.get('account.invoice')
-move, balance_line = super().split_lines(lines, journal, terms)
+move, balance_line = super().reschedule_lines(lines, journal, terms)
 
 move_ids = list({l.move.id for l in lines})
 invoices = Invoice.search(['OR',
diff -r 02be5467be12 -r 8e9d429ef1b5 doc/design.rst
--- a/doc/design.rstTue Jan 25 23:30:35 2022 +0100
+++ b/doc/design.rstWed Jan 26 00:32:20 2022 +0100
@@ -108,8 +108,8 @@
 ^^^
 
 The *Reschedule Lines to Pay* wizard allows to modify the payment terms of the
-remaining lines to pay using the `Split Lines `
-wizard.
+remaining lines to pay using the `Reschedule Lines
+` wizard.
 
 Reports
 ---
diff -r 02be5467be12 -r 8e9d429ef1b5 invoice.py
--- a/invoice.pyTue Jan 25 23:30:35 2022 +0100
+++ b/invoice.pyWed Jan 26 00:32:20 2022 +0100
@@ -3226,7 +3226,7 @@
 class RescheduleLinesToPay(Wizard):
 "Reschedule Lines to Pay"
 __name__ = 'account.invoice.lines_to_pay.reschedule'
-start = StateAction('account.act_split_lines_wizard')
+start = StateAction('account.act_reschedule_lines_wizard')
 
 def do_start(self, action):
 return action, {
diff -r 02be5467be12 -r 8e9d429ef1b5 tests/scenario_invoice_reschedule_lines.rst
--- /dev/null   Thu Jan 01 00:00:00 1970 +
+++ b/tests/scenario_invoice_reschedule_lines.rst   Wed Jan 26 00:32:20 
2022 +0100
@@ -0,0 +1,110 @@
+=
+Invoice Reschedule Lines Scenario
+=
+
+Imports::
+
+>>> from decimal import Decimal
+>>> from proteus import Model, Wizard
+>>> from trytond.tests.tools import activate_modules
+>>> from trytond.modules.company.tests.tools import (
+... create_company, get_company)
+>>> from trytond.modules.account.tests.tools import (
+... create_fiscalyear, create_chart, get_accounts)
+>>> from trytond.modules.account_invoice.tests.tools import (
+... set_fiscalyear_invoice_sequences)
+
+Activate modules::
+
+>>> config = activate_modules('account_invoice')
+
+>>> Invoice = Model.get('account.invoice')
+>>> Journal = Model.get('account.journal')
+>>> PaymentMethod = Model.get('account.invoice.payment.method')
+
+Create company::
+
+>>> _ = create_company()
+>>> company = get_company()
+
+Create fiscal year::
+
+>>> fiscalyear = set_fiscalyear_invoice_sequences(
+... create_fiscalyear(company))
+>>> fiscalyear.click('create_period')
+>>> period = fiscalyear.periods[0]
+
+Create chart of accounts::
+
+>>> _ = create_chart(company)
+>>> accounts = get_accounts(company)
+
+>>> journal_cash, = Journal.find([
+... ('code', '=', 'CASH'),
+... ])
+
+>>> payment_method = PaymentMethod()
+>>> payment_method.name = "Cash"
+>>> payment_method.journal = journal_cash
+>>> payment_method.credit_account = accounts['cash']
+>>> payment_method.debit_account = accounts['cash']
+>>> payment_method.save()
+
+Create party::
+
+>>> Party = Model.get('party.party')
+>>> party = Party(name='Party')
+>>> party.save()
+
+Post customer invoice::
+
+>>> invoice = Invoice()
+>>> invoice.party = party
+  

[tryton-commits] changeset in modules/account_dunning:default Rename split lines ...

2022-01-25 Thread David Blanco Bautista
changeset e4380a78b2e3 in modules/account_dunning:default
details: 
https://hg.tryton.org/modules/account_dunning?cmd=changeset=e4380a78b2e3
description:
Rename split lines into reschedule lines

issue11069
review387661002
diffstat:

 dunning.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 56b05f83e119 -r e4380a78b2e3 dunning.py
--- a/dunning.pySun Jan 23 12:54:56 2022 +0100
+++ b/dunning.pyWed Jan 26 00:32:20 2022 +0100
@@ -410,7 +410,7 @@
 class RescheduleDunning(Wizard):
 "Reschedule Account Dunning"
 __name__ = 'account.dunning.reschedule'
-start = StateAction('account.act_split_lines_wizard')
+start = StateAction('account.act_reschedule_lines_wizard')
 
 def do_start(self, action):
 return action, {



[tryton-commits] changeset in modules/account:default Rename split lines into res...

2022-01-25 Thread David Blanco Bautista
changeset e5e847225401 in modules/account:default
details: https://hg.tryton.org/modules/account?cmd=changeset=e5e847225401
description:
Rename split lines into reschedule lines

issue11069
review387661002
diffstat:

 CHANGELOG  |1 +
 __init__.py|8 +-
 doc/design/move.rst|   11 +-
 exceptions.py  |2 +-
 message.xml|   20 +-
 move.py|   70 ++--
 move.xml   |   36 +++---
 tests/scenario_move_line_reschedule.rst|  157 +
 tests/scenario_move_line_split.rst |  157 -
 tests/test_account.py  |2 +-
 view/move_line_reschedule_preview_form.xml |   13 ++
 view/move_line_reschedule_start_form.xml   |   21 +++
 view/move_line_reschedule_term_list.xml|7 +
 view/move_line_split_preview_form.xml  |   13 --
 view/move_line_split_start_form.xml|   21 ---
 view/move_line_split_term_list.xml |7 -
 16 files changed, 274 insertions(+), 272 deletions(-)

diffs (782 lines):

diff -r 0ba0491cd956 -r e5e847225401 CHANGELOG
--- a/CHANGELOG Sun Jan 23 13:03:06 2022 +0100
+++ b/CHANGELOG Wed Jan 26 00:32:20 2022 +0100
@@ -1,3 +1,4 @@
+* Rename split lines into reschedule lines
 * Add optional credit type on account
 * Always require a date to compute taxes
 * Add support for Python 3.10
diff -r 0ba0491cd956 -r e5e847225401 __init__.py
--- a/__init__.py   Sun Jan 23 13:03:06 2022 +0100
+++ b/__init__.py   Wed Jan 26 00:32:20 2022 +0100
@@ -59,9 +59,9 @@
 move.ReconcileShow,
 move.CancelMovesDefault,
 move.GroupLinesStart,
-move.SplitLinesStart,
-move.SplitLinesPreview,
-move.SplitLinesTerm,
+move.RescheduleLinesStart,
+move.RescheduleLinesPreview,
+move.RescheduleLinesTerm,
 tax.TaxGroup,
 tax.TaxCodeTemplate,
 tax.TaxCode,
@@ -102,7 +102,7 @@
 move.Reconcile,
 move.CancelMoves,
 move.GroupLines,
-move.SplitLines,
+move.RescheduleLines,
 move_template.CreateMove,
 tax.OpenChartTaxCode,
 tax.OpenTaxCode,
diff -r 0ba0491cd956 -r e5e847225401 doc/design/move.rst
--- a/doc/design/move.rst   Sun Jan 23 13:03:06 2022 +0100
+++ b/doc/design/move.rst   Wed Jan 26 00:32:20 2022 +0100
@@ -97,13 +97,14 @@
 The maturity date used for the newly created account move line is the
 earliest maturity date from the lines that were grouped together.
 
-.. _wizard-account.move.line.split:
+.. _wizard-account.move.line.reschedule:
 
-Split Lines
-^^^
+Reschedule Lines
+
 
-The *Split Lines* wizard allows to reschedule payable or receivable *Account
-Move Lines* by creating an account move line for each new maturity date.
+The *Reschedule Lines* wizard allows to reschedule payable or receivable
+*Account Move Lines* by creating an account move line for each new maturity
+date.
 
 .. _wizard-account.move.reconcile_lines:
 
diff -r 0ba0491cd956 -r e5e847225401 exceptions.py
--- a/exceptions.py Sun Jan 23 13:03:06 2022 +0100
+++ b/exceptions.py Wed Jan 26 00:32:20 2022 +0100
@@ -93,5 +93,5 @@
 pass
 
 
-class SplitLineError(UserError):
+class RescheduleLineError(UserError):
 pass
diff -r 0ba0491cd956 -r e5e847225401 message.xml
--- a/message.xml   Sun Jan 23 13:03:06 2022 +0100
+++ b/message.xml   Wed Jan 26 00:32:20 2022 +0100
@@ -202,20 +202,20 @@
 
 You cannot group lines from more than 2 
different accounts.
 
-
-You cannot split lines with different 
origins.
+
+You cannot reschedule lines with different 
origins.
 
-
-You cannot split lines with different 
currencies.
+
+You cannot reschedule lines with different 
currencies.
 
-
-You cannot split lines with different 
accounts.
+
+You cannot reschedule lines with different 
accounts.
 
-
-You cannot split lines with different 
parties.
+
+You cannot reschedule lines with different 
parties.
 
-
-To split the lines you must change the terms to 
have a total amount of %(total_amount)s instead of %(amount)s.
+
+To reschedule the lines you must change the 
terms to have a total amount of %(total_amount)s instead of %(amount)s.
 
 
 The moves "%(moves)s" contain grouped lines, 
cancelling them will ungroup the lines.
diff -r 0ba0491cd956 -r e5e847225401 move.py
--- a/move.py   Sun Jan 23 13:03:06 2022 +0100
+++ b/move.py   Wed Jan 26 00:32:20 2022 +0100
@@ -29,7 +29,7 @@
 from .exceptions import (
 CancelDelegatedWarning, 

[tryton-commits] changeset in modules/account_invoice:default Warn all past payme...

2022-01-25 Thread Adrià Tarroja Caubet
changeset 02be5467be12 in modules/account_invoice:default
details: 
https://hg.tryton.org/modules/account_invoice?cmd=changeset=02be5467be12
description:
Warn all past payment terms at the same time

issue11058
review376221002
diffstat:

 invoice.py |  22 --
 1 files changed, 12 insertions(+), 10 deletions(-)

diffs (37 lines):

diff -r 44c2a67ad783 -r 02be5467be12 invoice.py
--- a/invoice.pySun Jan 23 12:54:56 2022 +0100
+++ b/invoice.pyTue Jan 25 23:30:35 2022 +0100
@@ -1034,21 +1034,23 @@
 remainder_total_currency = self.total_amount.copy_sign(total)
 else:
 remainder_total_currency = 0
+past_payment_term_dates = []
 for date, amount in term_lines:
-if self.type == 'out' and date < today:
-lang = Lang.get()
-warning_key = Warning.format('invoice_payment_term', [self])
-if Warning.check(warning_key):
-raise InvoicePaymentTermDateWarning(warning_key,
-gettext('account_invoice'
-'.msg_invoice_payment_term_date_past',
-invoice=self.rec_name,
-date=lang.strftime(date)))
-
 line = self._get_move_line(date, amount)
 if line.amount_second_currency:
 remainder_total_currency += line.amount_second_currency
 move_lines.append(line)
+if self.type == 'out' and date < today:
+past_payment_term_dates.append(date)
+if any(past_payment_term_dates):
+lang = Lang.get()
+warning_key = Warning.format('invoice_payment_term', [self])
+if Warning.check(warning_key):
+raise InvoicePaymentTermDateWarning(warning_key,
+gettext('account_invoice'
+'.msg_invoice_payment_term_date_past',
+invoice=self.rec_name,
+date=lang.strftime(min(past_payment_term_dates
 if not self.currency.is_zero(remainder_total_currency):
 move_lines[-1].amount_second_currency -= \
 remainder_total_currency



[tryton-commits] changeset in modules/account_invoice_defer:default Add company t...

2022-01-25 Thread Raimon Esteve
changeset 0af0af5a339b in modules/account_invoice_defer:default
details: 
https://hg.tryton.org/modules/account_invoice_defer?cmd=changeset=0af0af5a339b
description:
Add company to on_change_invoice_line depends

issue11006
review374381002
diffstat:

 account.py |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 3f629cbcbe63 -r 0af0af5a339b account.py
--- a/account.pyMon Jan 03 22:44:27 2022 +0100
+++ b/account.pyTue Jan 25 23:26:47 2022 +0100
@@ -164,7 +164,7 @@
 if journals:
 self.journal, = journals
 
-@fields.depends('invoice_line', 'start_date')
+@fields.depends('invoice_line', 'start_date', 'company')
 def on_change_invoice_line(self):
 pool = Pool()
 Currency = pool.get('currency.currency')
@@ -172,7 +172,7 @@
 if not self.start_date:
 self.start_date = self.invoice_line.invoice.invoice_date
 invoice = self.invoice_line.invoice
-if invoice.currency != self.company.currency:
+if self.company and invoice.currency != self.company.currency:
 with Transaction().set_context(date=invoice.currency_date):
 self.amount = Currency.compute(
 invoice.currency, self.invoice_line.amount,



[tryton-commits] changeset in www.tryton.org:default Ensure all tables have table...

2022-01-25 Thread David Harper
changeset 4fa58cecde7e in www.tryton.org:default
details: https://hg.tryton.org/www.tryton.org?cmd=changeset=4fa58cecde7e
description:
Ensure all tables have table classes

Bootstrap classes applied to tr and td elements in tables without a 
table class are not applied in bootstrap 5.

issue11150
review387791002
diffstat:

 templates/guidelines/help.html |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 364a53fdda62 -r 4fa58cecde7e templates/guidelines/help.html
--- a/templates/guidelines/help.htmlTue Jan 25 15:52:05 2022 +
+++ b/templates/guidelines/help.htmlTue Jan 25 15:52:52 2022 +
@@ -74,7 +74,7 @@
 Fields
 
 Avoid using this or that when referring 
to the field's value because the help text may be used when the value is not 
visible:
-
+
 
 Use:
 "The last date when the MODEL-NAME can be 
used."
@@ -85,7 +85,7 @@
 On selection fields don't refer to the selection's options, these 
may change depending on what modules are activated.
 Help text for fields should describe either what is contained in 
the field or what it is used for.
 Avoid using verbs for these:
-
+
 
 Use:
 "Used to group stock moves together."



[tryton-commits] changeset in www.tryton.org:default Replace jumbotron with padding

2022-01-25 Thread David Harper
changeset 364a53fdda62 in www.tryton.org:default
details: https://hg.tryton.org/www.tryton.org?cmd=changeset=364a53fdda62
description:
Replace jumbotron with padding

The jumbotron has been removed in bootstrap 5 as it can be replicated 
using classes for padding and rounded corners.

issue11150

review360791003
diffstat:

 templates/index.html |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r e9142f9b1590 -r 364a53fdda62 templates/index.html
--- a/templates/index.html  Tue Jan 25 15:51:16 2022 +
+++ b/templates/index.html  Tue Jan 25 15:52:05 2022 +
@@ -266,7 +266,7 @@
 
 
 
-
+
 
 
 



[tryton-commits] changeset in www.tryton.org:default Remove use of text-justify

2022-01-25 Thread David Harper
changeset e9142f9b1590 in www.tryton.org:default
details: https://hg.tryton.org/www.tryton.org?cmd=changeset=e9142f9b1590
description:
Remove use of text-justify

The text-justify class has been dropped from bootstrap 5 as it can be a 
failure criterion in WCAG.

issue11150

review370681002
diffstat:

 templates/foundation.html |  10 +-
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (48 lines):

diff -r 925295c8818a -r e9142f9b1590 templates/foundation.html
--- a/templates/foundation.html Tue Jan 18 16:35:59 2022 +
+++ b/templates/foundation.html Tue Jan 25 15:51:16 2022 +
@@ -21,7 +21,7 @@
 
 Foundation
 
-
+
 
 The Tryton Foundation is a private foundation 
(Fondation Privée) formed under the Belgian law.
 It aims to protect, promote and develop Tryton as Free 
Software.
@@ -32,7 +32,7 @@
 
 {{ heart | safe }} 
Donations
 
-
+
 
 Please, visit our donations page to learn more about
 how you can help the Foundation to keep going and who 
has already supported us.
@@ -53,7 +53,7 @@
 
 Mission  Organization
 
-
+
 What does the Tryton Foundation do?
 The Tryton Foundation:
 
@@ -63,7 +63,7 @@
 manages and promotes the Tryton trademark.
 
 
-
+
 How is the foundation organized?
 In the spirit of democracy the foundation want to recognize 
everyone's work in Tryton.
 So a specific status is available for people or companies 
active in the community:
@@ -92,7 +92,7 @@
 
 Trademark
 
-
+
 https://euipo.europa.eu/eSearch/#details/trademarks/010548411;>Tryton
 is a registered trademark of the Tryton Fondation Privée.
 Any third-party using the term "Tryton" must do so only to 
refer to the https://www.tryton.org/;>Tryton project, and not to 
refer to any other project or activity, unless the reference is unrelated to 
the Nice Classifications (9, 37, and 42) covered in the registration.
 



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

2022-01-25 Thread Cédric Krier
changeset 84e580b318ac in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=84e580b318ac
description:
Translated using Weblate (Albanian)

Currently translated at 75.0% (9 of 12 strings)

Translation: Tryton/account_cash_rounding
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_cash_rounding/sq/
diffstat:

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

diffs (29 lines):

diff -r 8989a145d953 -r 84e580b318ac modules/account_cash_rounding/locale/sq.po
--- a/modules/account_cash_rounding/locale/sq.poTue Jan 25 09:37:40 
2022 +
+++ b/modules/account_cash_rounding/locale/sq.poTue Jan 25 09:37:55 
2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-07-25 11:12+\n"
-"Last-Translator: Kristina Millona \n"
+"PO-Revision-Date: 2022-01-25 12:12+\n"
+"Last-Translator: Cédric Krier \n"
 "Language: sq\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.7.2\n"
+"X-Generator: Weblate 4.10.1\n"
 
 msgctxt "field:account.configuration,cash_rounding:"
 msgid "Cash Rounding"
@@ -15,7 +15,7 @@
 
 msgctxt "field:account.configuration,cash_rounding_credit_account:"
 msgid "Cash Rounding Credit Account"
-msgstr "Kthimi i parave të gatshme në  llogarinë e kreditit"
+msgstr "Kthimi i parave të gatshme në llogarinë e kreditit"
 
 msgctxt "field:account.configuration,cash_rounding_debit_account:"
 msgid "Cash Rounding Debit Account"



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

2022-01-25 Thread Cédric Krier
changeset 8989a145d953 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=8989a145d953
description:
Translated using Weblate (Albanian)

Currently translated at 22.4% (44 of 196 strings)

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

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

diffs (29 lines):

diff -r ebae8357 -r 8989a145d953 modules/account_asset/locale/sq.po
--- a/modules/account_asset/locale/sq.poTue Jan 25 09:38:56 2022 +
+++ b/modules/account_asset/locale/sq.poTue Jan 25 09:37:40 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-07-25 11:12+\n"
-"Last-Translator: Kristina Millona \n"
+"PO-Revision-Date: 2022-01-25 12:12+\n"
+"Last-Translator: Cédric Krier \n"
 "Language: sq\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.7.2\n"
+"X-Generator: Weblate 4.10.1\n"
 
 msgctxt "field:account.account.type,fixed_asset:"
 msgid "Fixed Asset"
@@ -217,7 +217,7 @@
 
 msgctxt "field:account.asset.update.show_depreciation,depreciation_account:"
 msgid "Depreciation Account"
-msgstr "Llogaria e  Zhvlerësimit"
+msgstr "Llogaria e Zhvlerësimit"
 
 msgctxt "field:account.asset.update.show_depreciation,latest_move_date:"
 msgid "Latest Move Date"



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

2022-01-25 Thread Cédric Krier
changeset ebae8357 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=ebae8357
description:
Translated using Weblate (Albanian)

Currently translated at 11.9% (16 of 134 strings)

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

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

diffs (29 lines):

diff -r 8a88be15ed25 -r ebae8357 modules/country/locale/sq.po
--- a/modules/country/locale/sq.po  Tue Jan 25 09:38:45 2022 +
+++ b/modules/country/locale/sq.po  Tue Jan 25 09:38:56 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-09-21 09:13+\n"
-"Last-Translator: Leotrime Maxharraj \n"
+"PO-Revision-Date: 2022-01-25 12:12+\n"
+"Last-Translator: Cédric Krier \n"
 "Language: sq\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\n"
+"X-Generator: Weblate 4.10.1\n"
 
 msgctxt "field:country.country,code3:"
 msgid "3-letters Code"
@@ -95,7 +95,7 @@
 
 msgctxt "help:country.subdivision,code:"
 msgid "The ISO code of the subdivision."
-msgstr "Kodi i Organizatës Ndërkombëtare  për Standardizim"
+msgstr "Kodi i Organizatës Ndërkombëtare për Standardizim"
 
 msgctxt "help:country.subdivision,country:"
 msgid "The country where this subdivision is."



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

2022-01-25 Thread Cédric Krier
changeset 8a88be15ed25 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=8a88be15ed25
description:
Translated using Weblate (Albanian)

Currently translated at 100.0% (14 of 14 strings)

Translation: Tryton/account_deposit
Translate-URL: 
https://translate.tryton.org/projects/tryton/account_deposit/sq/
diffstat:

 modules/account_deposit/locale/sq.po |  10 +-
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (31 lines):

diff -r 45e7311e15dd -r 8a88be15ed25 modules/account_deposit/locale/sq.po
--- a/modules/account_deposit/locale/sq.po  Tue Jan 25 09:36:01 2022 +
+++ b/modules/account_deposit/locale/sq.po  Tue Jan 25 09:38:45 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-07-25 11:11+\n"
-"Last-Translator: Rematlen Bollobani \n"
+"PO-Revision-Date: 2022-01-25 12:12+\n"
+"Last-Translator: Cédric Krier \n"
 "Language: sq\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.7.2\n"
+"X-Generator: Weblate 4.10.1\n"
 
 msgctxt "field:account.account.type,deposit:"
 msgid "Deposit"
@@ -56,8 +56,8 @@
 "You cannot erase party \"%(party)s\" while they have deposit at company "
 "\"%(company)s\"."
 msgstr ""
-"Nuk mund  të fshish palën \"%(pala)\" ndërsa ata kanë depozitë në kompaninë "
-"\"%(kompania)\"."
+"Nuk mund të fshish palën \"%(pala)\" ndërsa ata kanë depozitë në kompaninë \""
+"%(kompania)\"."
 
 msgctxt "model:ir.model.button,string:invoice_recall_deposit_button"
 msgid "Recall Deposit"



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

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

Currently translated at 100.0% (794 of 794 strings)

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

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

diffs (31 lines):

diff -r 65c26a1c0646 -r 45e7311e15dd modules/stock/locale/fr.po
--- a/modules/stock/locale/fr.poTue Jan 25 09:34:27 2022 +
+++ b/modules/stock/locale/fr.poTue Jan 25 09:36:01 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-10-25 16:27+\n"
+"PO-Revision-Date: 2022-01-25 12:12+\n"
 "Last-Translator: Cédric Krier \n"
 "Language: fr\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.10.1\n"
 
 msgctxt "field:party.address,delivery:"
 msgid "Delivery"
@@ -253,10 +253,9 @@
 msgid "Product"
 msgstr "Produit"
 
-#, fuzzy
 msgctxt "field:stock.inventory.line,quantity:"
 msgid "Actual Quantity"
-msgstr "Quantité Totale"
+msgstr "Quantité réelle"
 
 msgctxt "field:stock.inventory.line,uom:"
 msgid "UOM"



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

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

Currently translated at 100.0% (237 of 237 strings)

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

 modules/product/locale/fr.po |  9 -
 1 files changed, 4 insertions(+), 5 deletions(-)

diffs (32 lines):

diff -r 885325db9a87 -r 65c26a1c0646 modules/product/locale/fr.po
--- a/modules/product/locale/fr.po  Tue Jan 25 09:34:12 2022 +
+++ b/modules/product/locale/fr.po  Tue Jan 25 09:34:27 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-03-18 18:32+\n"
-"Last-Translator: Cedric Krier \n"
+"PO-Revision-Date: 2022-01-25 12:12+\n"
+"Last-Translator: Cédric Krier \n"
 "Language: fr\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.4\n"
+"X-Generator: Weblate 4.10.1\n"
 
 msgctxt "field:ir.configuration,product_price_decimal:"
 msgid "Product Price Decimal"
@@ -653,10 +653,9 @@
 msgid "Carat"
 msgstr "Carat"
 
-#, fuzzy
 msgctxt "model:product.uom,name:uom_centimeter"
 msgid "Centimeter"
-msgstr "centimètre"
+msgstr "Centimètre"
 
 msgctxt "model:product.uom,name:uom_cubic_centimeter"
 msgid "Cubic centimeter"



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

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

Currently translated at 100.0% (303 of 303 strings)

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

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

diffs (28 lines):

diff -r a63a6238f653 -r 885325db9a87 modules/party/locale/fr.po
--- a/modules/party/locale/fr.poTue Jan 25 09:32:39 2022 +
+++ b/modules/party/locale/fr.poTue Jan 25 09:34:12 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-10-15 07:14+\n"
-"Last-Translator: Cedric Krier \n"
+"PO-Revision-Date: 2022-01-25 12:12+\n"
+"Last-Translator: Cédric Krier \n"
 "Language: fr\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.10.1\n"
 
 msgctxt "field:ir.email.template,contact_mechanism:"
 msgid "Contact Mechanism"
@@ -45,7 +45,6 @@
 msgid "Street"
 msgstr "Rue"
 
-#, fuzzy
 msgctxt "field:party.address,street_single_line:"
 msgid "Street"
 msgstr "Rue"



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

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

Currently translated at 100.0% (49 of 49 strings)

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

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

diffs (37 lines):

diff -r 81f6d50c5510 -r a63a6238f653 modules/notification_email/locale/fr.po
--- a/modules/notification_email/locale/fr.po   Tue Jan 25 09:32:20 2022 +
+++ b/modules/notification_email/locale/fr.po   Tue Jan 25 09:32:39 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-10-23 09:05+\n"
+"PO-Revision-Date: 2022-01-25 12:12+\n"
 "Last-Translator: Cédric Krier \n"
 "Language: fr\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.10.1\n"
 
 msgctxt "field:ir.trigger,notification_email:"
 msgid "Email Notification"
@@ -63,7 +63,7 @@
 
 msgctxt "field:notification.email,send_after:"
 msgid "Send After"
-msgstr ""
+msgstr "Envoyer après"
 
 msgctxt "field:notification.email,subject:"
 msgid "Subject"
@@ -161,6 +161,8 @@
 "The delay after which the email must be sent.\n"
 "Applied if a worker queue is activated."
 msgstr ""
+"Le délai après lequel l'e-mail doit être envoyé.\n"
+"Appliqué si une file de travail est activée."
 
 msgctxt "help:notification.email,subject:"
 msgid ""



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

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

Currently translated at 100.0% (51 of 51 strings)

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

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

diffs (29 lines):

diff -r 03ed91164cf3 -r 81f6d50c5510 
modules/account_stock_landed_cost/locale/fr.po
--- a/modules/account_stock_landed_cost/locale/fr.poTue Jan 25 09:31:42 
2022 +
+++ b/modules/account_stock_landed_cost/locale/fr.poTue Jan 25 09:32:20 
2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-04-15 09:56+\n"
-"Last-Translator: Cedric Krier \n"
+"PO-Revision-Date: 2022-01-25 12:11+\n"
+"Last-Translator: Cédric Krier \n"
 "Language: fr\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.5.3\n"
+"X-Generator: Weblate 4.10.1\n"
 
 msgctxt "field:account.configuration,landed_cost_sequence:"
 msgid "Landed Cost Sequence"
@@ -40,7 +40,7 @@
 
 msgctxt "field:account.landed_cost,factors:"
 msgid "Factors"
-msgstr ""
+msgstr "Facteurs"
 
 msgctxt "field:account.landed_cost,invoice_lines:"
 msgid "Invoice Lines"



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

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

Currently translated at 100.0% (137 of 137 strings)

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

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

diffs (31 lines):

diff -r 43555442212b -r 03ed91164cf3 modules/account_payment_sepa/locale/fr.po
--- a/modules/account_payment_sepa/locale/fr.po Tue Jan 25 09:35:17 2022 +
+++ b/modules/account_payment_sepa/locale/fr.po Tue Jan 25 09:31:42 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-10-26 08:08+\n"
+"PO-Revision-Date: 2022-01-25 12:11+\n"
 "Last-Translator: Cédric Krier \n"
 "Language: fr\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.10.1\n"
 
 msgctxt "field:account.configuration,sepa_mandate_sequence:"
 msgid "SEPA Mandate Sequence"
@@ -315,10 +315,9 @@
 msgid "Are you sure you want to process the messages?"
 msgstr "Êtes-vous sûr de vouloir traiter les messages ?"
 
-#, fuzzy
 msgctxt "model:ir.model.button,string:group_generate_message_button"
 msgid "Generate SEPA Message"
-msgstr "Générer le message"
+msgstr "Générer les messages SEPA"
 
 msgctxt "model:ir.model.button,string:mandate_cancel_button"
 msgid "Cancel"



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

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

Currently translated at 100.0% (222 of 222 strings)

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

 sao/locale/fr.po |  20 +---
 1 files changed, 17 insertions(+), 3 deletions(-)

diffs (42 lines):

diff -r ebca6725d5af -r 43555442212b sao/locale/fr.po
--- a/sao/locale/fr.po  Tue Jan 25 09:35:17 2022 +
+++ b/sao/locale/fr.po  Tue Jan 25 09:35:17 2022 +
@@ -1,3 +1,18 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2022-01-25 12:11+\n"
+"PO-Revision-Date: 2022-01-25 12:11+\n"
+"Last-Translator: Cédric Krier \n"
+"Language-Team: LANGUAGE \n"
+"Language: fr\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.10.1\n"
+
 # Generated by grunt-xgettext on Wed May 01 2019 00:09:20 GMT+0200 (CEST)
 # Generated by grunt-xgettext on Mon Apr 15 2019 16:53:42 GMT+0200 (CEST)
 # Generated by grunt-xgettext on Mon Apr 01 2019 13:14:07 GMT+0200 (CEST)
@@ -596,7 +611,7 @@
 msgstr "Vous devez d'abord sélectionner un fichier d'import."
 
 msgid "Detection failed"
-msgstr ""
+msgstr "La détection a échoué"
 
 msgid "Error processing the file at field %1."
 msgstr "Erreur lors du traitement du fichier du champ %1."
@@ -604,9 +619,8 @@
 msgid "Error"
 msgstr "Erreur"
 
-#, fuzzy
 msgid "Import failed"
-msgstr "Importer"
+msgstr "L'import a échoué"
 
 msgid "CSV Export: %1"
 msgstr "Export CSV : %1"

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

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

Currently translated at 100.0% (371 of 371 strings)

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

 tryton/tryton/data/locale/fr/LC_MESSAGES/tryton.po |  12 ++--
 1 files changed, 6 insertions(+), 6 deletions(-)

diffs (47 lines):

diff -r 640caf7e0dec -r ebca6725d5af 
tryton/tryton/data/locale/fr/LC_MESSAGES/tryton.po
--- a/tryton/tryton/data/locale/fr/LC_MESSAGES/tryton.poTue Jan 25 
09:35:00 2022 +
+++ b/tryton/tryton/data/locale/fr/LC_MESSAGES/tryton.poTue Jan 25 
09:35:17 2022 +
@@ -6,13 +6,13 @@
 msgstr ""
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-05-01 15:34+\n"
-"PO-Revision-Date: 2021-10-16 08:14+\n"
-"Last-Translator: Cedric Krier \n"
+"PO-Revision-Date: 2022-01-25 12:11+\n"
+"Last-Translator: Cédric Krier \n"
 "Language: fr\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.10.1\n"
 
 msgid "specify alternate config file"
 msgstr "spécifier un fichier de configuration alternatif"
@@ -904,7 +904,7 @@
 msgstr "%d enregistrements sauvés."
 
 msgid "Export failed"
-msgstr ""
+msgstr "L'export a échoué"
 
 msgid "Link"
 msgstr "Lien"
@@ -953,7 +953,7 @@
 msgstr "Vous devez d'abord sélectionner un fichier d'import."
 
 msgid "Detection failed"
-msgstr ""
+msgstr "La détection a échoué"
 
 #, python-format
 msgid "Error processing the file at field %s."
@@ -963,7 +963,7 @@
 msgstr "Erreur"
 
 msgid "Import failed"
-msgstr ""
+msgstr "L'import a échoué"
 
 #, python-format
 msgid "%d record imported."



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

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

Currently translated at 100.0% (153 of 153 strings)

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

 trytond/trytond/res/locale/fr.po |  7 +++
 1 files changed, 3 insertions(+), 4 deletions(-)

diffs (31 lines):

diff -r 59711f84bbf6 -r 640caf7e0dec trytond/trytond/res/locale/fr.po
--- a/trytond/trytond/res/locale/fr.po  Tue Jan 25 08:19:11 2022 +
+++ b/trytond/trytond/res/locale/fr.po  Tue Jan 25 09:35:00 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-11-09 14:31+\n"
+"PO-Revision-Date: 2022-01-25 12:11+\n"
 "Last-Translator: Cédric Krier \n"
 "Language: fr\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.10.1\n"
 
 msgctxt "field:ir.action,groups:"
 msgid "Groups"
@@ -573,10 +573,9 @@
 "[6:tryton://%(host)s/%(database)s][7:]\n"
 "[8:%(http_host)s/#%(database)s]"
 
-#, fuzzy
 msgctxt "report:res.user.email_reset_password:"
 msgid "The password will expire in [1:%(datetime)s]."
-msgstr "Le mot de passe expirera à [1:%(datetime)s UTC]."
+msgstr "Le mot de passe expirera dans [1:%(datetime)s]."
 
 msgctxt "selection:res.user.application,state:"
 msgid "Cancelled"



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

2022-01-25 Thread Hodei Navarro
changeset 59711f84bbf6 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=59711f84bbf6
description:
Translated using Weblate (Spanish)

Currently translated at 99.8% (793 of 794 strings)

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

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

diffs (31 lines):

diff -r c60204fa77f9 -r 59711f84bbf6 modules/stock/locale/es.po
--- a/modules/stock/locale/es.poMon Jan 24 19:34:39 2022 +
+++ b/modules/stock/locale/es.poTue Jan 25 08:19:11 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-10-28 06:11+\n"
-"Last-Translator: David Blanco Bautista \n"
+"PO-Revision-Date: 2022-01-25 09:15+\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.8.1\n"
+"X-Generator: Weblate 4.10.1\n"
 
 msgctxt "field:party.address,delivery:"
 msgid "Delivery"
@@ -1974,8 +1974,8 @@
 "Invalid cost price \"%(cost_price)s\" for product \"%(product)s\" with "
 "exception \"%(exception)s\"."
 msgstr ""
-"El precio de coste \"%(cost_price)s\" para el producto \"%(product)s\" és "
-"invalido amb la excepción \"%(exception)s\"."
+"El precio de coste \"%(cost_price)s\" para el producto \"%(product)s\" es "
+"inválido con la excepción \"%(exception)s\"."
 
 msgctxt "model:ir.message,text:msg_inventory_count_create_line"
 msgid "No existing line found for \"%(search)s\"."



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

2022-01-25 Thread EdbO
changeset c60204fa77f9 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=c60204fa77f9
description:
Translated using Weblate (Dutch)

Currently translated at 100.0% (303 of 303 strings)

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

 modules/party/locale/nl.po |  110 ++--
 1 files changed, 56 insertions(+), 54 deletions(-)

diffs (407 lines):

diff -r c39dc4fd7092 -r c60204fa77f9 modules/party/locale/nl.po
--- a/modules/party/locale/nl.poMon Jan 24 20:02:47 2022 +
+++ b/modules/party/locale/nl.poMon Jan 24 19:34:39 2022 +
@@ -1,7 +1,7 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-01-16 19:48+\n"
+"PO-Revision-Date: 2022-01-25 09:15+\n"
 "Last-Translator: EdbO \n"
 "Language: nl\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -27,7 +27,7 @@
 
 msgctxt "field:party.address,name:"
 msgid "Building Name"
-msgstr "naam van het gebouw"
+msgstr "Gebouwnaam"
 
 msgctxt "field:party.address,party:"
 msgid "Party"
@@ -91,7 +91,7 @@
 
 msgctxt "field:party.check_vies.result,parties_failed:"
 msgid "Parties Failed"
-msgstr "Relaties met mistlukte verificatie"
+msgstr "Relaties met mislukte verificatie"
 
 msgctxt "field:party.check_vies.result,parties_succeed:"
 msgid "Parties Succeed"
@@ -107,7 +107,7 @@
 
 msgctxt "field:party.configuration,party_sequence:"
 msgid "Party Sequence"
-msgstr "Relatiecode"
+msgstr "Relatie reeks"
 
 msgctxt "field:party.configuration.party_lang,party_lang:"
 msgid "Party Language"
@@ -115,7 +115,7 @@
 
 msgctxt "field:party.configuration.party_sequence,party_sequence:"
 msgid "Party Sequence"
-msgstr "Relatiereeks"
+msgstr "Relatie reeks"
 
 msgctxt "field:party.contact_mechanism,comment:"
 msgid "Comment"
@@ -155,7 +155,7 @@
 
 msgctxt "field:party.contact_mechanism,type:"
 msgid "Type"
-msgstr "Type"
+msgstr "Soort"
 
 msgctxt "field:party.contact_mechanism,url:"
 msgid "URL"
@@ -167,7 +167,7 @@
 
 msgctxt "field:party.contact_mechanism,value_compact:"
 msgid "Value Compact"
-msgstr "compact formaat"
+msgstr "Compacte waarde"
 
 msgctxt "field:party.contact_mechanism,website:"
 msgid "Website"
@@ -195,7 +195,7 @@
 
 msgctxt "field:party.identifier,type:"
 msgid "Type"
-msgstr "Type"
+msgstr "Soort"
 
 msgctxt "field:party.party,addresses:"
 msgid "Addresses"
@@ -211,7 +211,7 @@
 
 msgctxt "field:party.party,code_readonly:"
 msgid "Code Readonly"
-msgstr "Code Alleen lezen"
+msgstr "Code alleenlezen"
 
 msgctxt "field:party.party,contact_mechanisms:"
 msgid "Contact Mechanisms"
@@ -231,11 +231,11 @@
 
 msgctxt "field:party.party,full_name:"
 msgid "Full Name"
-msgstr "Naam voluit"
+msgstr "Volledige naam"
 
 msgctxt "field:party.party,identifiers:"
 msgid "Identifiers"
-msgstr "identificaties"
+msgstr "Identificaties"
 
 msgctxt "field:party.party,lang:"
 msgid "Language"
@@ -263,7 +263,7 @@
 
 msgctxt "field:party.party,tax_identifier:"
 msgid "Tax Identifier"
-msgstr "BTW identificatie (Tax Identifier)"
+msgstr "Belasting indentificatie"
 
 msgctxt "field:party.party,website:"
 msgid "Website"
@@ -296,13 +296,14 @@
 msgctxt "help:ir.email.template,contact_mechanism:"
 msgid "Define which email address to use from the party's contact mechanisms."
 msgstr ""
-"Bepaal welke e-mail u wilt gebruiken van de contactmechanismen van de "
-"relatie."
+"Bepaalt welk e-mail adres gebruikt moet worden van de contactmechanismen van "
+"de relatie."
 
 msgctxt "help:party.address,party_name:"
 msgid "If filled, replace the name of the party for address formatting"
 msgstr ""
-"Als dit ingevuld is ,vervangt het de naam van de relatie voor de adres opmaak"
+"Als dit veld is ingevuld, vervangt het de naam van de relatie in de adres "
+"opmaak"
 
 msgctxt "help:party.address.format,format_:"
 msgid ""
@@ -332,7 +333,7 @@
 
 msgctxt "help:party.category,childs:"
 msgid "Add children below the category."
-msgstr "Voeg onderliggend niveau toe aan de categorie."
+msgstr "Voeg categorieën toe onder deze categorie."
 
 msgctxt "help:party.category,name:"
 msgid "The main identifier of the category."
@@ -340,7 +341,7 @@
 
 msgctxt "help:party.category,parent:"
 msgid "Add the category below the parent."
-msgstr "Voeg de categorie toe onder het bovenliggend niveau (parent)."
+msgstr "Plaats de categorie onder het bovenliggend niveau."
 
 msgctxt "help:party.configuration,identifier_types:"
 msgid ""
@@ -352,19 +353,19 @@
 
 msgctxt "help:party.configuration,party_lang:"
 msgid "The default language for new parties."
-msgstr "De standaardtaal voor nieuwe relatie."
+msgstr "De standaardtaal voor een nieuwe relatie."
 
 msgctxt "help:party.configuration,party_sequence:"
 msgid "Used to generate the party code."
-msgstr "Gebruikt om relatiecode te genereren."
+msgstr "Wordt gebruikt om een relatie code te genereren."
 
 msgctxt "help:party.configuration.party_lang,party_lang:"
 msgid "The default language for new 

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

2022-01-25 Thread EdbO
changeset c39dc4fd7092 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=c39dc4fd7092
description:
Translated using Weblate (Dutch)

Currently translated at 100.0% (79 of 79 strings)

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

 modules/company/locale/nl.po |  62 +--
 1 files changed, 30 insertions(+), 32 deletions(-)

diffs (217 lines):

diff -r 480bbab13198 -r c39dc4fd7092 modules/company/locale/nl.po
--- a/modules/company/locale/nl.po  Mon Jan 24 08:26:55 2022 +
+++ b/modules/company/locale/nl.po  Mon Jan 24 20:02:47 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-05-22 21:10+\n"
-"Last-Translator: Bert Defoor \n"
+"PO-Revision-Date: 2022-01-25 09:15+\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 4.6.2\n"
+"X-Generator: Weblate 4.10.1\n"
 
 msgctxt "field:company.company,currency:"
 msgid "Currency"
@@ -19,11 +19,11 @@
 
 msgctxt "field:company.company,footer:"
 msgid "Footer"
-msgstr "Werknemers"
+msgstr "Voettekst"
 
 msgctxt "field:company.company,header:"
 msgid "Header"
-msgstr "Werknemers"
+msgstr "Koptekst"
 
 msgctxt "field:company.company,party:"
 msgid "Party"
@@ -51,7 +51,7 @@
 
 msgctxt "field:company.employee,subordinates:"
 msgid "Subordinates"
-msgstr "ondergeschikten"
+msgstr "Ondergeschikten"
 
 msgctxt "field:company.employee,supervisor:"
 msgid "Supervisor"
@@ -67,7 +67,7 @@
 
 msgctxt "field:ir.cron-company.company,cron:"
 msgid "Cron"
-msgstr "Cyclische opdracht"
+msgstr "Planner"
 
 msgctxt "field:ir.sequence,company:"
 msgid "Company"
@@ -127,7 +127,7 @@
 
 msgctxt "help:company.company,currency:"
 msgid "The main currency for the company."
-msgstr "De belangrijkste valuta voor het bedrijf."
+msgstr "De hoofd-valuta voor het bedrijf."
 
 msgctxt "help:company.company,employees:"
 msgid "Add employees to the company."
@@ -139,7 +139,7 @@
 
 msgctxt "help:company.company,header:"
 msgid "The text to display on report headers."
-msgstr "De tekst die moet worden weergegeven op rapporthoofdingen."
+msgstr "De tekst die wordt weergegeven in de rapport aanhef."
 
 msgctxt "help:company.company,timezone:"
 msgid "Used to compute the today date."
@@ -151,27 +151,27 @@
 
 msgctxt "help:company.employee,end_date:"
 msgid "When the employee leaves the company."
-msgstr "Wanneer de werknemer het bedrijf verlaat."
+msgstr "Wanneer de werknemer uit dienst treedt."
 
 msgctxt "help:company.employee,party:"
 msgid "The party which represents the employee."
-msgstr "De relatie die de werknemer vertegenwoordigt."
+msgstr "De relatie die de werknemer weergeeft."
 
 msgctxt "help:company.employee,start_date:"
 msgid "When the employee joins the company."
-msgstr "Wanneer een werknemer in dienst treedt."
+msgstr "Wanneer de werknemer in dienst treedt."
 
 msgctxt "help:company.employee,subordinates:"
 msgid "The employees to be overseen by this employee."
-msgstr "De werknemers waarop deze werknemer toezicht houdt."
+msgstr "De werknemers waar deze werknemer leiding aan geeft."
 
 msgctxt "help:company.employee,supervisor:"
 msgid "The employee who oversees this employee."
-msgstr "De werknemer die toezicht houdt op deze werknemer."
+msgstr "De werknemer die leiding geeft aan deze werknemer."
 
 msgctxt "help:ir.cron,companies:"
 msgid "Companies registered for this cron."
-msgstr "Bedrijven aangesloten op deze cron opdracht."
+msgstr "Bedrijven aangesloten op deze planner."
 
 msgctxt "help:ir.rule,domain:"
 msgid ""
@@ -183,15 +183,15 @@
 
 msgctxt "help:ir.sequence,company:"
 msgid "Restricts the sequence usage to the company."
-msgstr "Beperk het gebruik van het nummerbereik tot het bedrijf."
+msgstr "Beperkt het gebruik van de reeks tot het bedrijf."
 
 msgctxt "help:ir.sequence.strict,company:"
 msgid "Restricts the sequence usage to the company."
-msgstr "Beperk het gebruik van het nummerbereik tot het bedrijf."
+msgstr "Beperkt het gebruik van de reeks tot het bedrijf."
 
 msgctxt "help:res.user,companies:"
 msgid "The companies that the user has access to."
-msgstr "De bedrijven waartoe de gebruiker toegang heeft."
+msgstr "De bedrijven waar de gebruiker toegang tot heeft."
 
 msgctxt "help:res.user,company:"
 msgid "Select the company to work for."
@@ -203,13 +203,11 @@
 
 msgctxt "help:res.user,employee:"
 msgid "Select the employee to make the user behave as such."
-msgstr ""
-"Selecteer de medewerker om er voor te zorgen dat de gebruiker zich als "
-"zodanig zal gedragen(Select the employee to make the user behave as such)."
+msgstr "Selecteer de medewerker zodat de gebruiker zich als zodanig gedraagt."
 
 msgctxt "help:res.user,employees:"
 msgid "Add employees to grant the user access to them."
-msgstr "Voeg de werknemers toe 

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

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

Currently translated at 100.0% (309 of 309 strings)

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

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

diffs (29 lines):

diff -r 673338c0eab4 -r 480bbab13198 modules/account_invoice/locale/es.po
--- a/modules/account_invoice/locale/es.po  Mon Jan 24 08:27:00 2022 +
+++ b/modules/account_invoice/locale/es.po  Mon Jan 24 08:26:55 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2021-10-28 06:10+\n"
-"Last-Translator: David Blanco Bautista \n"
+"PO-Revision-Date: 2022-01-25 09:14+\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.8.1\n"
+"X-Generator: Weblate 4.10.1\n"
 
 msgctxt "field:account.configuration,default_customer_payment_term:"
 msgid "Default Customer Payment Term"
@@ -657,7 +657,7 @@
 
 msgctxt "help:account.invoice.credit.start,with_refund:"
 msgid "If true, the current invoice(s) will be cancelled."
-msgstr "Si está marcada, se pagarán las facturas seleccionadas."
+msgstr "Si está marcada, se cancelaran las facturas seleccionadas."
 
 msgctxt "help:account.invoice.line,taxes_date:"
 msgid ""



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

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

Currently translated at 100.0% (309 of 309 strings)

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

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

diffs (23 lines):

diff -r 7e7fe4266563 -r 673338c0eab4 modules/account_invoice/locale/ca.po
--- a/modules/account_invoice/locale/ca.po  Mon Jan 24 14:30:31 2022 +
+++ b/modules/account_invoice/locale/ca.po  Mon Jan 24 08:27:00 2022 +
@@ -1,8 +1,8 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-01-24 08:26+\n"
-"Last-Translator: Juanjo Garcia \n"
+"PO-Revision-Date: 2022-01-25 09:14+\n"
+"Last-Translator: Sergi Almacellas Abellana \n"
 "Language: ca\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -657,7 +657,7 @@
 
 msgctxt "help:account.invoice.credit.start,with_refund:"
 msgid "If true, the current invoice(s) will be cancelled."
-msgstr "Si es marca es comptabilitzaran les factures seleccionades."
+msgstr "Si es marca es cancelaran les factures seleccionades."
 
 msgctxt "help:account.invoice.line,taxes_date:"
 msgid ""



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

2022-01-25 Thread EdbO
changeset 7e7fe4266563 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=7e7fe4266563
description:
Translated using Weblate (Dutch)

Currently translated at 100.0% (222 of 222 strings)

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

 sao/locale/nl.po |  74 
 1 files changed, 37 insertions(+), 37 deletions(-)

diffs (286 lines):

diff -r 7232154bafea -r 7e7fe4266563 sao/locale/nl.po
--- a/sao/locale/nl.po  Mon Jan 24 14:30:30 2022 +
+++ b/sao/locale/nl.po  Mon Jan 24 14:30:31 2022 +
@@ -3,7 +3,7 @@
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2021-10-28 06:10+\n"
-"PO-Revision-Date: 2021-12-07 10:50+\n"
+"PO-Revision-Date: 2022-01-25 09:14+\n"
 "Last-Translator: EdbO \n"
 "Language-Team: LANGUAGE \n"
 "Language: nl\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.9.1\n"
+"X-Generator: Weblate 4.10.1\n"
 
 # Generated by grunt-xgettext on Wed May 01 2019 00:09:20 GMT+0200 (CEST)
 msgid "Are your sure to leave?"
@@ -39,7 +39,7 @@
 msgstr "Omschakelen"
 
 msgid "Reload/Undo"
-msgstr "Herladen/Annuleren"
+msgstr "Ongedaan maken / herladen"
 
 msgid "Duplicate"
 msgstr "Duplicaat"
@@ -66,7 +66,7 @@
 msgstr "Aantekening"
 
 msgid "Relate"
-msgstr "Relatie"
+msgstr "Gerelateerd"
 
 msgid "Print"
 msgstr "Afdrukken"
@@ -78,7 +78,7 @@
 msgstr "Vorig tabblad"
 
 msgid "Next tab"
-msgstr "Volgende tabblad"
+msgstr "Volgend tabblad"
 
 msgid "Global search"
 msgstr "Algemeen zoeken"
@@ -120,7 +120,7 @@
 msgstr "Uw selectie:"
 
 msgid "Cancel"
-msgstr "Annuleren"
+msgstr "Annuleer"
 
 msgid "OK"
 msgstr "OK"
@@ -165,7 +165,7 @@
 msgstr "w (t)"
 
 msgid "False"
-msgstr "Niet waar"
+msgstr "Onwaar"
 
 msgid "Message: "
 msgstr "Bericht: "
@@ -186,13 +186,13 @@
 msgstr "Bevestiging: "
 
 msgid "Concurrency Exception"
-msgstr "Simultaan gebruik (error)"
+msgstr "Simultaan gebruik error"
 
 msgid "Write Concurrency Warning: "
 msgstr "Aandacht, schrijftoegang concurrenten (Write Concurrency) : "
 
 msgid "This record has been modified while you were editing it."
-msgstr "Dit veld werd gewijzigd terwijl u het aan het bewerken was."
+msgstr "Dit record werd gewijzigd terwijl u het aan het bewerken was."
 
 msgid "Choose:"
 msgstr "Kiezen:"
@@ -207,7 +207,7 @@
 msgstr "\"Overschrijven\" om de huidige versie te bewaren."
 
 msgid "Compare"
-msgstr "Vergelijken"
+msgstr "Vergelijk"
 
 msgid "Compare: %1"
 msgstr "Vergelijk:% 1"
@@ -243,7 +243,7 @@
 msgstr "Cursief"
 
 msgid "Underline"
-msgstr "Onderlijnen"
+msgstr "Onderstrepen"
 
 msgid "Font"
 msgstr "lettertype"
@@ -270,13 +270,13 @@
 msgstr "Vorig record"
 
 msgid "Next Record"
-msgstr "Volgende record"
+msgstr "Volgend record"
 
 msgid "Create a new record"
 msgstr "Maak een nieuw record"
 
 msgid "Save this record"
-msgstr "Bewaar deze record"
+msgstr "Record opslaan"
 
 msgid "Reload"
 msgstr "Herladen"
@@ -285,13 +285,13 @@
 msgstr "Bekijk logregister..."
 
 msgid "Show revisions..."
-msgstr "Herzieningen tonen ..."
+msgstr "Revisies weergeven ..."
 
 msgid "Add an attachment to the record"
 msgstr "Voeg een bijlage toe aan het record"
 
 msgid "Add a note to the record"
-msgstr "Voeg een nota toe aan het veld"
+msgstr "Voeg een notitie toe aan het record"
 
 msgid "E-Mail..."
 msgstr "E-mail..."
@@ -313,7 +313,7 @@
 "Verder gaan?"
 
 msgid "Launch action"
-msgstr "Start actie"
+msgstr "Actie uitvoeren"
 
 msgid "Open related records"
 msgstr "Open gerelateerde records"
@@ -325,20 +325,20 @@
 "This record has been modified\n"
 "do you want to save it?"
 msgstr ""
-"Dit veld is aangepast.\n"
-"Wil je de wijzigingen opslaan?"
+"Dit record is aangepast.\n"
+"Wilt u de wijzigingen opslaan?"
 
 msgid "Record saved."
 msgstr "Record opgeslagen."
 
 msgid "Working now on the duplicated record(s)."
-msgstr "Nu aan het werk op het/de gecopieërde record(s)."
+msgstr "Aan het werk op het(de) gekopieerde record(s)."
 
 msgid "Are you sure to remove this record?"
-msgstr "Weet je zeker dat je dit record wilt verwijderen?"
+msgstr "Weet u zeker dat u dit record wilt verwijderen?"
 
 msgid "Are you sure to remove those records?"
-msgstr "Weet je zeker dat je deze records wilt verwijderen?"
+msgstr "Weet u zeker dat u deze records wilt verwijderen?"
 
 msgid "Records removed."
 msgstr "Records verwijderd."
@@ -359,7 +359,7 @@
 msgstr "Aanmaakdatum:"
 
 msgid "Edited by:"
-msgstr "Aangepast door:"
+msgstr "Bewerkt door:"
 
 msgid "Edited at:"
 msgstr "Bewerkt op:"
@@ -398,16 +398,16 @@
 msgstr "Verwijder deze bladwijzer"
 
 msgid "Bookmark this filter"
-msgstr "Maak een bladwijzer van deze filter"
+msgstr "Maak een bladwijzer voor dit filter"
 
 msgid "Bookmark Name:"
-msgstr "Bladwijzernaam:"
+msgstr "Bladwijzer naam:"
 
 msgid "Show 

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

2022-01-25 Thread EdbO
changeset 7232154bafea in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=7232154bafea
description:
Translated using Weblate (Dutch)

Currently translated at 100.0% (371 of 371 strings)

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

 tryton/tryton/data/locale/nl/LC_MESSAGES/tryton.po |  200 ++--
 1 files changed, 100 insertions(+), 100 deletions(-)

diffs (656 lines):

diff -r 62426614b015 -r 7232154bafea 
tryton/tryton/data/locale/nl/LC_MESSAGES/tryton.po
--- a/tryton/tryton/data/locale/nl/LC_MESSAGES/tryton.poMon Jan 24 
21:20:35 2022 +
+++ b/tryton/tryton/data/locale/nl/LC_MESSAGES/tryton.poMon Jan 24 
14:30:30 2022 +
@@ -6,7 +6,7 @@
 msgstr ""
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2019-05-01 15:34+\n"
-"PO-Revision-Date: 2022-01-16 19:48+\n"
+"PO-Revision-Date: 2022-01-25 09:14+\n"
 "Last-Translator: EdbO \n"
 "Language: nl\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -15,7 +15,7 @@
 "X-Generator: Weblate 4.10.1\n"
 
 msgid "specify alternate config file"
-msgstr "specificeer een vervangend configuratiebestand"
+msgstr "specificeer een alternatief configuratiebestand"
 
 msgid "development mode"
 msgstr "Ontwikkelingsmodus"
@@ -30,7 +30,7 @@
 msgstr "specificeer de inlog gebruiker"
 
 msgid "specify the server hostname:port"
-msgstr "servernaam : poort"
+msgstr "specificeer de hostnaam:poort"
 
 #, python-format
 msgid "Unable to write config file %s."
@@ -51,10 +51,10 @@
 msgstr "%s (%s)"
 
 msgid "Select your action"
-msgstr "Selecteer je handeling"
+msgstr "Selecteer een actie"
 
 msgid "No action defined."
-msgstr "Geen handeling gedefinieerd."
+msgstr "Geen actie gedefinieerd."
 
 msgid "By: "
 msgstr "Door: "
@@ -63,7 +63,7 @@
 msgstr "Selectie"
 
 msgid "Cancel"
-msgstr "Annuleren"
+msgstr "Annuleer"
 
 msgid "OK"
 msgstr "OK"
@@ -93,19 +93,19 @@
 msgstr "Ja"
 
 msgid "Concurrency Exception"
-msgstr "Simultaan gebruik (error)"
+msgstr "Simultaan gebruik error"
 
 msgid "This record has been modified while you were editing it."
-msgstr "Dit veld werd gewijzigd terwijl u het aan het bewerken was."
+msgstr "Dit record werd gewijzigd terwijl u het aan het bewerken was."
 
 msgid "Cancel saving"
-msgstr "Opslaan afbreken"
+msgstr "Annuleer opslaan"
 
 msgid "Compare"
-msgstr "Vergelijken"
+msgstr "Vergelijk"
 
 msgid "See the modified version"
-msgstr "Toon de gewijzigde versie"
+msgstr "Geef de gewijzigde versie weer"
 
 msgid "Write Anyway"
 msgstr "Overschrijven"
@@ -128,13 +128,13 @@
 
 #, python-format
 msgid "Check URL: %s"
-msgstr "controle van de URL: %s"
+msgstr "Controleer URL: %s"
 
 msgid "Unable to check for new version."
 msgstr "Kon niet controleren op nieuwe versie."
 
 msgid "A new version is available!"
-msgstr "Een nieuwe versie is beschikbaar!"
+msgstr "Er is een nieuwe versie beschikbaar!"
 
 msgid "Download"
 msgstr "Download"
@@ -164,10 +164,10 @@
 msgstr "Weergaveformaat"
 
 msgid "Open the calendar"
-msgstr "Open de kalender"
+msgstr "Open kalender"
 
 msgid "Date Format"
-msgstr "Datumnotatie"
+msgstr "Datum formaat"
 
 msgid "Displayed date format"
 msgstr "Weergegeven datumformaat"
@@ -182,10 +182,10 @@
 msgstr "w (t)"
 
 msgid "False"
-msgstr "Niet waar"
+msgstr "Onwaar"
 
 msgid "Digits"
-msgstr "cijfers"
+msgstr "Decimalen"
 
 msgid "The number of decimal"
 msgstr "Aantal decimalen"
@@ -194,7 +194,7 @@
 msgstr "Sjabloon"
 
 msgid "Edit..."
-msgstr "Bewerk..."
+msgstr "Bewerken..."
 
 msgid "Attachments..."
 msgstr "Bijlagen..."
@@ -203,13 +203,13 @@
 msgstr "Notities..."
 
 msgid "Actions..."
-msgstr "Acties ..."
+msgstr "Acties..."
 
 msgid "Relate..."
-msgstr "Relatie..."
+msgstr "Gerelateerd..."
 
 msgid "Report..."
-msgstr "Verslag..."
+msgstr "Rapport..."
 
 msgid "Print..."
 msgstr "Afdrukken..."
@@ -224,7 +224,7 @@
 msgstr "Cursief"
 
 msgid "Underline"
-msgstr "Onderlijnen"
+msgstr "Onderstrepen"
 
 msgid "Align Left"
 msgstr "Links uitlijnen"
@@ -311,10 +311,10 @@
 msgstr "Sneltoetsen..."
 
 msgid "About..."
-msgstr "Betreft..."
+msgstr "Over..."
 
 msgid "Help"
-msgstr "Help"
+msgstr "Hulp"
 
 msgid "No result found."
 msgstr "Geen resultaat gevonden."
@@ -336,7 +336,7 @@
 "Verder gaan?"
 
 msgid "Application Shortcuts"
-msgstr "Applicatiesnelkoppelingen"
+msgstr "Applicatie snelkoppelingen"
 
 msgid "Global"
 msgstr "Globaal"
@@ -354,10 +354,10 @@
 msgstr "Vorig tabblad"
 
 msgid "Next tab"
-msgstr "Volgende tabblad"
+msgstr "Volgend tabblad"
 
 msgid "Shortcuts"
-msgstr "shortcuts"
+msgstr "Snelkoppelingen"
 
 msgid "Quit"
 msgstr "Stop"
@@ -384,13 +384,13 @@
 msgstr "Vorig veld"
 
 msgid "Relation Entries"
-msgstr "Relatie-invoer"
+msgstr "Gerelateerde velden"
 
 msgid "Create new relation"
-msgstr "Nieuwe relatie aanmaken"
+msgstr "Maak een nieuwe relatie"
 
 msgid "Open/Search relation"
-msgstr "Zoek / open relatie"
+msgstr "Zoek / open gerelateerd"
 
 msgid "List Entries"

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

2022-01-25 Thread EdbO
changeset 62426614b015 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=62426614b015
description:
Translated using Weblate (Dutch)

Currently translated at 100.0% (928 of 928 strings)

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

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

diffs (30 lines):

diff -r 35bccbb27624 -r 62426614b015 trytond/trytond/ir/locale/nl.po
--- a/trytond/trytond/ir/locale/nl.po   Mon Jan 24 16:55:03 2022 +
+++ b/trytond/trytond/ir/locale/nl.po   Mon Jan 24 21:20:35 2022 +
@@ -1,7 +1,7 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-01-24 15:47+\n"
+"PO-Revision-Date: 2022-01-25 09:14+\n"
 "Last-Translator: EdbO \n"
 "Language: nl\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -1889,7 +1889,7 @@
 
 msgctxt "model:ir.action,name:act_sequence_strict_form"
 msgid "Sequences Strict"
-msgstr "Strikte reeks"
+msgstr "Strikte reeksen"
 
 msgctxt "model:ir.action,name:act_sequence_type_form"
 msgid "Types"
@@ -3832,7 +3832,7 @@
 
 msgctxt "wizard_button:ir.module.activate_upgrade,start,upgrade:"
 msgid "Start Upgrade"
-msgstr "Start upgrade"
+msgstr "Start bijwerken"
 
 msgctxt "wizard_button:ir.module.config,start,activate:"
 msgid "Activate"



[tryton-commits] changeset in modules/purchase_request_quotation:default Split li...

2022-01-25 Thread Adrià Tarroja Caubet
changeset 8183563ea789 in modules/purchase_request_quotation:default
details: 
https://hg.tryton.org/modules/purchase_request_quotation?cmd=changeset=8183563ea789
description:
Split line description only if not None

issue11174
review397151006
diffstat:

 quotation.fodt |  2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diffs (15 lines):

diff -r ef54ed7fc038 -r 8183563ea789 quotation.fodt
--- a/quotation.fodtSun Jan 23 12:54:56 2022 +0100
+++ b/quotation.fodtTue Jan 25 10:01:02 2022 +0100
@@ -684,9 +684,11 @@
 
 
  
+  if 
test=quotation_line.description
   for each=description in 
quotation_line.description.split(\n)
   description
   /for
+  /if
  
  
   format_number_symbol(quotation_line.quantity, 
quotation.supplier.lang, quotation_line.unit, 
digits=quotation_line.unit.digits) if quotation_line.unit else 
format_number(quotation_line.quantity, 
quotation.supplier.lang)