View Single Post
05-08-15, 03:46 PM   #12
myrroddin
A Pyroguard Emberseer
 
myrroddin's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 1,237
You can add some readability and breathing room by breaking chunks into paragraphs. Also, when localizing, you can refer to the global strings, which are built-in localizations of common strings. For example, replace
Code:
HLML1:SetText(L['Level'])
with
Code:
HLML1:SetText(LEVEL)
As for your columns, I would suggest adding, as the first column, the character name, because many players have alts. And see what you can do about justifying the columns as center-aligned.

A good start!
  Reply With Quote