fix: fix L.locale no more set

This commit is contained in:
Yohan Boniface 2024-03-28 18:50:50 +01:00 committed by Alexis Métaireau
parent cf61495815
commit 5d88e0e270
4 changed files with 12 additions and 3 deletions

View file

@ -17,6 +17,13 @@ export function registerLocale(code, locale) {
export function setLocale(code) {
locale = code
}
// Until we have a proper way to load `locale` directly from this module,
// without copying to window.L we need to have a getter
export function getLocale() {
return locale
}
// @function translate(string: String, data?: Object): String
// Actually try to translate the `string`, with optionnal variable passed in `data`.
export function translate(string, data = {}) {

View file

@ -533,7 +533,8 @@ U.FeatureMixin = {
extendedProperties: function () {
// Include context properties
properties = this.map.getGeoContext()
if (L.locale) properties.locale = L.locale
const locale = L.getLocale()
if (locale) properties.locale = locale
if (L.lang) properties.lang = L.lang
properties.rank = this.getRank() + 1
if (this.hasGeom()) {

View file

@ -1767,7 +1767,7 @@ U.Map = L.Map.extend({
const url = this.urls.get('routing', {
lat: e.latlng.lat,
lng: e.latlng.lng,
locale: L.locale,
locale: L.getLocale(),
zoom: this.getZoom(),
})
if (url) window.open(url)

View file

@ -263,7 +263,8 @@ U.PopupTemplate.OSM = U.PopupTemplate.Default.extend({
getName: function () {
const props = this.feature.properties
if (L.locale && props[`name:${L.locale}`]) return props[`name:${L.locale}`]
const locale = L.getLocale()
if (locale && props[`name:${locale}`]) return props[`name:${locale}`]
return props.name
},