diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2021-09-03 00:21:33 -0700 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2021-09-03 00:21:33 -0700 |
commit | 105e4ec887e249ec47db83095504012bad22df80 (patch) | |
tree | 0ca61c0015b1941362de8d2a82a005a88659dca4 /modern/src/map | |
parent | e6f906dbb565abdb29297ec67db3c922135c628c (diff) | |
download | trackermap-web-105e4ec887e249ec47db83095504012bad22df80.tar.gz trackermap-web-105e4ec887e249ec47db83095504012bad22df80.tar.bz2 trackermap-web-105e4ec887e249ec47db83095504012bad22df80.zip |
More translation migrations
Diffstat (limited to 'modern/src/map')
-rw-r--r-- | modern/src/map/Map.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modern/src/map/Map.js b/modern/src/map/Map.js index 9e31fa15..1fa4db5d 100644 --- a/modern/src/map/Map.js +++ b/modern/src/map/Map.js @@ -10,10 +10,13 @@ import { prepareIcon, loadImage } from './mapUtil'; import { styleCarto, styleMapbox, styleMapTiler, styleOsm, } from './mapStyles'; -import t from '../LocalizationProvider'; import { useAttributePreference } from '../common/preferences'; import palette from '../theme/palette'; +// TODO fix localization +import en from '../../../web/l10n/en.json'; +const t = (key) => en[key]; + const element = document.createElement('div'); element.style.width = '100%'; element.style.height = '100%'; |