vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 local L = AceLibrary("AceLocale-2.2"):new("RegenFu")
2  
3 L:RegisterTranslations("zhTW", function() return {
4 NAME = "FuBar - RegenFu",
5 DESCRIPTION = "顯示 HP/MP 回復速度。",
6  
7 HP_LABEL = "HP: ";
8 MP_LABEL = "MP: ";
9 FSR_LABEL = "FSR: ",
10  
11 MENU_SHOW_HP = "顯示 HP";
12 MENU_SHOW_MP = "顯示 MP";
13  
14 ["Show FSRT"] = "顯示 FSRT",
15  
16 MENU_SHOW_PERCENT = "顯示百分比";
17 MENU_SHOW_CURRENT = "顯示目前數值";
18  
19 ["Show In Combat Regen Total"] = "顯示戰鬥中回復統計",
20  
21  
22 MENU_HIDE_LABEL = "隱藏標籤";
23  
24 TOOLTIP1_LEFT = "HP:";
25 TOOLTIP2_LEFT = "MP:";
26 TOOLTIP3_LEFT = "最高HP回復:";
27 TOOLTIP4_LEFT = "最低HP回復:";
28 TOOLTIP5_LEFT = "最高MP回復:";
29 TOOLTIP6_LEFT = "最低MP回復:";
30 TOOLTIP7_LEFT = "前次戰鬥MP回復:";
31 TOOLTIP8_LEFT = "前次戰鬥HP回復:";
32 TOOLTIP9_LEFT = "最後一次戰鬥MP平均回復量:";
33  
34 ["AceConsole-commands"] = { "/regenfu" },
35  
36 ["Percent Regen While Casting"] = "施法中回復法力百分比",
37 ["Mana Regen Forumula (Spirit/<value>)"] = "法力回復公式(精神/<數值>)",
38 ["Mana Per Int"] = "每點智力增加的法力",
39  
40  
41 ["Reset FSR Data"] = "重置FSR資料",
42 ["Time Spent In Regen"] = "回魔花費時間",
43 ["(This Fight)"] = "(本次戰鬥)",
44 ["(Last Fight)"] = "(上次戰鬥)",
45  
46 ["Total Regen Time Observed"] = "總回復法力時間觀測",
47 ["% Of That Time In FSR"] = "5秒回1法花費時間(FSRT)時間百分比",
48 ["Spirit Needed To Equal 1mp5"] = "5秒回1法所等價的精神",
49 ["Int Needed To Equal 1mp5"] = "5秒回1法所等價的智力",
50 } end )
51