ngx-bimplus-components 0.0.197-modelviewer04 → 0.0.197-modelviewer05
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10858,17 +10858,28 @@ class BimplusUpgradeLinkComponent extends BimplusLocalizedWidgetComponent {
|
|
|
10858
10858
|
en: '1',
|
|
10859
10859
|
fr: '2',
|
|
10860
10860
|
de: '3',
|
|
10861
|
-
|
|
10861
|
+
cs: '1', // only in English, so use fallback
|
|
10862
|
+
es: '1', // only in English, so use fallback
|
|
10863
|
+
it: '1', // only in English, so use fallback
|
|
10864
|
+
ru: '1', // only in English, so use fallback
|
|
10865
|
+
ro: '1', // only in English, so use fallback
|
|
10866
|
+
tr: '1', // only in English, so use fallback
|
|
10862
10867
|
};
|
|
10863
10868
|
const lang = langMap[symbol];
|
|
10864
10869
|
return `&lang=${lang ? lang : "1"}`;
|
|
10865
10870
|
}
|
|
10866
10871
|
_getCountryIsoParam(symbol) {
|
|
10867
10872
|
const countryIsoMap = {
|
|
10868
|
-
en: 'gb', // English (UK) -currency
|
|
10869
|
-
us: 'us', // English (US) currency
|
|
10870
|
-
fr: 'fr', // French
|
|
10871
|
-
de: 'de', // German
|
|
10873
|
+
en: 'gb', // English (UK) - currency is GBP
|
|
10874
|
+
us: 'us', // English (US) - currency is USD
|
|
10875
|
+
fr: 'fr', // French - currency is EUR
|
|
10876
|
+
de: 'de', // German - currency is EUR
|
|
10877
|
+
cs: 'cz', // Czech - currency is CZK
|
|
10878
|
+
es: 'es', // Spanish - currency is EUR
|
|
10879
|
+
it: 'it', // Italian - currency is EUR
|
|
10880
|
+
ru: 'ru', // Russian - currency is RUB
|
|
10881
|
+
ro: 'ro', // Romanian - currency is RON
|
|
10882
|
+
tr: 'tr' // Turkish - currency is TRY
|
|
10872
10883
|
// all other countries are not supported
|
|
10873
10884
|
// no pages are defined, so use fallback (don't add ap_country_iso param)
|
|
10874
10885
|
};
|