View Single Post
07/19/19, 10:53 AM   #1
Dawnsight
AddOn Author - Click to view addons
Join Date: May 2019
Posts: 2
MoneyWhere Translation Help

First, big thanx to all of you who do translations. It is really appreciated.

The MoneyWhere addon tracks how currency (Gold, Telvar, Alliance Points) are earned and spent. Experience is also tracked. It puts them into categories to see where the money is coming from and going to.

It's like accounting and there are some accounting terms like Income, Expense, Net and Ledger.

I'm adding language support so any help would be appreciated.

Lua Code:
  1. ZO_CreateStringId("SI_MONEYWHERE_TOTALS", "Totals")
  2. ZO_CreateStringId("SI_MONEYWHERE_BANK", "Bank")
  3. ZO_CreateStringId("SI_MONEYWHERE_LOOT", "Loot") -- from creatures killed and open world chests
  4. ZO_CreateStringId("SI_MONEYWHERE_REWARD", "Reward") -- quest completion
  5. ZO_CreateStringId("SI_MONEYWHERE_ACTIVITY", "Activity") -- completing Dolemans or killing a dragon
  6. ZO_CreateStringId("SI_MONEYWHERE_PVP_REWARD", "PVP")
  7. ZO_CreateStringId("SI_MONEYWHERE_VENDOR", "Vendor") -- merchants
  8. ZO_CreateStringId("SI_MONEYWHERE_TRADE_HOUSE", "Guild") -- trade guilds, kiosks
  9. ZO_CreateStringId("SI_MONEYWHERE_COSTS", "Costs/Fees") -- cost for armor repair or teleporting
  10. ZO_CreateStringId("SI_MONEYWHERE_JUSTICE", "Justice") -- pickpocket
  11. ZO_CreateStringId("SI_MONEYWHERE_MAIL", "Mail") -- in game mail
  12. ZO_CreateStringId("SI_MONEYWHERE_OTHER", "Other")
  13.  
  14. ZO_CreateStringId("SI_MONEYWHERE_CURRENCY_GOLD", "Gold")
  15. ZO_CreateStringId("SI_MONEYWHERE_CURRENCY_ALLIANCEPOINTS", "Alliance Points")
  16. ZO_CreateStringId("SI_MONEYWHERE_CURRENCY_TELVAR", "Telvar")
  17. ZO_CreateStringId("SI_MONEYWHERE_EXPERIENCE", "Expereience")
  18.  
  19. ZO_CreateStringId("SI_MONEYWHERE_TRANSACTION_INCOME", "Income")
  20. ZO_CreateStringId("SI_MONEYWHERE_TRANSACTION_EXPENSE", "Expenses")
  21. ZO_CreateStringId("SI_MONEYWHERE_TRANSACTION_NET", "Net") -- The difference between Income and Expense
  22.  
  23. ZO_CreateStringId("SI_MONEYWHERE_EXTOTALS", "Totals")
  24. ZO_CreateStringId("SI_MONEYWHERE_EXDISCOVERY", "Discovery") -- finding a new point of interest
  25. ZO_CreateStringId("SI_MONEYWHERE_EXKILL", "Kill")
  26. ZO_CreateStringId("SI_MONEYWHERE_EXREWARD", "Reward") -- quest reward
  27. ZO_CreateStringId("SI_MONEYWHERE_EXACTIVITY", "Activity") -- completing Dolemans or killing a dragon
  28. ZO_CreateStringId("SI_MONEYWHERE_EXPVP", "PVP")
  29. ZO_CreateStringId("SI_MONEYWHERE_EXSKILLBOOK", "Skill Book")
  30. ZO_CreateStringId("SI_MONEYWHERE_EXTRADESKILL", "Trade Skill")
  31. ZO_CreateStringId("SI_MONEYWHERE_EXACHIEVEMENT", "Achieve") -- earning an achievement like Dungeon Vanquisher
  32. ZO_CreateStringId("SI_MONEYWHERE_EXJUSTICE", "Justice")
  33. ZO_CreateStringId("SI_MONEYWHERE_EXBOOK", "Book") -- learning a new motiff
  34. ZO_CreateStringId("SI_MONEYWHERE_EXOTHER", "Other")
  35.  
  36. ZO_CreateStringId("SI_MONEYWHERE_WHERE_DID_MY_MONEY_GO", "Where did my money go")
  37. ZO_CreateStringId("SI_MONEYWHERE_DATA_FOR_WHERE_DESCRIP", "This is the data for where you money is going")
  38. ZO_CreateStringId("SI_MONEYWHERE_LOAD_LEDGER_ON_INIT", "Load Ledger on Initialization")
  39. ZO_CreateStringId("SI_MONEYWHERE_LOAD_LEDGER_DESCRIP", "Check to load save transaction values when character loads")
  40. ZO_CreateStringId("SI_MONEYWHERE_TRACK_GOLD", "Track Gold")
  41. ZO_CreateStringId("SI_MONEYWHERE_TRACK_GOLD_DESCRIP", "Check to track gold transactions.")
  42. ZO_CreateStringId("SI_MONEYWHERE_TRACK_APOINTS", "Track Alliance Points")
  43. ZO_CreateStringId("SI_MONEYWHERE_TRACK_APOINTS_DESCRIP", "Check to track Alliance Points transactions.")
  44. ZO_CreateStringId("SI_MONEYWHERE_TRACK_TELVAR", "Track Telvar")
  45. ZO_CreateStringId("SI_MONEYWHERE_TRACK_TELVAR_DESCRIP", "Check to track Telvar transactions.")
  46. ZO_CreateStringId("SI_MONEYWHERE_TRACK_EXP", "Track Experience")
  47. ZO_CreateStringId("SI_MONEYWHERE_TRACK_EXP_DESCRIP", "Check to track Experience Sources.")
  48. ZO_CreateStringId("SI_MONEYWHERE_TRACK_RATE", "Track Rate")
  49. ZO_CreateStringId("SI_MONEYWHERE_TRACK_RATE_DESCRIP", "Check to track rates of income.")
  50. ZO_CreateStringId("SI_MONEYWHERE_MINUTES_TRACKED", "Minutes Tracked")
  51. ZO_CreateStringId("SI_MONEYWHERE_MINUTES_TRACKED_DESCRIP", "Number of minutes used to calculate rate.")
  52. ZO_CreateStringId("SI_MONEYWHERE_NEED_TO_RELOAD_UI", "Will need to reload the UI.")
  53.  
  54. ZO_CreateStringId("SI_MONEYWHERE_BANKED", "Banked")
  55. ZO_CreateStringId("SI_MONEYWHERE_POCKETS", "Pockets")
  56. ZO_CreateStringId("SI_MONEYWHERE_XP_CURRENT", "XP Cur") -- short for "Current Experience"
  57. ZO_CreateStringId("SI_MONEYWHERE_XP_GOAL", "Goal")
  58. ZO_CreateStringId("SI_MONEYWHERE_XP_NEED", "Need")
  59. ZO_CreateStringId("SI_MONEYWHERE_RATE_FOR_X_MIN", "Rate for %d Minutes") -- Rate = How fast, the %d is where the number of minutes will go
  Reply With Quote