From acf114c9d904d8b6bfe12f4598edc03c7cba000f Mon Sep 17 00:00:00 2001 From: Eyal Solnik Date: Sat, 14 May 2016 14:20:59 +0300 Subject: [PATCH] Rename loc to locale and change directories to title case --- Broker_StartMenu.toc | 28 ++++++++++++++-------------- Locale/enUS.lua | 26 ++++++++++++++++++++++++++ loc/enUS.lua | 26 -------------------------- 3 files changed, 40 insertions(+), 40 deletions(-) create mode 100644 Locale/enUS.lua delete mode 100644 loc/enUS.lua diff --git a/Broker_StartMenu.toc b/Broker_StartMenu.toc index cf8dd5b..a59d4af 100644 --- a/Broker_StartMenu.toc +++ b/Broker_StartMenu.toc @@ -12,23 +12,23 @@ ## X-License: MIT. ## SavedVariables: Broker_StartMenuDb -libs\LibStub.lua -libs\CallbackHandler-1.0.lua -libs\LibDataBroker-1.1.lua -libs\AceLocale-3.0\AceLocale-3.0.xml -libs\AceDB-3.0\AceDB-3.0.xml -libs\Libra\Libra.xml -libs\LibraEx.lua -libs\EasyDisplay.lua +Libs\LibStub.lua +Libs\CallbackHandler-1.0.lua +Libs\LibDataBroker-1.1.lua +Libs\AceLocale-3.0\AceLocale-3.0.xml +Libs\AceDB-3.0\AceDB-3.0.xml +Libs\Libra\Libra.xml +Libs\LibraEx.lua +Libs\EasyDisplay.lua -loc\enUS.lua +Locale\enUS.lua Tooltip.lua Menu.lua Core.lua -options\UI.lua -options\General.lua -options\Accessibility.lua -options\Menu.lua -options\Profiles.lua \ No newline at end of file +Options\UI.lua +Options\General.lua +Options\Accessibility.lua +Options\Menu.lua +Options\Profiles.lua \ No newline at end of file diff --git a/Locale/enUS.lua b/Locale/enUS.lua new file mode 100644 index 0000000..25008cb --- /dev/null +++ b/Locale/enUS.lua @@ -0,0 +1,26 @@ +local addonName = ... +local L = LibStub("AceLocale-3.0"):NewLocale(addonName, "enUS", true, false) + +L["Reload UI"] = true +L["Options"] = true + +L["Block the menu in combat"] = true +L["Hide the logout and exit items from the menu"] = true +L["Hide the reload item from the menu"] = true +L["Hide the options item from the menu"] = true +L["Hide key bindings from the menu"] = true + +L["Tooltip"] = true +L["Hide tooltip"] = true +L["Max number of addons to display"] = true + +L["Accessibility"] = true +L["Bind up to four menu items to the mouse which you can use to open them quickly by clicking on the broker display."] = true +L["Mouse Setting"] = true +L["Hide the bindings from the tooltip"] = true + +L["Menu"] = true +L["Sort the order of the menu items.\n\nNote, having no sorting order (zero) hides the item from the menu."] = true + +L["Profiles"] = true +L["You can change the active database profile, so you can have different settings for every character.\n\nAltering profiles reloads the UI immediately."] = true \ No newline at end of file diff --git a/loc/enUS.lua b/loc/enUS.lua deleted file mode 100644 index 25008cb..0000000 --- a/loc/enUS.lua +++ /dev/null @@ -1,26 +0,0 @@ -local addonName = ... -local L = LibStub("AceLocale-3.0"):NewLocale(addonName, "enUS", true, false) - -L["Reload UI"] = true -L["Options"] = true - -L["Block the menu in combat"] = true -L["Hide the logout and exit items from the menu"] = true -L["Hide the reload item from the menu"] = true -L["Hide the options item from the menu"] = true -L["Hide key bindings from the menu"] = true - -L["Tooltip"] = true -L["Hide tooltip"] = true -L["Max number of addons to display"] = true - -L["Accessibility"] = true -L["Bind up to four menu items to the mouse which you can use to open them quickly by clicking on the broker display."] = true -L["Mouse Setting"] = true -L["Hide the bindings from the tooltip"] = true - -L["Menu"] = true -L["Sort the order of the menu items.\n\nNote, having no sorting order (zero) hides the item from the menu."] = true - -L["Profiles"] = true -L["You can change the active database profile, so you can have different settings for every character.\n\nAltering profiles reloads the UI immediately."] = true \ No newline at end of file -- 1.7.9.5