vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 -- Version : French (thanks to Sylvaninox)
2 -- Last Update : 06/11/2005
3  
4  
5  
6 if ( GetLocale() == "frFR" ) then
7  
8 FE_BOBBER_NAME = "Flotteur";
9  
10 -- binding strings
11 BINDING_HEADER_FE_BINDS = FE_ADDON_NAME;
12 BINDING_NAME_FE_SWITCH = "Switch Gear";
13  
14 -- commands
15 FE_CMD_EASYCAST = "easycast";
16 FE_CMD_FASTCAST = "fastcast";
17 FE_CMD_SHIFTCAST = "shiftcast";
18 FE_CMD_SWITCH = "switch";
19 FE_CMD_RESET = "reset";
20  
21 -- syntax
22 FE_SYNTAX_ERROR = FE_ADDON_NAME.." Syntax Error: ";
23 FE_SYNTAX_EASYCAST = " |cff00ff00"..FE_CMD_EASYCAST.."|r [on|off] (Right clicking will cast while a fishing pole is equipped.)";
24 FE_SYNTAX_FASTCAST = " |cff00ff00"..FE_CMD_FASTCAST.."|r [on|off] (Automatically re-cast when you click the flotteur.)";
25 FE_SYNTAX_SHIFTCAST = " |cff00ff00"..FE_CMD_SHIFTCAST.."|r [on|off] (Requires holding the Shift key to use EasyCast.)";
26 FE_SYNTAX_SWITCH = " |cff00ff00"..FE_CMD_SWITCH.."|r (Switch between your fishing gear and regular gear.)";
27 FE_SYNTAX_RESET = " |cff00ff00"..FE_CMD_RESET.."|r (Clears your saved gear sets.)";
28  
29 -- Command Help
30 FE_COMMAND_HELP = {
31 FE_ADDON_NAME.." Help:",
32 "/fishease or /fe <command> [args] to perform the following commands:",
33 FE_SYNTAX_EASYCAST,
34 FE_SYNTAX_FASTCAST,
35 FE_SYNTAX_SHIFTCAST,
36 FE_SYNTAX_SWITCH,
37 FE_SYNTAX_RESET,
38 }
39  
40 -- Output Strings
41 FE_OUT_SET_POLE = "Fishing pole set to %s.";
42 FE_OUT_SET_MAIN = "Main hand set to %s.";
43 FE_OUT_SET_SECONDARY = "Secondary hand set to %s.";
44 FE_OUT_SET_FISHING_GLOVES = "Fishing gloves set to %s.";
45 FE_OUT_SET_FISHING_HAT = "Fishing hat set to %s.";
46 FE_OUT_SET_FISHING_BOOT = "Fishing boots set to %s.";
47 FE_OUT_SET_GLOVES = "Normal gloves set to %s.";
48 FE_OUT_SET_HAT = "Normal hat set to %s.";
49 FE_OUT_SET_BOOT = "Normal boots set to %s.";
50 FE_OUT_NEED_SET_POLE = "Please equip the fishing gear you want to use and run this command again.";
51 FE_OUT_NEED_SET_NORMAL = "Please equip your primary gear and run this command again.";
52 FE_OUT_ENABLED = "%s is Enabled";
53 FE_OUT_DISABLED = "%s is Disabled";
54 FE_OUT_EASYCAST = "P\195\170che facile";
55 FE_OUT_FASTCAST = "P\195\170che rapide";
56 FE_OUT_SHIFTCAST = "P\195\170che Shift";
57 FE_OUT_RESET = "Your saved fishing gear sets have been reset.";
58  
59 end