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:
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user