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

2022-05-20 Thread Adrià Tarroja Caubet
changeset 662d2726add9 in weblate:default
details: https://hg.tryton.org/weblate?cmd=changeset=662d2726add9
description:
Translated using Weblate (Spanish)

Currently translated at 100.0% (803 of 803 strings)

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

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

diffs (29 lines):

diff -r d2a57db2f63c -r 662d2726add9 modules/stock/locale/es.po
--- a/modules/stock/locale/es.poMon May 09 09:23:28 2022 +
+++ b/modules/stock/locale/es.poFri May 20 11:24:05 2022 +
@@ -1,13 +1,13 @@
 #
 msgid ""
 msgstr ""
-"PO-Revision-Date: 2022-04-26 16:45+\n"
-"Last-Translator: Sergi Almacellas Abellana \n"
+"PO-Revision-Date: 2022-05-20 18:01+\n"
+"Last-Translator: Adrià Tarroja Caubet \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.12\n"
+"X-Generator: Weblate 4.12.1\n"
 
 msgctxt "field:party.address,delivery:"
 msgid "Delivery"
@@ -1051,7 +1051,7 @@
 
 msgctxt "help:party.contact_mechanism,delivery:"
 msgid "Check to use for delivery."
-msgstr "Marcar para utlizar en los envíos."
+msgstr "Marcar para utilizar en los envíos."
 
 msgctxt "help:party.party,customer_location:"
 msgid "The default destination location for stock sent to the party."



[tryton-commits] changeset in sao:default Set disabled attribute on buttons of re...

2022-05-20 Thread Cédric Krier
changeset f67ca9159976 in sao:default
details: https://hg.tryton.org/sao?cmd=changeset=f67ca9159976
description:
Set disabled attribute on buttons of readonly image

issue11505
diffstat:

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

diffs (14 lines):

diff -r 00b685811e6d -r f67ca9159976 src/view/form.js
--- a/src/view/form.js  Thu May 19 22:18:45 2022 +0200
+++ b/src/view/form.js  Fri May 20 08:23:19 2022 +0200
@@ -4300,8 +4300,8 @@
 },
 set_readonly: function(readonly) {
 Sao.View.Form.Image._super.set_readonly.call(this, readonly);
-this.but_select.prop('disable', readonly);
-this.but_clear.prop('disable', readonly);
+this.but_select.prop('disabled', readonly);
+this.but_clear.prop('disabled', readonly);
 },
 clear: function() {
 Sao.View.Form.Image._super.clear.call(this);