We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 38e5b3f + a0eff70 commit e0fe99fCopy full SHA for e0fe99f
modules/core/localizer.js
@@ -120,7 +120,9 @@ export function coreLocalizer() {
120
indexes.forEach((index, i) => {
121
// Will always return the index for `en` if nothing else
122
const fullCoverageIndex = _localeCodes.findIndex(function(locale) {
123
- return index[locale] && index[locale].pct === 1;
+ // Only English contains everything including the OpenHistoricalMap additions, because we haven’t set up a translation management system yet.
124
+ // https://github.com/OpenHistoricalMap/issues/issues/470
125
+ return locale === 'en' && index[locale] && index[locale].pct === 1;
126
});
127
// We only need to load locales up until we find one with full coverage
128
_localeCodes.slice(0, fullCoverageIndex + 1).forEach(function(code) {
0 commit comments