Skip to content

Commit

Permalink
Merge pull request #3847 from rafaelpac/swedish-account-label
Browse files Browse the repository at this point in the history
Fix bank account number label for Swedish language
  • Loading branch information
ripcurlx authored Jan 3, 2020
2 parents bd81843 + df49d5c commit 34a0af6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/bisq/core/locale/BankUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,9 @@ public static String getAccountNrLabel(String countryCode) {
case "HK":
return Res.get("payment.accountNr");
case "NO":
return "Kontonummer"; // do not translate as it is used in Norwegian only
return "Kontonummer"; // do not translate as it is used in Norwegian and Swedish only
case "SE":
return "Bankgiro number"; // do not translate as it is used in Swedish only
return "Kontonummer"; // do not translate as it is used in Norwegian and Swedish only
case "MX":
return "CLABE"; // do not translate as it is used in Spanish only
case "CL":
Expand Down

0 comments on commit 34a0af6

Please sign in to comment.