fixes and improved language selector

This commit is contained in:
MathMan05 2024-11-12 14:54:18 -06:00
parent 9dc7637ee9
commit d38276b028
5 changed files with 29 additions and 34 deletions

View file

@ -12,7 +12,7 @@ import{ getTextNodeAtPosition, MarkDown, saveCaretPosition }from"./markdown.js";
import { Bot } from "./bot.js";
import { Role } from "./role.js";
import { VoiceFactory } from "./voice.js";
import { I18n } from "./i18n.js";
import { I18n, langmap } from "./i18n.js";
const wsCodesRetry = new Set([4000,4001,4002, 4003, 4005, 4007, 4008, 4009]);
@ -1453,7 +1453,7 @@ class Localuser{
security.addSelect(I18n.getTranslation("localuser.language"),(e)=>{
I18n.setLanguage(I18n.options()[e]);
},I18n.options(),{
},[...langmap.values()],{
defaultIndex:I18n.options().indexOf(I18n.lang)
});
{