Merge pull request #14995 from dtlnor/14591-bug-the-categories-layout-is-different-when-localization-is-on

Fix #14591 using translated content to do categories mapping
This commit is contained in:
AUTOMATIC1111 2024-02-26 07:12:31 +03:00
parent a10c8df876
commit 78e421e4ea
1 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ onOptionsChanged(function() {
});
opts._categories.forEach(function(x) {
var section = x[0];
var category = x[1];
var section = localization[x[0]] ?? x[0];
var category = localization[x[1]] ?? x[1];
var span = document.createElement('SPAN');
span.textContent = category;