13 lines
271 B
Lua
13 lines
271 B
Lua
local Translations = {
|
|
ui = {
|
|
last_location = "Last Location",
|
|
confirm = "Confirm",
|
|
where_would_you_like_to_start = "Where would you like to start?",
|
|
}
|
|
}
|
|
|
|
Lang = Lang or Locale:new({
|
|
phrases = Translations,
|
|
warnOnMissing = true
|
|
})
|