View Single Post
05/08/14, 09:42 AM   #3
Garkin
 
Garkin's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 832
Originally Posted by Aicam View Post
You might want to leave dustman as dustman, since it is the name of your addon. And it just simply sounds weird to use Müllmann as a proper noun. Also i was not able to check if Zenimax uses verziert as translation for ornate.
Thanks a lot, I will upload new version od Dustman in a few minutes.

And yes, german word for ornate is verziert, I have just tested it - you can change game client language using this command:
Code:
/script SetCVar("language.2", "de")
I have small private addon with various function that helps me with testing and debugging my addons. Among other sftuff it includes 3 handy lines:
lua Code:
  1. SLASH_COMMANDS["/langen"] = function() SetCVar("language.2", "en") end
  2. SLASH_COMMANDS["/langde"] = function() SetCVar("language.2", "de") end
  3. SLASH_COMMANDS["/langfr"] = function() SetCVar("language.2", "fr") end

Last edited by Garkin : 05/08/14 at 11:12 AM.
  Reply With Quote