feat: add BRL currency

This commit is contained in:
Yang Luo
2025-04-11 22:24:34 +08:00
parent b7fafcc62b
commit 5c41c6c4a5
3 changed files with 5 additions and 0 deletions

View File

@ -1603,6 +1603,8 @@ export function getCurrencyText(product) {
return i18next.t("currency:HKD");
} else if (product?.currency === "SGD") {
return i18next.t("currency:SGD");
} else if (product?.currency === "BRL") {
return i18next.t("currency:BRL");
} else {
return "(Unknown currency)";
}