Use the euro sign for PMS (#1504)

This commit is contained in:
Gabriele Monaco 2025-04-25 21:04:05 +03:00 committed by GitHub
parent 01c0cd9de2
commit 14b5439a97
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -264,7 +264,7 @@ private fun getCurrencyKey(locale: Locale): Pair<String, List<String>> {
return euro return euro
if (locale.toString().matches(euroLocales)) if (locale.toString().matches(euroLocales))
return euro return euro
if (locale.language.matches("ca|eu|lb|mt".toRegex())) if (locale.language.matches("ca|eu|lb|mt|pms".toRegex()))
return euro return euro
if (locale.language.matches("ak|dag|ee|fa|gaa|ha|ig|iw|lo|ko|km|mn|ne|si|th|uk|vi|yo".toRegex())) if (locale.language.matches("ak|dag|ee|fa|gaa|ha|ig|iw|lo|ko|km|mn|ne|si|th|uk|vi|yo".toRegex()))
return genericCurrencyKey(getCurrency(locale)) return genericCurrencyKey(getCurrency(locale))