Extend lists for currencies, lengths

This commit is contained in:
Joshua Ramon Enslin 2022-09-02 02:10:36 +02:00
parent 6a8d0a3bac
commit 8840af04ea
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE
2 changed files with 10 additions and 0 deletions

View File

@ -14,6 +14,10 @@ final class MDConcCurrencies {
const CURRENCIES_LIST = [
"^" => "",
"-" => "",
"1,00" => "",
"5,00" => "",
"10,00" => "",
"23.117,55" => "",
"Forint" => "hu-Ft",
"Korona" => "hu-Korona",
"Pengő" => "hu-Pengő",

View File

@ -13,6 +13,12 @@ final class MDConcLengths {
const LENGTHS_LIST = [
"cn" => "cm",
",cm" => "cm",
"5cm" => "cm",
"inch" => "in",
"Zoll" => "in",
"zoll" => "in",
];
}