comparison lib/LibKeyBound-1.0/Locale-frFR.lua @ 88:fc83b3f5b322

Added keybindings using LibKeyBound-1.0, with modifications for Override bindings instead of standard bindings.
author Flick <flickerstreak@gmail.com>
date Sun, 31 Aug 2008 06:02:18 +0000
parents
children
comparison
equal deleted inserted replaced
87:3499ac7c3a9b 88:fc83b3f5b322
1 --[[
2 LibKeyBound-1.0 localization file
3 French by ?
4 --]]
5
6 if (GetLocale() ~= "frFR") then
7 return
8 end
9
10 local REVISION = tonumber(("$Revision: 77823 $"):match("%d+"))
11 if (LibKeyBoundLocale10 and REVISION <= LibKeyBoundLocale10.REVISION) then
12 return
13 end
14
15 LibKeyBoundLocale10 = {
16 REVISION = REVISION;
17 Enabled = "Mode Raccourcis activé";
18 Disabled = "Mode Raccourcis désactivé";
19 ClearTip = format("Appuyez sur %s pour effacer tous les raccourcis", GetBindingText("ESCAPE", "KEY_"));
20 NoKeysBoundTip = "Aucun raccourci";
21 ClearedBindings = "Suppression de tous les raccourcis de %s";
22 BoundKey = "%s associé à %s";
23 UnboundKey = "%s n'est plus associé à %s";
24 CannotBindInCombat = "Impossible de faire des raccourcis en combat";
25 CombatBindingsEnabled = "Sortie de combat, mode Raccourcis activé";
26 CombatBindingsDisabled = "Entrée en combat, mode Raccourcis désactivé";
27 BindingsHelp = "Survolez un bouton, puis appuyez sur une touche pour définir son raccourci. Pour effacer le raccourci actuel d'un bouton, appuyez sur %s";
28
29 -- This is the short display version you see on the Button
30 ["Alt"] = "A",
31 ["Ctrl"] = "C",
32 ["Shift"] = "S",
33 ["NumPad"] = "N",
34
35 ["Backspace"] = "BS",
36 ["Button1"] = "S1",
37 ["Button2"] = "S2",
38 ["Button3"] = "S3",
39 ["Button4"] = "S4",
40 ["Button5"] = "S5",
41 ["Capslock"] = "Cp",
42 ["Clear"] = "Cl",
43 ["Delete"] = "Del",
44 ["End"] = "En",
45 ["Home"] = "HM",
46 ["Insert"] = "Ins",
47 ["Mouse Wheel Down"] = "WD",
48 ["Mouse Wheel Up"] = "WU",
49 ["Num Lock"] = "NL",
50 ["Page Down"] = "PD",
51 ["Page Up"] = "PU",
52 ["Scroll Lock"] = "SL",
53 ["Spacebar"] = "Sp",
54 ["Tab"] = "Tb",
55
56 ["Down Arrow"] = "BA",
57 ["Left Arrow"] = "GA",
58 ["Right Arrow"] = "DA",
59 ["Up Arrow"] = "HA",
60 }
61 setmetatable(LibKeyBoundLocale10, {__index = LibKeyBoundBaseLocale10})