commit from backup

This commit is contained in:
mikx
2018-01-05 06:40:15 -05:00
commit 58b08d6ae0
142 changed files with 29080 additions and 0 deletions

4
Locale/Load_Locales.xml Normal file
View File

@@ -0,0 +1,4 @@
<Ui xmlns="http://www.blizzard.com/wow/ui/">
<Script file="frFR.lua"/>
<Script file="usEN.lua"/>
</Ui>

35
Locale/frFR.lua Normal file
View File

@@ -0,0 +1,35 @@
-- MxW (MxW Addon)
-- By mikx
-- https://git.mikx.ca/wow-addons/MxW_Addon
-- Licensed under the GNU General Public License 3.0
-- See included License file for more informations.
local AceLocale = LibStub:GetLibrary("AceLocale-3.0");
local L = AceLocale:NewLocale("MxW", "frFR");
if not L then return; end
-- Message
L["Message_Loaded"] = " a été chargé."
-- Option
L["MainForm_Option_MinimumUI"] = "Valeur Minimale (Affichage dans l'UI.)";
L["MainForm_Option_MinimumUI_Desc"] = "Valeur minimale pour qu'un objet soit affiché dans MxW.";
L["MainForm_Option_MinimumUI_Usage"] = "<valeur en cuivre>";
-- MainForm
L["MainForm_Label_Close"] = "FERMER";
L["MainForm_Label_Money_Lab_Today"] = "Auj.";
L["MainForm_Label_Money_Lab_Month"] = "Mois";
L["MainForm_Label_Money_Global"] = "Or (Global) :"
L["MainForm_Label_Money_Player"] = "Or (Joueur):"
L["MainForm_Label_Money_Last"] = "Dernier Loot :";
L["MainForm_Label_Money_Min"] = "Min.";
L["MainForm_Label_LastBoE"] = "Dernier BOE :"
L["MainForm_Label_LastBoE_NONE"] = "n/d"
L["MainForm_Label_Loot"] = "- BUTIN -";
-- Alert Classes
L["Alert_Class_Consumable"] = "Consommable";
L["Alert_Class_TradeGoods"] = "Matériaux d'artisanat";
L["Alert_Class_Weapon"] = "Arme";
L["Alert_Class_Armor"] = "Armure";

31
Locale/usEN.lua Normal file
View File

@@ -0,0 +1,31 @@
-- MxW (MxW Addon)
-- By mikx
-- https://git.mikx.ca/wow-addons/MxW_Addon
-- Licensed under the GNU General Public License 3.0
-- See included License file for more informations.
local AceLocale = LibStub:GetLibrary("AceLocale-3.0");
local L = AceLocale:NewLocale("MxW", "enUS");
if not L then return; end
-- Message
L["Message_Loaded"] = " has been loaded."
-- Option
L["MainForm_Option_MinimumUI"] = "Minimum Value (Display in the UI.)";
L["MainForm_Option_MinimumUI_Desc"] = "Minimum value for an item to be displayed in MxW.";
L["MainForm_Option_MinimumUI_Usage"] = "<value in copper>";
--*_ADDON locales
L["MainForm_Label_Close"] = "CLOSE";
L["MainForm_Label_Money_Lab_Today"] = "Today";
L["MainForm_Label_Money_Lab_Month"] = "Month";
L["MainForm_Label_Money_Global"] = "Gold (Global):"
L["MainForm_Label_Money_Player"] = "Gold (Player):"
L["MainForm_Label_Money_Last"] = "Last Loot :";
L["MainForm_Label_Money_Min"] = "Min.";
L["MainForm_Label_LastBoE"] = "Last BOE:"
L["MainForm_Label_LastBoE_NONE"] = "n/a"
L["MainForm_Label_Loot"] = "- LOOT -";
L["Alert_TradeGoods"] = "Trade Goods";