diff --git a/ChangeLog b/ChangeLog
index 41af2f8ab27..e28436755c5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -23,6 +23,7 @@ The following changes may create regressions for some external modules, but were
* The behavior of constant STOCK_ALLOW_NEGATIVE_TRANSFER has been reversed. It has been renamed to STOCK_DISALLOW_NEGATIVE_TRANSFER.
* Method Categoie->getObjectsInCateg() is deprecated. Try by using instead getListForItem() or containing().
* Global variable $bctag and $conffiletoshowshort has been removed.
+* If you setup the API to update multicurrency rate from internet, you may need to re-enter your API key (so API key will be crypted in database).
***** ChangeLog for 21.0.0 compared to 20.0 *****
diff --git a/htdocs/admin/bank.php b/htdocs/admin/bank.php
index a01086727f0..15adadbc470 100644
--- a/htdocs/admin/bank.php
+++ b/htdocs/admin/bank.php
@@ -540,7 +540,7 @@ if (!getDolGlobalInt('SOCIETE_DISABLE_BANKACCOUNT')) {
print '
';
print '| '.$form->textwithpicto($langs->trans("AllowOnLineSign"), $langs->trans("AllowOnLineSignDesc")).' | ';
print '';
- print ajax_constantonoff('SOCIETE_RIB_ALLOW_ONLINESIGN', array(), null, 0, 0, 0, 2, 0, 1, '', '', 'inline-block', 0, $langs->trans("WarningOnlineSignature"));
+ print ajax_constantonoff('SOCIETE_RIB_ALLOW_ONLINESIGN', array(), null, 0, 0, 0, 2, 0, 1, '', '', 'inline-block', 0, $langs->transnoentitiesnoconv("WarningOnlineSignature"));
print ' |
';
}
diff --git a/htdocs/admin/contract.php b/htdocs/admin/contract.php
index d9bd0289527..12718d38608 100644
--- a/htdocs/admin/contract.php
+++ b/htdocs/admin/contract.php
@@ -541,7 +541,7 @@ print '';
print '| '.$langs->trans("AllowOnlineSign").' | ';
print '';
if ($conf->use_javascript_ajax) {
- print ajax_constantonoff('CONTRACT_ALLOW_ONLINESIGN', array(), null, 0, 0, 0, 2, 0, 1, '', '', 'inline-block', 0, $langs->trans("WarningOnlineSignature"));
+ print ajax_constantonoff('CONTRACT_ALLOW_ONLINESIGN', array(), null, 0, 0, 0, 2, 0, 1, '', '', 'inline-block', 0, $langs->transnoentitiesnoconv("WarningOnlineSignature"));
} else {
if (getDolGlobalString('CONTRACT_ALLOW_ONLINESIGN')) {
print '';
diff --git a/htdocs/admin/expedition.php b/htdocs/admin/expedition.php
index 1f03a708917..c5463ae2553 100644
--- a/htdocs/admin/expedition.php
+++ b/htdocs/admin/expedition.php
@@ -487,7 +487,7 @@ print '';
print '| '.$langs->trans("AllowOnLineSign");
print ' | ';
print '';
-print ajax_constantonoff('EXPEDITION_ALLOW_ONLINESIGN', array(), null, 0, 0, 0, 2, 0, 1, '', '', 'inline-block', 0, $langs->trans("WarningOnlineSignature"));
+print ajax_constantonoff('EXPEDITION_ALLOW_ONLINESIGN', array(), null, 0, 0, 0, 2, 0, 1, '', '', 'inline-block', 0, $langs->transnoentitiesnoconv("WarningOnlineSignature"));
print ' | ';
// Pre fill shipment qty option
|