vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 function FuBar_Locals_frFR()
2  
3 FuBarLocals = {
4 NAME = "FuBar",
5 DESCRIPTION = "Un panneau dans lequel des modules peuvent se brancher.",
6 COMMANDS = {"/fubar", "/fb", "/fbar"},
7 CMD_OPTIONS = {},
8  
9 MAP_ONOFF = {[0]="|cffff0000Off|r",[1]="|cff00ff00On|r"},
10  
11 MENU_REMOVE_PANEL = "Enlever le panneau",
12 MENU_SHOW_NEW_PANEL = "Creer un nouveau panneu",
13 MENU_ADJUST_FRAMES = "Auto-ajuster les cadres",
14 MENU_ATTACH = "Attach", -- CHECK
15 MENU_ATTACH_TO_TOP = "Encrer en haut de l'ecran",
16 MENU_ATTACH_TO_BOTTOM = "Encrer en bas de l'ecran",
17 MENU_DETACH_PANEL = "Detacher le panneau",
18 MENU_ABOUT = "A propos",
19 MENU_LOCK_PANEL = "Verouiller le panneau",
20 MENU_PROFILE = "Profile",
21 MENU_DEFAULT_PROFILE = "Profile de default",
22 MENU_AUTO_HIDE = "Dissumulage automatique",
23 MENU_AUTO_HIDE_TOP = "Auto-hide top",
24 MENU_AUTO_HIDE_BOTTOM = "Auto-hide bottom",
25 MENU_SPACING = "Spacing", -- CHEcK
26 MENU_FONT_SIZE = "Font size", -- CHEcK
27 MENU_THICKNESS = "Thickness", -- CHEcK
28 WARN_REMOVE_PANEL = "Are you sure you want to remove this panel?", -- CHECK
29 MENU_LEFT_ALIGNED = "Left-aligned", -- CHECK
30 MENU_CENTER_ALIGNED = "Center-aligned", -- CHECK
31 MENU_RIGHT_ALIGNED = "Right-aligned", -- CHECK
32 MENU_TOOLTIP = "Tooltip", -- CHECK
33 MENU_PANEL = "Panel", -- CHECK
34 MENU_TEXTURE = "Texture", -- CHECK
35 MENU_OVERFLOW_PLUGINS = "Overflow plugins", -- CHECK
36  
37 ARGUMENT_ADJUST = "adjust",
38 ARGUMENT_AUTOHIDE = "autohide",
39  
40 MENU_CATEGORIES = {
41 bars = "Bars d'interfaces",
42 char = "Chat/Communications",
43 class = "Amelioration Specefique a une Classe",
44 combat = "Combat/Casting",
45 compilations = "Compilations",
46 interface = "Ameliorations d'Interface",
47 inventory = "Ameliorations d'items/d'inventaire",
48 map = "Amelioration de carte",
49 others = "Autres",
50 professions = "Professions",
51 quests = "Ameliorations de Quetes",
52 raid = "Aide raid",
53 },
54 MENU_OPTIONS = "Options",
55 }
56  
57 FuBarLocals.CMD_OPTIONS = {
58 {
59 option = FuBarLocals.ARGUMENT_ADJUST,
60 desc = "Bascule l'auto-ajustement des cadres blizzard.",
61 method = "ToggleAdjust"
62 },
63 {
64 option = FuBarLocals.ARGUMENT_AUTOHIDE,
65 desc = "Bascule la dissimulation automatique du text.",
66 method = "ToggleAutoHiding"
67 },
68 }
69  
70 end