View Single Post
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