diff --git a/core/src/main/resources/i18n/displayStrings.properties b/core/src/main/resources/i18n/displayStrings.properties index 44097300bcc..40bcb8f0361 100644 --- a/core/src/main/resources/i18n/displayStrings.properties +++ b/core/src/main/resources/i18n/displayStrings.properties @@ -2647,8 +2647,6 @@ offerDetailsWindow.minBtcAmount=Min. BTC amount offerDetailsWindow.min=(min. {0}) offerDetailsWindow.distance=(distance from market price: {0}) offerDetailsWindow.myTradingAccount=My trading account -offerDetailsWindow.offererBankId=(maker's bank ID/BIC/SWIFT) -offerDetailsWindow.offerersBankName=(maker's bank name) offerDetailsWindow.bankId=Bank ID (e.g. BIC or SWIFT) offerDetailsWindow.countryBank=Maker's country of bank offerDetailsWindow.commitment=Commitment diff --git a/desktop/src/main/java/bisq/desktop/main/overlays/windows/OfferDetailsWindow.java b/desktop/src/main/java/bisq/desktop/main/overlays/windows/OfferDetailsWindow.java index 64ecb798bb5..64b0f9aa27e 100644 --- a/desktop/src/main/java/bisq/desktop/main/overlays/windows/OfferDetailsWindow.java +++ b/desktop/src/main/java/bisq/desktop/main/overlays/windows/OfferDetailsWindow.java @@ -253,24 +253,7 @@ private void addContent() { addConfirmationLabelLabel(gridPane, ++rowIndex, Res.get("offerDetailsWindow.myTradingAccount"), myPaymentAccount.getAccountName()); } else { final String method = Res.get(paymentMethod.getId()); - String methodWithBankId = method + bankId; - String paymentMethodLabel = Res.get("shared.paymentMethod"); - if (countryCode != null && (isNationalBanks || isSpecificBanks || isSepa)) { - if (BankUtil.isBankIdRequired(countryCode)) - addConfirmationLabelLabel(gridPane, ++rowIndex, - paymentMethodLabel + " " + Res.get("offerDetailsWindow.offererBankId"), - methodWithBankId); - else if (BankUtil.isBankNameRequired(countryCode)) - addConfirmationLabelLabel(gridPane, ++rowIndex, - paymentMethodLabel + " " + Res.get("offerDetailsWindow.offerersBankName"), - methodWithBankId); - } else if (paymentMethod.equals(PaymentMethod.CASH_DEPOSIT)) { - addConfirmationLabelLabel(gridPane, ++rowIndex, - paymentMethodLabel + " " + Res.get("offerDetailsWindow.offererBankId"), - methodWithBankId); - } else { - addConfirmationLabelLabel(gridPane, ++rowIndex, Res.get("shared.paymentMethod"), method); - } + addConfirmationLabelLabel(gridPane, ++rowIndex, Res.get("shared.paymentMethod"), method); } if (showXmrAutoConf) {