vanilla-wow-addons – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 -- <= == == == == == == == == == == == == =>
2 -- Combat Stats 2 Localization file
3 -- <= == == == == == == == == == == == == =>
4 COMBATSTATS_CONFIG_HEADER = "CombatStats";
5 COMBATSTATS_CONFIG_HEADER_INFO = "These options modify CombatStats.\n ";
6 COMBATSTATS_CONFIG_ONOFF = "Turn CombatStats On/Off";
7 COMBATSTATS_CONFIG_ONOFF_INFO = "If this box is unchecked,\n CombatStats is off.";
8 COMBATSTATS_CHAT_COMMAND_INFO = "Tracks CombatStats and generates data.";
9 COMBATSTATS_CONFIG_HIDEONNOTARGET = "Hide When No Target";
10 COMBATSTATS_CONFIG_HIDEONNOTARGET_INFO = "If enabled then Combat Stats will only be visible when there is a target.";
11 COMBATSTATS_CONFIG_USEMOUSEOVER = "Show CombatStats on mouseover";
12 COMBATSTATS_CONFIG_USEMOUSEOVER_INFO = "If enabled, Combat Stats will appear when you mouseover the title.\nIf disabled, Combat Stats will appear when you click on the title."
13 COMBATSTATS_CONFIG_ENDOFFIGHT = "Show end of fight statistics";
14 COMBATSTATS_CONFIG_ENDOFFIGHT_INFO = "If enabled then Combat Stats will show end of fight DPS/damage stats.";
15  
16  
17 COMBSTATS_CHAT_COMMAND_RESET = "Reset combat stats data.";
18  
19 CS_CHAT_COMMAND_INFO = "Type /cs or /combatstats for usage instructions.";
20  
21 CS_FRAME_GEN_ATTACK_NAME = "Attack Name :";
22 CS_FRAME_TICKS_TEXT = "DOT ticks.";
23 CS_FRAME_HOT_TEXT = "HOT ticks.";
24 CS_FRAME_HITS_TEXT = "hits out of";
25 CS_FRAME_SWINGS_TEXT = "swings or uses.";
26 CS_FRAME_MISSES_TEXT = "Misses : ";
27 CS_FRAME_DODGES_TEXT = "Dodges : ";
28 CS_FRAME_PARRIES_TEXT = "Parries : ";
29 CS_FRAME_BLOCKS_TEXT = "Blocks : ";
30 CS_FRAME_RESISTS_TEXT = "Resists : ";
31 CS_FRAME_IMMUNE_TEXT = "Immune : ";
32 CS_FRAME_EVADES_TEXT = "Evades : ";
33 CS_FRAME_DEFLECTS_TEXT = "Deflects : ";
34 CS_FRAME_PERCENT_OVERALL_TEXT = "Percentage of overall damage : ";
35 CS_FRAME_TIME_LASTCRIT_TEXT = "Time since last crit : ";
36 CS_FRAME_TOTAL_TEXT = "Total : ";
37 CS_FRAME_DAMAGE_TEXT = "Damage : ";
38 CS_FRAME_MINMAX_TEXT = "Min / Max : ";
39 CS_FRAME_AVGDMG_TEXT = "Avg. Damage : ";
40 CS_FRAME_PERCENTDMG_TEXT = "% Of Dmg. : ";
41  
42 CS_FRAME_PERCENT_OVERALL_TEXT_HEAL = "Percentage of overall HP healed: ";
43 CS_FRAME_DAMAGE_TEXT_HEAL = "HP Healed : ";
44 CS_FRAME_AVGDMG_TEXT_HEAL = "Avg. Healed : ";
45 CS_FRAME_PERCENTDMG_TEXT_HEAL = "% Of Total : ";
46 CS_FRAME_HITS_TEXT_HEAL = "heal(s) cast.";
47  
48 CS_DROPDOWN_SELECT_TEXT = "Select Attack";
49  
50 CS_TT_OVERALLPCT_TEXT = "Overall critical hit percentage.";
51 CS_TT_OVERALLDMGPCT_TEXT = "Percentage of the total damage done by all attacks that was done by this attack.";
52 CS_TT_NONCRIT_HITSPCT_TEXT = "Percent of this attack's hits that are non critical hits.";
53 CS_TT_CRIT_HITSPCT_TEXT = "Percent of this attack's hits that are critical hits.";
54 CS_TT_NONCRIT_DMGPCT_TEXT = "Percentage of this attack's damage that was from non critical hits.";
55 CS_TT_CRIT_DMGPCT_TEXT = "Percentage of this attack's damage that was from critical hits.";
56  
57 CS_TT_OVERALLPCT_TEXT_NONHEAL = "Overall critical hit percentage.";
58 CS_TT_OVERALLDMGPCT_TEXT_NONHEAL = "Percentage of the total damage done by all attacks that was done by this attack.";
59 CS_TT_NONCRIT_HITSPCT_TEXT_NONHEAL = "Percent of this attack's hits that are non critical hits.";
60 CS_TT_CRIT_HITSPCT_TEXT_NONHEAL = "Percent of this attack's hits that are critical hits.";
61 CS_TT_NONCRIT_DMGPCT_TEXT_NONHEAL = "Percentage of this attack's damage that was from non critical hits.";
62 CS_TT_CRIT_DMGPCT_TEXT_NONHEAL = "Percentage of this attack's damage that was from critical hits.";
63  
64 CS_TT_NONCRIT_HITSPCT_TEXT_HEAL = "Percent of this spell's hits that are non critical hits.";
65 CS_TT_CRIT_HITSPCT_TEXT_HEAL = "Percent of this spell's hits that are critical hits.";
66 CS_TT_OVERALLDMGPCT_TEXT_HEAL = "Percentage of the total HP healed by all heal spells that was done by this spell.";
67 CS_TT_CRIT_DMGPCT_TEXT_HEAL = "Percentage of HP healed from this spell that was from critical hits.";
68 CS_TT_NONCRIT_DMGPCT_TEXT_HEAL = "Percentage of HP healed from this spell that was from non critical hits.";
69  
70  
71 RED_FONT_COLOR_CODE = "|cffff2020";
72 NORMAL_FONT_COLOR_CODE = "|cffffd200";
73 WHITE_FONT_COLOR_CODE = "|cffffffff";
74 GREEN_FONT_COLOR_CODE = "|cff20ff20";
75 BLUE_FONT_COLOR_CODE = "|cff2020ff";
76  
77 DPS_DISPLAY = "%.2f";
78  
79 CLOCK_TIME_DAY = "%d day";
80 CLOCK_TIME_HOUR = "%d hour";
81 CLOCK_TIME_MINUTE = "%d minute";
82 CLOCK_TIME_SECOND = "%d second";
83  
84 if ( GetLocale() == "deDE" ) then
85 -- Translation by pc
86  
87 COMBATSTATS_CONFIG_HEADER = "Kampfstatisktik";
88 COMBATSTATS_CONFIG_HEADER_INFO = "Diese Einstellungen verändern die Kampstatistik.\n ";
89 COMBATSTATS_CONFIG_ONOFF = "Kampfstatisktik Ein-/Ausschalten";
90 COMBATSTATS_CONFIG_ONOFF_INFO = "Wenn diese Checkbox markiert ist,\n ist die Kampfstatistik angeschaltet.";
91 COMBATSTATS_CHAT_COMMAND_INFO = "Ermittelt Kampfstatistik und generiert Daten.";
92  
93 RED_FONT_COLOR_CODE = "|cffff2020";
94 NORMAL_FONT_COLOR_CODE = "|cffffd200";
95 WHITE_FONT_COLOR_CODE = "|cffffffff";
96 GREEN_FONT_COLOR_CODE = "|cff20ff20";
97 BLUE_FONT_COLOR_CODE = "|cff2020ff";
98  
99 DPS_DISPLAY = "Gesamt DPS :: %.2f";
100  
101 CLOCK_TIME_DAY = "%d Tag";
102 CLOCK_TIME_HOUR = "%d Stunde";
103 CLOCK_TIME_MINUTE = "%d Minute";
104 CLOCK_TIME_SECOND = "%d Sekunde";
105  
106 end