vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 -------------------------------------------------------------------------------
2 -- TitanCritLine --
3 -- English Localization --
4 -------------------------------------------------------------------------------
5 -- A special thanks to the following for the english localization: --
6 -- --
7 -- Sordit --
8 -- http://ui.worldofwar.net/users.php?id=161051 --
9 -------------------------------------------------------------------------------
10  
11  
12  
13  
14 function TitanCritLine_LocalizeEN()
15  
16 NORMAL_HIT_TEXT = "Normal Hit";
17 NORMAL_TEXT = "Normal";
18 CRIT_TEXT = "Crit";
19  
20 TITAN_CRITLINE_OPTION_SPLASH_TEXT = "Display new high record splash screen";
21 TITAN_CRITLINE_OPTION_PLAYSOUNDS_TEXT = "Play Sounds.";
22 TITAN_CRITLINE_OPTION_PVPONLY_TEXT = "Only count PvP attacks.";
23 TITAN_CRITLINE_OPTION_SCREENCAP_TEXT = "Take screen capture on new records.";
24 TITAN_CRITLINE_OPTION_LVLADJ_TEXT = "Use Level Adjustment.";
25 TITAN_CRITLINE_OPTION_FILTER_HEALING_TEXT = "Do not count healing spells.";
26 TITAN_CRITLINE_OPTION_RESET_TEXT = "Reset All Records.";
27  
28 TITAN_CRITLINE_NEW_RECORD_MSG = "New %s Record!"; --e.g. New Ambush Record!
29  
30 COMBAT_HIT_MSG = "You hit (.+) for (%d+)."; --COMBATHITSELFOTHER
31 COMBAT_CRIT_MSG = "You crit (.+) for (%d+).";
32  
33 SPELL_HIT_MSG = "Your (.+) hits (.+) for (%d+).";
34 SPELL_CRIT_MSG = "Your (.+) crits (.+) for (%d+).";
35  
36 HEAL_SPELL_HIT_MSG = "Your (.+) heals (.+) for (%d+).";
37 HEAL_SPELL_CRIT_MSG = "Your (.+) critically heals (.+) for (%d+).";
38  
39 end