Skip to content

Commit

Permalink
Memory: Update Localizations
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvanaar committed Jun 9, 2020
1 parent ae25a86 commit d117704
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions modules/Memory.lua
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,19 @@ Prat:AddModuleToLoad(function()
--@debug@
PL:AddLocale(PRAT_MODULE, "enUS", {
["module_name"] = "Memory",
["module_desc"] = "Support saveing the Blizzard chat settings to your profile so they can be synced accross all your charactaers",
["module_desc"] = "Support saving the Blizzard chat settings to your profile so they can be synced across all your characters",
module_info = "|cffff8888THIS MODULE IS EXPERIMENTAL|r \n\n This module allows you to load/save all your chat settings and frame layout. These settings can be loaded on any of your characters",
autoload_name = "Load Settings Automaticallys",
autoload_name = "Load Settings Automatically",
autoload_desc = "Automatically load the saved settings when you log in",
load_name = "Load Settings",
load_desc = "Load tthe chat frame/tabs from the last save",
load_desc = "Load the chat frame/tabs from the last save",
save_name = "Save Settings",
save_desc = "Save the currect chat frame/tab configuration",
save_desc = "Save the current chat frame/tab configuration",
msg_nosettings = "No stored settings",
msg_settingsloaded = "Settings Loaded",
command_header_name = "Commands",
options_header_name = "Options"
options_header_name = "Options",
msg_loadfailed = "Could not fully restore the chat settings"
})
--@end-debug@

Expand Down Expand Up @@ -478,7 +479,7 @@ end

if self.needsLoading > 10 then
self.working = nil
self:Output("Could not load settings")
self:Output(PL.msg_loadfailed)
return
end
self:ScheduleTimer("LoadSettings", 2)
Expand Down

0 comments on commit d117704

Please sign in to comment.