Remove unused currency data

pull/3278/head
Anton 2024-03-20 10:24:52 +01:00
parent 10b2ff9449
commit 2000193011
1 changed files with 1 additions and 87 deletions

View File

@ -66,8 +66,6 @@ var locales = {
lang: "en_GB", lang: "en_GB",
decimal_point: ".", decimal_point: ".",
thousands_sep: ",", thousands_sep: ",",
currency_symbol: "£", currency_first: true,
int_curr_symbol: "GBP",
speed: 'mph', speed: 'mph',
distance: { "0": "yd", "1": "mi" }, distance: { "0": "yd", "1": "mi" },
temperature: '°C', temperature: '°C',
@ -85,8 +83,6 @@ var locales = {
notes: "USA with MM/DD/YY date", notes: "USA with MM/DD/YY date",
decimal_point: ".", decimal_point: ".",
thousands_sep: ",", thousands_sep: ",",
currency_symbol: "$", currency_first: true,
int_curr_symbol: "USD",
speed: "mph", speed: "mph",
distance: { 0: "ft", 1: "mi" }, distance: { 0: "ft", 1: "mi" },
temperature: "°F", temperature: "°F",
@ -104,8 +100,6 @@ var locales = {
notes: "USA with YYYY-MM-DD date", notes: "USA with YYYY-MM-DD date",
decimal_point: ".", decimal_point: ".",
thousands_sep: ",", thousands_sep: ",",
currency_symbol: "$", currency_first: true,
int_curr_symbol: "USD",
speed: "mph", speed: "mph",
distance: { 0: "ft", 1: "mi" }, distance: { 0: "ft", 1: "mi" },
temperature: "°F", temperature: "°F",
@ -122,9 +116,6 @@ var locales = {
lang: "en_IN", lang: "en_IN",
decimal_point: ".", decimal_point: ".",
thousands_sep: ",", thousands_sep: ",",
currency_symbol: "Rs.",
currency_first: true,
int_curr_symbol: "INR",
speed: 'kmh', speed: 'kmh',
distance: { "0": "m", "1": "km" }, distance: { "0": "m", "1": "km" },
temperature: '°C', temperature: '°C',
@ -141,9 +132,6 @@ var locales = {
lang: "en_IE", lang: "en_IE",
decimal_point: ".", decimal_point: ".",
thousands_sep: ",", thousands_sep: ",",
currency_symbol: "€",
int_curr_symbol: "EUR",
currency_first: true,
speed: 'kmh', speed: 'kmh',
distance: { "0": "m", "1": "km" }, distance: { "0": "m", "1": "km" },
temperature: '°C', temperature: '°C',
@ -160,8 +148,6 @@ var locales = {
lang: "en_NAV", icon: "⛵✈️", lang: "en_NAV", icon: "⛵✈️",
decimal_point: ".", decimal_point: ".",
thousands_sep: ",", thousands_sep: ",",
currency_symbol: "£", currency_first: true,
int_curr_symbol: "GBP",
speed: 'kts', speed: 'kts',
distance: { "0": "m", "1": "nm" }, distance: { "0": "m", "1": "nm" },
temperature: '°C', temperature: '°C',
@ -178,8 +164,6 @@ var locales = {
lang: "de_DE", lang: "de_DE",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -197,8 +181,6 @@ var locales = {
lang: "en_JP", lang: "en_JP",
decimal_point: ".", decimal_point: ".",
thousands_sep: ",", thousands_sep: ",",
currency_symbol: "¥",
int_curr_symbol: "JPY",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -215,8 +197,6 @@ var locales = {
lang: "nl_NL", lang: "nl_NL",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -230,12 +210,10 @@ var locales = {
trans: { yes: "ja", Yes: "Ja", no: "nee", No: "Nee", ok: "ok", on: "aan", off: "uit", trans: { yes: "ja", Yes: "Ja", no: "nee", No: "Nee", ok: "ok", on: "aan", off: "uit",
"< Back": "< Terug", "Delete": "Verwijderen", "Mark Unread": "Markeer als ongelezen" } "< Back": "< Terug", "Delete": "Verwijderen", "Mark Unread": "Markeer als ongelezen" }
}, },
"en_NL": { // English date units with Dutch number, currency and navigation units. "en_NL": { // English date units with Dutch number and navigation units.
lang: "en_NL", lang: "en_NL",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "km/h", speed: "km/h",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -251,8 +229,6 @@ var locales = {
lang: "en_CA", lang: "en_CA",
decimal_point: ".", decimal_point: ".",
thousands_sep: ",", thousands_sep: ",",
currency_symbol: "$",
int_curr_symbol: "CAD",
speed: "km/h", speed: "km/h",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -269,8 +245,6 @@ var locales = {
lang: "fr_FR", lang: "fr_FR",
decimal_point: ",", decimal_point: ",",
thousands_sep: " ", thousands_sep: " ",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "km/h", speed: "km/h",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -287,8 +261,6 @@ var locales = {
lang: "sv_SE", lang: "sv_SE",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "kr",
int_curr_symbol: "SKR",
speed: "km/tim", speed: "km/tim",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -305,8 +277,6 @@ var locales = {
lang: "en_SE", lang: "en_SE",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "kr",
int_curr_symbol: "SKR",
speed: 'km/h', speed: 'km/h',
distance: { "0": "m", "1": "km" }, distance: { "0": "m", "1": "km" },
temperature: '°C', temperature: '°C',
@ -323,8 +293,6 @@ var locales = {
lang: "da_DK", lang: "da_DK",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "kr",
int_curr_symbol: "DKK",
speed: "km/t", speed: "km/t",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -341,8 +309,6 @@ var locales = {
lang: "en_DK", lang: "en_DK",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "kr",
int_curr_symbol: "DKK",
speed: "km/h", speed: "km/h",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -359,8 +325,6 @@ var locales = {
lang: "en_NZ", lang: "en_NZ",
decimal_point: ".", decimal_point: ".",
thousands_sep: ",", thousands_sep: ",",
currency_symbol: "$",
int_curr_symbol: "NZD",
speed: "kph", speed: "kph",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -377,8 +341,6 @@ var locales = {
lang: "en_AU", lang: "en_AU",
decimal_point: ".", decimal_point: ".",
thousands_sep: ",", thousands_sep: ",",
currency_symbol: "$",
int_curr_symbol: "AUD",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -395,8 +357,6 @@ var locales = {
lang: "de_AT", lang: "de_AT",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -414,8 +374,6 @@ var locales = {
lang: "en_IL", lang: "en_IL",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "ILS"/*"₪"*/,
int_curr_symbol: "ILS",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -432,8 +390,6 @@ var locales = {
lang: "es_ES", lang: "es_ES",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -451,8 +407,6 @@ var locales = {
lang: "fr_BE", lang: "fr_BE",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -469,8 +423,6 @@ var locales = {
lang: "fi_FI", lang: "fi_FI",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -487,8 +439,6 @@ var locales = {
lang: "de_CH", lang: "de_CH",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "CHF",
int_curr_symbol: "CHF",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -505,8 +455,6 @@ var locales = {
lang: "fr_CH", lang: "fr_CH",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "CHF",
int_curr_symbol: "CHF",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -523,8 +471,6 @@ var locales = {
lang: "it_CH", lang: "it_CH",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "CHF",
int_curr_symbol: "CHF",
speed: 'kmh', speed: 'kmh',
distance: { "0": "m", "1": "km" }, distance: { "0": "m", "1": "km" },
temperature: '°C', temperature: '°C',
@ -541,8 +487,6 @@ var locales = {
lang: "it_IT", lang: "it_IT",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: 'kmh', speed: 'kmh',
distance: { "0": "m", "1": "km" }, distance: { "0": "m", "1": "km" },
temperature: '°C', temperature: '°C',
@ -559,8 +503,6 @@ var locales = {
lang: "wae_CH", lang: "wae_CH",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "CHF",
int_curr_symbol: "CHF",
speed: 'kmh', speed: 'kmh',
distance: { "0": "m", "1": "km" }, distance: { "0": "m", "1": "km" },
temperature: '°C', temperature: '°C',
@ -577,8 +519,6 @@ var locales = {
lang: "tr_TR", lang: "tr_TR",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "TL",
int_curr_symbol: "TRY",
speed: 'kmh', speed: 'kmh',
distance: { "0": "m", "1": "km" }, distance: { "0": "m", "1": "km" },
temperature: '°C', temperature: '°C',
@ -595,8 +535,6 @@ var locales = {
lang: "hu_HU", lang: "hu_HU",
decimal_point: ",", decimal_point: ",",
thousands_sep: " ", thousands_sep: " ",
currency_symbol: "Ft",
int_curr_symbol: "HUF",
speed: 'kph', speed: 'kph',
distance: { "0": "m", "1": "km" }, distance: { "0": "m", "1": "km" },
temperature: '°C', temperature: '°C',
@ -613,8 +551,6 @@ var locales = {
lang: "oc_FR", lang: "oc_FR",
decimal_point: ",", decimal_point: ",",
thousands_sep: " ", thousands_sep: " ",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "km/h", speed: "km/h",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -631,8 +567,6 @@ var locales = {
lang: "pt_BR", lang: "pt_BR",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "R$", currency_first: true,
int_curr_symbol: "BRL",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -649,8 +583,6 @@ var locales = {
lang: "cs_CZ", lang: "cs_CZ",
decimal_point: ",", decimal_point: ",",
thousands_sep: " ", thousands_sep: " ",
currency_symbol: "Kč",
int_curr_symbol: " CZK",
speed: 'kmh', speed: 'kmh',
distance: { "0": "m", "1": "km" }, distance: { "0": "m", "1": "km" },
temperature: '°C', temperature: '°C',
@ -667,8 +599,6 @@ var locales = {
lang: "hr_HR", lang: "hr_HR",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "km/h", speed: "km/h",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -685,8 +615,6 @@ var locales = {
lang: "sl_SI", lang: "sl_SI",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "km/h", speed: "km/h",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -703,8 +631,6 @@ var locales = {
lang: "pt_PT", lang: "pt_PT",
decimal_point: ",", decimal_point: ",",
thousands_sep: " ", thousands_sep: " ",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -721,8 +647,6 @@ var locales = {
lang: "pl_PL", lang: "pl_PL",
decimal_point: ",", decimal_point: ",",
thousands_sep: " ", thousands_sep: " ",
currency_symbol: "zł",
int_curr_symbol: "PLN",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -739,8 +663,6 @@ var locales = {
lang: "lv_LV", lang: "lv_LV",
decimal_point: ",", decimal_point: ",",
thousands_sep: " ", thousands_sep: " ",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -757,8 +679,6 @@ var locales = {
lang: "nn_NO", lang: "nn_NO",
decimal_point: ",", decimal_point: ",",
thousands_sep: " ", thousands_sep: " ",
currency_symbol: "kr",
int_curr_symbol: "NOK",
speed: "kmt", speed: "kmt",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -775,8 +695,6 @@ var locales = {
lang: "nb_NO", lang: "nb_NO",
decimal_point: ",", decimal_point: ",",
thousands_sep: " ", thousands_sep: " ",
currency_symbol: "kr",
int_curr_symbol: "NOK",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -794,8 +712,6 @@ var locales = {
icon: "🇪🇺", icon: "🇪🇺",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "€",
int_curr_symbol: "EUR",
speed: "kmh", speed: "kmh",
distance: { 0: "m", 1: "km" }, distance: { 0: "m", 1: "km" },
temperature: "°C", temperature: "°C",
@ -815,8 +731,6 @@ var locales = {
lang: "he_IL", lang: "he_IL",
decimal_point: ",", decimal_point: ",",
thousands_sep: ".", thousands_sep: ".",
currency_symbol: "₪",
int_curr_symbol: "ILS",
speed: "קמ״ש", speed: "קמ״ש",
distance: { 0: "מ׳", 1: "ק״מ" }, distance: { 0: "מ׳", 1: "ק״מ" },
temperature: "°C", temperature: "°C",