Thread Tools Display Modes
07/22/15, 10:02 AM   #1
Lodur
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 108
Need mail system subjects in other languages...

I need the exact mail subjects used for system mails sent for AvA rewards, Hirelings, Guild Stores, etc. in the languages supported by the game other than English.

Please don't translate these yourself. I need them from players running the game in other languages.

Here are the English ones as a list that I need equivalents for:

Code:
local TitlesAvA = { 
  -- English
  ["Rewards for the Worthy!"] = true,
  ["For the Covenant!"] = true  -- TODO: Need AD and EP versions too

  -- TODO: Add titles in other languages
}

local TitlesHirelings = {
  -- English
  ["Raw Blacksmith Materials"] = true, 
  ["Raw Woodworker Materials"] = true, 
  ["Raw Clothier Materials"] = true, 
  ["Raw Enchanter Materials"] = true, 
  ["Raw Provisioner Materials"] = true,
  ["Getting Groceries"] = true   -- TODO: is this one obsolete?

  -- TODO: Add titles in other languages
}

-- TODO: item sold. item expired, item bought, etc...
local TitlesStores = {
  -- English
  ["Item Expired"] = true,
  ["Item Purchased"] = true,
  ["Item Canceled"] = true,
  ["Item Sold"] = true

  -- TODO: Add titles in other languages
}
  Reply With Quote
07/22/15, 10:28 AM   #2
Baertram
Super Moderator
 
Baertram's Avatar
WoWInterface Super Mod
AddOn Author - Click to view addons
Join Date: Mar 2014
Posts: 4,912
These are the german ones I could find at my character mails so far:

Code:
local TitlesHirelings = {
  -- English
  ["Raw Blacksmith Materials"] = true, 
  ["Raw Woodworker Materials"] = true, 
  ["Raw Clothier Materials"] = true, 
  ["Raw Enchanter Materials"] = true, 
  ["Raw Provisioner Materials"] = true,
  ["Getting Groceries"] = true   -- TODO: is this one obsolete?

  -- TODO: Add titles in other languages

  -- German
  ["Schmiedematerial"] = true, 
  ["Schreinermaterial"] = true, 
  ["Schneidermaterial"] = true, 
  ["Verzauberermaterial"] = true, 
  ["Versorgerzutaten"] = true,
  ["Getting Groceries"] = true   -- TODO: is this one obsolete?

}
  Reply With Quote
07/22/15, 11:09 AM   #3
Ayantir
 
Ayantir's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2014
Posts: 1,019
Switch language ?

http://www.esoui.com/downloads/info8...eSelector.html
http://www.esoui.com/downloads/info1106-DevTools.html

Lua Code:
  1. /script SetCVar("Language.2", "en")
  2. /script SetCVar("Language.2", "fr")
  3. /script SetCVar("Language.2", "de")
  Reply With Quote
07/23/15, 12:27 AM   #4
Lodur
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 108
Originally Posted by Ayantir View Post
Switch language ?

http://www.esoui.com/downloads/info8...eSelector.html
http://www.esoui.com/downloads/info1106-DevTools.html

Lua Code:
  1. /script SetCVar("Language.2", "en")
  2. /script SetCVar("Language.2", "fr")
  3. /script SetCVar("Language.2", "de")
thanks that helped a lot.
  Reply With Quote
07/23/15, 12:30 AM   #5
Lodur
AddOn Author - Click to view addons
Join Date: Feb 2014
Posts: 108
I think I have them all so far except the equivalent of 'Item Expired' for guild store did not sell in time messages. I need them both for fr and de. I'll have my next guild 'Item Expired' in 6 days I think...

If any one can provide them soon then I can get a quicker release.

Thanks
  Reply With Quote

ESOUI » Developer Discussions » Translation Help » Need mail system subjects in other languages...

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off