init commit

This commit is contained in:
unknown
2023-11-08 17:52:35 -08:00
parent 2e903cb642
commit 5173547b24
14 changed files with 553 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
local Translations = {
error = {
canceled = "Canceled",
not_standing_up = "You need to be on solid ground to put this on...",
need_otube = "you need to refill your oxygen! Get a replacement air supply!",
oxygenlevel = "Your air level is %{oxygenlevel}, it must be at 0 to refill!",
},
success = {
took_out = "You took your diving gear off.",
tube_filled = "You've successfully refilled your air tank!"
},
info = {
put_suit = "Putting on your diving suit...",
pullout_suit = "Taking off your diving suit...",
},
warning = {
oxygen_one_minute = "You have less than one minute of air remaining!",
oxygen_running_out = "Your air tank is running out of air!",
},
}
Lang = Lang or Locale:new({
phrases = Translations,
warnOnMissing = true
})