View Single Post
02-18-24, 03:51 AM   #25
Hubb777
A Flamescale Wyrmkin
 
Hubb777's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2024
Posts: 122
Originally Posted by Fizzlemizz View Post
Remove the quotes from around "L.Waiting" and "L.Running"

Lua Code:
  1. local msg = L.Waiting
  2. if inevent then
  3.     msg = L.Running
  4. end

You can test by using
Code:
local locale = "deDE"
-- or
local locale = "zhCN"
instead of
Code:
local locale = GetLocale()
Yes, it all worked. I'm not that good at LUA code yet, but I read a lot on this topic.
In one of the forum topics, I found your advice on how to make a window that can be moved around the screen. And I was able to apply this to my "button" and now it can be moved

I am very happy that I found this great forum.
  Reply With Quote