View Single Post
11/05/16, 10:43 AM   #33
Lionas
 
Lionas's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2016
Posts: 29
Originally Posted by ForgottenLight View Post
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 = "д",

Hi, here is jp translation.

Lua Code:
  1. Mode[6] = {Capt = "試練",},
  2. ToolTip[19] = "試練の週報酬が入手可能になるまでの時間",
  3. OptTrialList = {"カウントダウンタイマー","日時 (MM/DD hh:mi)"},
  4. OptTrialAvl  = "次の試練の箱が入手可能です...",
  5. OptTrialAvlF = "この設定では、いつ試練の完了時に入手可能になるかを示す情報の形式を選択できます。利用可能なオプションは'日時'と'カウントダウンタイマー'です。",

Lua Code:
  1. ToolTip[11] = "アンドーンテッドの鍵",

Lua Code:
  1. DayMarker = "日",
("d" maybe available)
  Reply With Quote