Mercurial > wow > reagentmaker
changeset 72:9cf4ca2145a3
Correct localization again, forgot to save file...
author | contrebasse |
---|---|
date | Sat, 14 May 2011 20:28:05 +0200 |
parents | 4f9fd025112b |
children | a77fd9d06ba4 |
files | ReagentMaker.lua |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ReagentMaker.lua Sat May 14 20:23:41 2011 +0200 +++ b/ReagentMaker.lua Sat May 14 20:28:05 2011 +0200 @@ -129,7 +129,7 @@ if #(A.data[reagentID]) == 1 and not A.data[reagentID][1].macro then local numMakable, reagentIndex = A.numMakable(reagentID) if not numMakable then - A.Error(L["The recipe to make the reagent seems to be hidden, it is not makable."]) + A.Error(A.L["The recipe to make the reagent seems to be hidden, it is not makable."]) return end if numMakable>0 then @@ -142,7 +142,7 @@ if (not A.data[reagentID][1].manyReagents) and A.data[A.data[reagentID][1][1]] then A.externalCraftWindow(A.data[reagentID][1][1],reagentID) else - A.Error(L["You do not have enough reagents to craft [%s]"]:format(GetItemInfo(reagentID) or "item #"..reagentID)) + A.Error(A.L["You do not have enough reagents to craft [%s]"]:format(GetItemInfo(reagentID) or "item #"..reagentID)) end return else