Fix missing language term.

This commit is contained in:
yukirij 2024-08-27 17:31:56 -07:00
parent f109cfce4b
commit ce5e8d7f62
2 changed files with 5 additions and 2 deletions

View File

@ -51,6 +51,9 @@ LANGUAGE.Terms = {
users: new LANGUAGE.Term( "Users", "ユーザー" ), users: new LANGUAGE.Term( "Users", "ユーザー" ),
requests: new LANGUAGE.Term( "Requests", "挑戦状" ), requests: new LANGUAGE.Term( "Requests", "挑戦状" ),
rank: new LANGUAGE.Term( "Rank", "段位" ),
unranked: new LANGUAGE.Term( "Unranked", "無段" ),
accept: new LANGUAGE.Term( "Accept", "受け入れ" ), accept: new LANGUAGE.Term( "Accept", "受け入れ" ),
decline: new LANGUAGE.Term( "Decline", "断る" ), decline: new LANGUAGE.Term( "Decline", "断る" ),

View File

@ -688,7 +688,7 @@ const SCENES = {
buttons.push(UI.button(LANG("challenge"), callback)); buttons.push(UI.button(LANG("challenge"), callback));
rows.push([ rows.push([
UI.text(""), UI.text(LANG("unranked")),
UI.text(data.users[r].handle), UI.text(data.users[r].handle),
buttons, buttons,
]); ]);
@ -772,7 +772,7 @@ const SCENES = {
buttons.push(UI.button(LANG("decline"), callback_decline)); buttons.push(UI.button(LANG("decline"), callback_decline));
rows.push([ rows.push([
UI.text(""), UI.text(LANG("unranked")),
UI.text(data.users[r].handle), UI.text(data.users[r].handle),
buttons, buttons,
]); ]);