[IMP] account: replace selection key in reconciliation

opw-653468

ff note: no need after saas-6
This commit is contained in:
Nicolas Lempereur 2015-11-27 16:35:00 +01:00
parent 261ccf7c56
commit da2e4c86a4
2 changed files with 8 additions and 1 deletions

View File

@ -10874,6 +10874,13 @@ msgid "You are selecting transactions from both a payable and a receivable accou
"In order to proceed, you first need to deselect the %s transactions."
msgstr ""
#. module: account
#. openerp-web
#: code:addons/account/static/src/js/account_widgets.js:1050
#, python-format
msgid "last"
msgstr ""
#. module: account
#: help:account.move.line,blocked:0
msgid "You can check this box to mark this journal item as a litigation with the associated partner"

View File

@ -1047,7 +1047,7 @@ openerp.account = function (instance) {
new instance.web.Dialog(this, {
title: _t("Warning"),
size: 'medium',
}, $("<div />").text(_.str.sprintf(_t("You are selecting transactions from both a payable and a receivable account.\n\nIn order to proceed, you first need to deselect the %s transactions."), last_selected_line.account_type))).open();
}, $("<div />").text(_.str.sprintf(_t("You are selecting transactions from both a payable and a receivable account.\n\nIn order to proceed, you first need to deselect the %s transactions."), _t("last")))).open();
return;
}