19 lines
394 B
JavaScript
19 lines
394 B
JavaScript
const LANGUAGE = { };
|
|
|
|
LANGUAGE.Term = class {
|
|
constructor(en, jp) {
|
|
this.data = [ en, jp ];
|
|
}
|
|
};
|
|
|
|
LANGUAGE.Terms = {
|
|
Dawn: new Term( "Dawn", "暁" ),
|
|
Dusk: new Term( "Dusk", "黄昏" ),
|
|
|
|
Handle: new Term( "Handle", "" ),
|
|
Secret: new Term( "Secret", "" ),
|
|
|
|
Browse: new Term( "Resume", "" ),
|
|
Resume: new Term( "Resume", "" ),
|
|
};
|