vanilla-wow-addons – Blame information for rev 1

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