vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 function GuildFu_Locals_frFR()
2 GuildFULocals = {
3 NAME = "FuBar - GuildFu",
4 DESCRIPTION = "Keeps track of your Guild members.",
5 COMMANDS = {"/fbg", "/fbguild", "/fubar_guild"},
6 CMD_OPTIONS = {},
7 ARGUMENT_HIDELOCATION = "hideLocation",
8 ARGUMENT_HIDELEVEL = "hideLevel",
9 ARGUMENT_HIDECLASS = "hideClass",
10 ARGUMENT_HIDELABEL = "hideLabel",
11 ARGUMENT_SETLEADTEXT = "leadtext",
12 ARGUMENT_SETLEVELRANGE = "levelrange",
13 ARGUMENT_SETREFRESH = "refreshrate",
14 MENU_DISPLAY = "Show",
15 MENU_ORDER = "Order",
16 MENU_SHOW_LOCATION = "Show location",
17 MENU_SHOW_LEVEL = "Show level",
18 MENU_SHOW_CLASS = "Show class",
19 MENU_SHOW_RACE = "Show race",
20 MENU_SHOW_RANK = "Show rank",
21 MENU_SHOW_PUBLICNOTES = "Show public notes",
22 MENU_SHOW_OFFICERNOTES = "Show officer notes",
23 MENU_SHOW_LABEL = "Show label",
24 MENU_SHOW_TOTAL = "Montre totale",
25 MENU_COLORNAMES = "Color playernames according to class",
26 MENU_ORDER_LOCATION = "By location",
27 MENU_ORDER_LEVEL = "By level",
28 MENU_ORDER_CLASS = "By class",
29 MENU_ORDER_NAME = "By name",
30 MENU_INVITE = "Invite",
31 MENU_WHISPER = "Whisper",
32 MENU_PAGING = "Use Paging",
33 MENU_PAGING_PREV = "|cff00ff33Previous page ...|r",
34 MENU_PAGING_NEXT = "|cff00ff33Next page ...|r",
35 MENU_PAGING_PAGE = "|cffffcc00Page %i/%i|r",
36 MENU_PAGING_WARNING = "|cffff0000Too many persons, use paging.|r",
37 MAX_ITEMS_SHOW = 25,
38 WowMaxLevel = 60,
39 REFRESHINTERVAL = 120,
40 MENU_FILTER_LEVELRANGE = 5,
41 MENU_FILTER = "Filter",
42 MENU_FILTER_CLASS = "Class",
43 MENU_FILTER_LEVEL = "Level",
44 MENU_FILTER_ZONE = "Zone",
45 MENU_FILTERS_ZONE= {
46 "People in my zone",
47 "People not in an instance",
48 "People not in battlegrounds"
49 },
50 SYSMSG_ONLINE = "has come online",
51 SYSMSG_OFFLINE = "has gone offline",
52 SYSMSG_ADDED = "added to friends.",
53 SYSMSG_REMOVED = "removed from friends list.",
54 TOOLTIP_TITLE = "Guidlist",
55 TOOLTIP_NOTINGUILD = "Not in guild",
56 TOOLTIP_WARNING = "|cffff0000Too many persons, use filtering.|r",
57 hordeClassValues = {"Tous", "Guerrier", "Mage", "Voleur", "Druide", "Chasseur", "Chaman", "Pr\195\170tre", "D\195\169moniste"},
58 allianceClassValues = {"Tous", "Guerrier", "Mage", "Voleur", "Druide", "Chasseur", "Pr\195\170tre", "D\195\169moniste", "Paladin"},
59  
60 colorclasses = {
61 ["Chasseur"] = "|cffaad372",
62 ["D\195\169moniste"] = "|cff9382c9",
63 ["Pr\195\170tre"] = "|cffffffff",
64 ["Paladin"] = "|cfff48cba",
65 ["Chaman"] = "|cfff48cba",
66 ["Mage"] = "|cff68ccef",
67 ["Voleur"] = "|cfffff468",
68 ["Druide"] = "|cffff7c0a",
69 ["Guerrier"] = "|cffc69b6d"
70 },
71 dungeonlist = {
72 ["Ahn'Qiraj"] = TRUE,
73 ["Blackfathom Deeps"] = TRUE,
74 ["Blackrock Depths"] = TRUE,
75 ["Blackrock Spire"] = TRUE,
76 ["Blackwing Lair"] = TRUE,
77 ["Caverns of Time"] = TRUE,
78 ["Dire Maul"] = TRUE,
79 ["Gnomeregan"] = TRUE,
80 ["Maraudon"] = TRUE,
81 ["Onyxia's Lair"] = TRUE,
82 ["Ragefire Chasm"] = TRUE,
83 ["Razorfen Downs"] = TRUE,
84 ["Razorfen Kraul"] = TRUE,
85 ["Scarlet Monastery"] = TRUE,
86 ["Scholomance"] = TRUE,
87 ["Shadowfang Keep"] = TRUE,
88 ["Stormwind Stockade"] = TRUE,
89 ["Stratholme"] = TRUE,
90 ["The Deadmines"] = TRUE,
91 ["The Molten Core"] = TRUE,
92 ["The Temple of Atal'Hakkar"] = TRUE,
93 ["The Wailing Caverns"] = TRUE,
94 ["Thunder Bluff"] = TRUE,
95 ["Uldaman"] = TRUE,
96 ["Zul'Farrak"] = TRUE,
97 ["Zul'Gurub"] = TRUE
98 },
99 battlegroundlist = {
100 ["Alterac Valley"] = TRUE,
101 ["Arathi Basin"] = TRUE,
102 ["Warsong Gulch"] = TRUE
103 }
104 }
105  
106 GuildFULocals.CMD_OPTIONS = {
107 {
108 option = GuildFULocals.ARGUMENT_SETLEADTEXT,
109 desc = "Sets the leading text displayed in the bar.",
110 method = "SetLeadText",
111 input = TRUE,
112 args = {
113 {
114 option = "<text>",
115 desc = "This sets the leading text before the numbers in the bosspanel. Setting it to nil will clear the text."
116 }
117 }
118 },
119 {
120 option = GuildFULocals.ARGUMENT_SETLEVELRANGE,
121 desc = "Sets the levelrange for the level filter in the menu.",
122 method = "SetLevelRange",
123 input = TRUE,
124 args = {
125 {
126 option = "<#>",
127 desc = "A number between 0 and 10. Setting it to 0 will result in a filter for your level."
128 }
129 }
130 },
131 {
132 option = GuildFULocals.ARGUMENT_SETREFRESH,
133 desc = "Sets the time in seconds between forced refreshes of the guild list.",
134 method = "SetRefreshRate",
135 input = TRUE,
136 args = {
137 {
138 option = "<#>",
139 desc = "A number between 1 and 300. Setting it outside these numbers will result in setting it to the default value: " .. GuildFULocals.REFRESHINTERVAL
140 }
141 }
142 }
143 }
144  
145 end