Update language for name change.

This commit is contained in:
yukirij 2024-09-03 21:22:04 -07:00
parent f5c0cb862b
commit c4420bf4dd
3 changed files with 15 additions and 13 deletions

View File

@ -10,6 +10,8 @@ LANGUAGE.Term = class {
}; };
LANGUAGE.Terms = { LANGUAGE.Terms = {
title: new LANGUAGE.Term( "Dzura", "ヅラ" ),
dawn: new LANGUAGE.Term( "Dawn", "暁" ), dawn: new LANGUAGE.Term( "Dawn", "暁" ),
dusk: new LANGUAGE.Term( "Dusk", "黄昏" ), dusk: new LANGUAGE.Term( "Dusk", "黄昏" ),
@ -67,7 +69,7 @@ LANGUAGE.Terms = {
Castle: new LANGUAGE.Term( "Castle", "城" ), Castle: new LANGUAGE.Term( "Castle", "城" ),
Dragon: new LANGUAGE.Term( "Dragon", "竜" ), Dragon: new LANGUAGE.Term( "Dragon", "竜" ),
Behemoth: new LANGUAGE.Term( "Behemoth", "獣" ), Behemoth: new LANGUAGE.Term( "Behemoth", "獣" ),
Omen: new LANGUAGE.Term( "Omen", "兆" ), Source: new LANGUAGE.Term( "Source", "元" ),
//: new LANGUAGE.Term( "", "" ), //: new LANGUAGE.Term( "", "" ),

View File

@ -234,7 +234,7 @@ const SCENES = {
SCENE.refresh(); SCENE.refresh();
history.pushState(null, "Omen", "/"); history.pushState(null, "Dzura", "/");
return true; return true;
} }
refresh() { refresh() {
@ -295,7 +295,7 @@ const SCENES = {
SCENE.refresh(); SCENE.refresh();
history.pushState(null, "Omen - Continue", "/continue/"); history.pushState(null, "Dzura - Continue", "/continue/");
return true; return true;
} }
refresh() { refresh() {
@ -347,7 +347,7 @@ const SCENES = {
SCENE.refresh(); SCENE.refresh();
history.pushState(null, "Omen - Join", "/join/"); history.pushState(null, "Dzura - Join", "/join/");
return true; return true;
}, },
refresh() { refresh() {
@ -410,7 +410,7 @@ const SCENES = {
SCENE.refresh(); SCENE.refresh();
history.pushState(null, "Omen - Live", "/live/"); history.pushState(null, "Dzura - Live", "/live/");
return true; return true;
} }
refresh() { refresh() {
@ -469,7 +469,7 @@ const SCENES = {
SCENE.refresh(); SCENE.refresh();
history.pushState(null, "Omen - History", "/history/"); history.pushState(null, "Dzura - History", "/history/");
return true; return true;
} }
refresh() { refresh() {
@ -509,7 +509,7 @@ const SCENES = {
this.refresh("game.html"); this.refresh("game.html");
history.pushState(null, "Omen - Guide", "/guide/"); history.pushState(null, "Dzura - Guide", "/guide/");
return true; return true;
} }
refresh(page) { refresh(page) {
@ -537,7 +537,7 @@ const SCENES = {
this.refresh("main.html"); this.refresh("main.html");
history.pushState(null, "Omen - About", "/about/"); history.pushState(null, "Dzura - About", "/about/");
return true; return true;
} }
refresh(page) { refresh(page) {
@ -601,7 +601,7 @@ const SCENES = {
INTERFACE.init(data.token, data.mode); INTERFACE.init(data.token, data.mode);
history.pushState(null, "Omen - Game", "/game/" + PACK.base64(data.token).slice(0, -1)); history.pushState(null, "Dzura - Game", "/game/" + PACK.base64(data.token).slice(0, -1));
return true; return true;
} }
unload() { unload() {
@ -643,7 +643,7 @@ const SCENES = {
INTERFACE.init(null, INTERFACE.Mode.Local); INTERFACE.init(null, INTERFACE.Mode.Local);
history.pushState(null, "Omen - Practice", "/practice/"); history.pushState(null, "Dzura - Practice", "/practice/");
return true; return true;
} }
unload() { unload() {
@ -726,7 +726,7 @@ const SCENES = {
SCENE.refresh(); SCENE.refresh();
history.pushState(null, "Omen", "/challenge/"); history.pushState(null, "Dzura", "/challenge/");
return true; return true;
} }
refresh() { refresh() {
@ -805,7 +805,7 @@ const SCENES = {
SCENE.refresh(); SCENE.refresh();
history.pushState(null, "Omen", "/challenge/"); history.pushState(null, "Dzura", "/challenge/");
return true; return true;
} }
refresh() { refresh() {

View File

@ -368,7 +368,7 @@ const UI = {
MENU = document.createElement("nav"); MENU = document.createElement("nav");
let title = document.createElement("header"); let title = document.createElement("header");
title.innerText = "Omen"; title.innerText = "Dzura";
MENU.appendChild(title); MENU.appendChild(title);
MAIN = document.createElement("main"); MAIN = document.createElement("main");