34 lines
1.3 KiB
Lua
34 lines
1.3 KiB
Lua
-- RelationshipsAttune: Locales.lua
|
|
-- Simple English string table. Add more locales by extending RelationshipsAttune_L.
|
|
|
|
RelationshipsAttune_L = {
|
|
ADDON_NAME = "Relationships Attune",
|
|
SHORT_NAME = "RelationshipsAttune",
|
|
SLASH_HELP = "Relationships Attune commands:",
|
|
SLASH_SHOW = "/rattune show - show the window",
|
|
SLASH_HIDE = "/rattune hide - hide the window",
|
|
SLASH_TOGGLE = "/rattune - toggle the window",
|
|
SLASH_SYNC = "/rattune sync - request attunement data from your group",
|
|
SLASH_SCAN = "/rattune scan - rescan your own quest log and bags",
|
|
SLASH_RESET = "/rattune reset - wipe stored data for this character",
|
|
|
|
MSG_LOADED = "loaded. Type /rattune for options.",
|
|
MSG_SCANNED = "Rescanned your attunements.",
|
|
MSG_SYNC_SENT = "Requested attunement data from group.",
|
|
MSG_RESET = "Character data reset.",
|
|
|
|
UI_TITLE = "Relationships Attune",
|
|
UI_PLAYERS = "Players",
|
|
UI_STEPS = "Steps",
|
|
UI_COMPLETE = "Complete",
|
|
UI_IN_PROGRESS = "In Progress",
|
|
UI_NOT_STARTED = "Not Started",
|
|
UI_UNKNOWN = "Unknown",
|
|
UI_YOU = "You",
|
|
|
|
STEP_QUEST = "Quest",
|
|
STEP_ITEM = "Item",
|
|
STEP_REP = "Reputation",
|
|
STEP_LEVEL = "Level",
|
|
}
|