Added messages_core.dat and extracted text from it to GitHub, moved game credits to Settings, made credits translatable, tweaked some messages

This commit is contained in:
Maruno17
2023-06-25 16:53:13 +01:00
parent 7d77c5f3fc
commit 22fa0f9c0b
36 changed files with 21505 additions and 100 deletions

View File

@@ -425,6 +425,29 @@ module Settings
"choice 27",
"choice 28"
]
#=============================================================================
# Your game's credits, in an array. You can allow certain lines to be
# translated by wrapping them in _INTL() as shown. Blank lines are just "".
# To split a line into two columns, put "<s>" in it. Plugin credits and
# Essentials engine credits are added to the end of these credits
# automatically.
def self.game_credits
return [
_INTL("My Game by:"),
"Maruno",
"",
_INTL("Also involved were:"),
"Anon<s>Ecksam Pell",
"Jane Doe<s>Nameless",
"Sue Donnim<s>Unknown",
"Untitled<s>",
"",
_INTL("Special thanks to:"),
"Pizza"
]
end
end
# DO NOT EDIT THESE!