vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 local L = AceLibrary("AceLocale-2.0"):new("QuestsFu")
2  
3 L:RegisterTranslations("enUS", function() return {
4 QUEST_DONE = "(done)",
5 QUEST_FAILED = "(failed)",
6  
7 ELITE = "Elite",
8 DUNGEON = "Dungeon",
9 RAID = "Raid",
10 PVP = "PvP",
11  
12 TAG_ELITE = "+",
13 TAG_DUNGEON = "d",
14 TAG_RAID = "r",
15 TAG_PVP = "p",
16  
17 ARGUMENT_SHOWLEVELS = "levels",
18 ARGUMENT_SHOWDIFFICULTY = "difficulty",
19 ARGUMENT_SHOWIMPOSSIBLE = "impossible",
20 ARGUMENT_SHOWAREA = "area",
21 ARGUMENT_SHOWCLASSANYWAY = "classanyway",
22 ARGUMENT_SHOWCURRENTAREAONLY = "currentareaonly",
23 ARGUMENT_SHOWDESCRIPTION = "description",
24 ARGUMENT_COLOROBJECTIVES = "colorobjectives",
25 ARGUMENT_COMPLETEDOBJECTIVES = "completedobjectives",
26 ARGUMENT_CURRENTAREADESCRIPTIONONLY = "currentareadescriptiononly",
27 ARGUMENT_SHOWINITEMTOOLTIP = "initemtooltip",
28 ARGUMENT_SHOWTEXT = "paneltextis",
29 ARGUMENT_UPDATE = "update",
30  
31 MENU_SHOW_LEVELS = "Show quest levels",
32 MENU_SHOW_DIFFICULTY = "Show quest difficulty colors",
33 MENU_SHOW_IMPOSSIBLE = "Show impossible (red) quests",
34 MENU_SHOW_AREA = "Show quest areas",
35 MENU_SHOW_CLASS_ANYWAY = "Always show class quests",
36 MENU_SHOW_CURRENT_AREA_ONLY = "Show current area quests only",
37 MENU_SHOW_DESCRIPTION = "Show quest descriptions",
38 MENU_COLOR_OBJECTIVES = "Color objectives completion status",
39 MENU_SHOW_COMPLETED_OBJECTIVES = "Show completed objectives",
40 MENU_SHOW_CURRENT_AREA_DESCRIPTION_ONLY = "Show descriptions for current area quests only",
41 MENU_SHOW_IN_ITEM_TOOLTIP = "Show quest objectives in item/mob tooltips",
42 MENU_SHOW_TEXT = "Show text",
43 MENU_SHOW_TEXT_COMPLETE = "Show quests complete",
44 MENU_SHOW_TEXT_CURRENT = "Show current # of quests",
45 MENU_SHOW_TEXT_TOTAL = "Show total possible quests",
46 MENU_SHOW_TEXT_LASTMESSAGE = "Show last quest status message",
47  
48 TEXT_SCANNING = "Scanning...",
49 TEXT_LOADING = "Loading",
50  
51 TOOLTIP_HINT = "Click to open the quest log",
52 OPT_show = "Show",
53 OPT_show_d = "Choose what information to display",
54 OPT_text = "Text",
55 OPT_text_d = "Toolbar text",
56 OPT_current = "Current",
57 OPT_current_d = "Show current # of quests",
58 OPT_complete = "Completed",
59 OPT_complete_d = "Show # of quests completed",
60 OPT_total = "Total",
61 OPT_total_d = "Show total possible quests",
62 OPT_lastmessage = "Last message",
63 OPT_lastmessage_d = "Show last quest status message",
64 OPT_levels = "Levels",
65 OPT_levels_d = "Show quest levels",
66 OPT_levels_game = "In Game",
67 OPT_levels_game_d = "Show quest levels in the quest log and NPC dialogs",
68 OPT_levels_tablet = "In QuestsFu",
69 OPT_levels_tablet_d = "Show quest levels in the QuestsFu tooltip",
70 OPT_levels_zone = "Zones",
71 OPT_levels_zone_d = "Show zone levels in the QuestsFu tooltip",
72 OPT_diff = "Difficulty colors",
73 OPT_diff_d = "Show quest difficulty colors",
74 OPT_impossible = "Impossible quests",
75 OPT_impossible_d = "Show impossible (red) quests",
76 OPT_area = "Areas",
77 OPT_area_d = "Show quest areas",
78 OPT_caonly = "Current area only",
79 OPT_caonly_d = "Show current area quests only",
80 OPT_classanyway = "Class quests always",
81 OPT_classanyway_d = "Always show class quests",
82 OPT_description = "Description",
83 OPT_description_d = "Show quest descriptions",
84 OPT_cadonly = "Current area descriptions only",
85 OPT_cadonly_d = "Show current area quests only",
86 OPT_completed = "Completed objectives",
87 OPT_completed_d = "Show completed objectives",
88 OPT_tooltip = "Objectives in tooltip",
89 OPT_tooltip_d = "Show quest objectives in item/mob tooltips",
90 OPT_colorobj = "Color objectives",
91 OPT_colorobj_d = "Color objectives completion status",
92 OPT_wrap = "Wrap quests",
93 OPT_wrap_d = "Wrap long quest titles"
94 } end)