View Single Post
11/02/16, 08:32 AM   #29
ForgottenLight
 
ForgottenLight's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2015
Posts: 48
I need help with translation some text for new version of addon:
Lua Code:
  1. Mode[6] = {Capt = "Trials",},
  2. ToolTip[19] = "The availability of weekly trials rewards",
  3. OptTrialList = {"countdown timer","date & time (MM/DD hh:mi)"},
  4. OptTrialAvl  = "Next trial coffer will be available...",
  5. OptTrialAvlF = "This setting allows you to choose the format of the information when the container with the reward for completing the Trial will be available. Available options are 'date & time' and 'countdown timer'.",

The reward means purple coffers. Perhaps for the tooltip you can find a better option than a literal translation.
OptTrialAvlF is ToolTip for OptTrialAvl and can contain long text.

Only for Japanese need:
Lua Code:
  1. ToolTip[11] = "Undaunted Key",

Also, for French and Japanese need a marker of the day for format "2d 20:13".
Lua Code:
  1. DayMarker = "d",
For example (prior to reset the counter left two days 20 hours and 13 minutes):
EN: "2d 20:13" -- DayMarker = "d",
DE: "2t 20:13" -- DayMarker = "t",
RU: "2д 20:13" -- DayMarker = "д",

Last edited by ForgottenLight : 11/03/16 at 06:48 AM.
  Reply With Quote