SongSelect: Add maker identification

requires maker_id(int) column in songs table, and a new "makers" table with maker_id(int), name(text), url(text)
This commit is contained in:
Bui
2019-11-24 23:51:58 +00:00
parent 6e86292a27
commit 67e418bc4d
3 changed files with 136 additions and 3 deletions

View File

@@ -137,6 +137,10 @@
failedTests: "このテストは失敗しました:",
supportedBrowser: "%sなどのサポートされているブラウザを使用してください"
}
this.creative = {
creative: '創作',
maker: 'メーカー'
}
}
function StringsEn(){
this.id = "en"
@@ -277,6 +281,10 @@ function StringsEn(){
failedTests: "The following tests have failed:",
supportedBrowser: "Please use a supported browser such as %s"
}
this.creative = {
creative: 'Creative',
maker: 'Maker:'
}
}
function StringsCn(){
this.id = "cn"
@@ -417,6 +425,10 @@ function StringsCn(){
failedTests: "The following tests have failed:",
supportedBrowser: "Please use a supported browser such as %s"
}
this.creative = {
creative: '创作',
maker: '制作者'
}
}
function StringsTw(){
this.id = "tw"
@@ -557,6 +569,10 @@ function StringsTw(){
failedTests: "The following tests have failed:",
supportedBrowser: "Please use a supported browser such as %s"
}
this.creative = {
creative: '創作',
maker: '製作者'
}
}
function StringsKo(){
this.id = "ko"
@@ -697,6 +713,10 @@ function StringsKo(){
failedTests: "The following tests have failed:",
supportedBrowser: "Please use a supported browser such as %s"
}
this.creative = {
creative: '창작',
maker: '만드는 사람'
}
}
var allStrings = {
"ja": new StringsJa(),