View Single Post
11/04/19, 11:30 AM   #6
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,913
Try to use this version as base for your changes please.
I've removed bundled old libraries and added LibEventHandler with version 1.3 (without LibStub),
removed the total global varioables and added then to the addon's namespace LorePlay instead.
-> Variables like "Heads" or "Costume" will most likley be overwritten by other addons ...

LorePlay v1.60 Baertram
-> Currently investigating a few found errors! -> Okay, free for download now! Should work now!

The German translations base on your file, but the non-translated zone names (see my pst before) are still needed to be done.
If you want to test it with your local file be sure to rename it to de.lua and add the following inside your file at the top
Code:
--[[
	###################################################################
	A huge thank you to @iladrion for providing this de_ translation of
	LorePlay!
	###################################################################
]]--


LorePlay = LorePlay or {}

LorePlay.languageTable = {}
local languageTable = LorePlay.languageTable
This needs to be in there if you want to test it with my version 1.60:
Code:
LorePlay = LorePlay or {}

LorePlay.languageTable = {}
local languageTable = LorePlay.languageTable

Last edited by Baertram : 11/04/19 at 01:37 PM.
  Reply With Quote