vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 --===========================================================================--
2 ---------------------------- LootTracker by PNB ----------------------------
3 --===========================================================================--
4 -- LootTrackerStrings.deDE.lua
5 --
6 -- French strings
7 --===========================================================================--
8  
9 if (GetLocale() == "frFR") then
10  
11 LT_YOU = "Vous";
12 LT_LOOT_RECEIVED = "(.+) reçoit le butin : (.+).";
13 LT_LOOT_RECEIVED_YOU = "Vous recevez le butin : (.+).";
14 LT_LOOT_ITEM = "You receive item: (.+).";
15 LT_LOOT_CREATED = "You create: (.+)";
16 LT_LOOT_WON = "(.+) won: (.+)";
17 LT_FRIENDLY_DEATH = "(.+) die";
18 LT_HOSTILE_DEATH = "(.+) die";
19 LT_RECEIVED_ITEM = "Received item: (.+)";
20 LT_RECEIVED_MONEY = "Received ([%a%s%d]+).";
21 LT_MONEY_LOOT = "You loot (.+)";
22 LT_SHARED_MONEY_LOOT = "Your share of the loot is (.+)";
23 LT_REPUTATION_FACTION = "Your reputation with ([%a%s]+) has";
24 LT_REPUTATION_GAINED = "(%d+) reputation gained";
25 LT_REPUTATION_LOST = "(%d+) reputation lost";
26 LT_EXPERIENCE_GAINED = "You gain (%d+) experience";
27 LT_EXPERIENCE_GAINED_KILL = "you gain (%d+) experience";
28 LT_EXPERIENCE_GAINED_EXPLORE = "(%d+) experience gained";
29 LT_EXPERIENCE_GAINED_QUEST = "Experience gained: (%d+)";
30 LT_HONOR_GAINED_KILL = "Estimated Honor Points: (%d+)";
31 LT_SKILL_GAINED = "Your skill in (.+) has increased to (%d+)";
32  
33 LT_COIN_NAME = {
34 [0] = "Gold",
35 [1] = "Silver",
36 [2] = "Copper"
37 };
38  
39 end