Skip to content

Commit

Permalink
fix: do not translate language codes (#14569)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukmzig committed Mar 15, 2023
1 parent 3a22700 commit 2ec0e17
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -156,7 +156,7 @@ pimcore.settings.translation.domain = Class.create({

let languageStore = [];
for (var i = 0; i < this.languages.length; i++) {
languageStore.push([this.languages[i], t(this.languages[i])]);
languageStore.push([this.languages[i], this.languages[i]]);
}

this.filterLocaleField.getStore().loadData(languageStore);
Expand Down

0 comments on commit 2ec0e17

Please sign in to comment.