Fix missing language term.
This commit is contained in:
parent
f109cfce4b
commit
ce5e8d7f62
@ -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", "断る" ),
|
||||||
|
|
||||||
|
@ -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,
|
||||||
]);
|
]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user