view localization.lua @ 74:e837f5681fbb

Update todos
author contrebasse
date Sat, 14 May 2011 20:59:30 +0200
parents 60871b43531d
children 31009ddc7d31
line wrap: on
line source
local addonName, A = ...

local L = setmetatable({}, {
	__index = function(self, key)
		return tostring(key)
	end,
})
A.L = L

--@debug@
L["Recipe link not found for %s"] = "Recipe link not found for %s"
L["The recipe to make the reagent seems to be hidden, it is not makable."] = "The recipe to make the reagent seems to be hidden, it is not makable."
L["You do not have enough [%s] to craft [%s]"] = "You do not have enough [%s] to craft [%s]"
L["You do not have enough reagents to craft [%s]"] = "You do not have enough reagents to craft [%s]"
--@end-debug@

--@localization(locale="enUS", format="lua_additive_table", handle-unlocalized="english")@

local locale = GetLocale()
if locale == 'frFR' then

--@localization(locale="frFR", format="lua_additive_table", handle-unlocalized="comment")@

end