Merge branch 'main' into feature/diva

This commit is contained in:
stratic-dev
2024-02-20 21:01:41 +00:00
14 changed files with 328 additions and 159 deletions

View File

@@ -10,6 +10,7 @@ type i18n struct {
cafe struct {
reset string
}
timer string
commands struct {
noOp string
disabled string
@@ -51,6 +52,10 @@ type i18n struct {
error string
length string
}
timer struct {
enabled string
disabled string
}
ravi struct {
noCommand string
start struct {
@@ -112,6 +117,7 @@ func getLangStrings(s *Server) i18n {
case "jp":
i.language = "日本語"
i.cafe.reset = "%d/%dにリセット"
i.timer = "タイマー:%02d'%02d\"%02d.%03d (%df)"
i.diva.prayer.beads = []Bead{
{id: 1, name: "暴風の祈珠", description: "ーあらしまかぜのきじゅー\n暴風とは猛る思い。\n聞く者に勇気を与える。"},
@@ -215,6 +221,7 @@ func getLangStrings(s *Server) i18n {
{id: 24, name: "Bead of Thunderproof", description: "ーふうらいのきじゅー"},
{id: 25, name: "Bead of Immunity", description: "ーふうぞくのきじゅー"},
}
i.timer = "Time: %02d:%02d:%02d.%03d (%df)"
i.commands.noOp = "You don't have permission to use this command"
i.commands.disabled = "%s command is disabled"
@@ -243,6 +250,9 @@ func getLangStrings(s *Server) i18n {
i.commands.ban.error = "Error in command. Format: %s <id> [length]"
i.commands.ban.length = " until %s"
i.commands.timer.enabled = "Quest timer enabled"
i.commands.timer.disabled = "Quest timer disabled"
i.commands.ravi.noCommand = "No Raviente command specified!"
i.commands.ravi.start.success = "The Great Slaying will begin in a moment"
i.commands.ravi.start.error = "The Great Slaying has already begun!"