-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
1158 lines (1158 loc) · 50.6 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"yes": "yes",
"no": "no",
"abbr_thousand": "k",
"abbr_million": "m",
"abbr_billion": "b",
"abbr_trillion": "t",
"abbr_quadrillion": "q",
"abbr_not_available": "N/A",
"abbr_pick": "P",
"abbr_win": "W",
"abbr_number": "No.",
"analysis_eff": "Lane efficiency",
"analysis_farm_drought": "Lowest GPM in 5 minute interval",
"analysis_skillshot": "Skillshots landed",
"analysis_late_courier": "Courier upgrade delay",
"analysis_wards": "Wards placed",
"analysis_roshan": "Roshans killed",
"analysis_rune_control": "Runes obtained",
"analysis_unused_item": "Unused active items",
"analysis_expected": "of",
"announce_dismiss": "Dismiss",
"announce_github_more": "View on GitHub",
"api_meta_description": "The OpenDota API gives you access to all the advanced Dota 2 stats offered by the OpenDota platform. Access performance graphs, heatmaps, wordclouds, and more. Get started for free.",
"api_title": "The OpenDota API",
"api_subtitle": "Build on top of the OpenDota platform. Bring advanced stats to your app and deep insights to your users.",
"api_details_free_tier": "Free Tier",
"api_details_premium_tier": "Premium Tier",
"api_details_price": "Price",
"api_details_price_free": "Free",
"api_details_price_prem": "$price per $unit calls",
"api_details_key_required": "Key Required?",
"api_details_key_required_free": "No",
"api_details_key_required_prem": "Yes -- requires payment method",
"api_details_call_limit": "Call Limit",
"api_details_call_limit_free": "$limit per month",
"api_details_call_limit_prem": "Unlimited",
"api_details_rate_limit": "Rate Limit",
"api_details_rate_limit_val": "$num calls per minute",
"api_details_support": "Support",
"api_details_support_free": "Community support via Discord group",
"api_details_support_prem": "Priority support from core developers",
"api_get_key": "Get my key",
"api_docs": "Read the docs",
"api_header_details": "Details",
"api_charging": "You\'re charged $cost per call, rounded up to the nearest cent.",
"api_credit_required": "Getting an API key requires a linked payment method. We\'ll automatically charge the card at the beginning of the month for any fees owed.",
"api_failure": "500 errors don\'t count as usage, since that means we messed up!",
"api_error": "There was an error with the request. Please try again. If it continues, contact us at [email protected].",
"api_login": "Login to access API Key",
"api_update_billing": "Update billing method",
"api_delete": "Delete key",
"api_key_usage": "To use your key, add $param as a query parameter to your API request:",
"api_billing_cycle": "The current billing cycle ends on $date.",
"api_billed_to": "We\'ll automatically bill the $brand ending in $last4.",
"api_support": "Need support? Email $email.",
"api_header_usage": "Your Usage",
"api_usage_calls": "# API calls",
"api_usage_fees": "Estimated Fees",
"api_month": "Month",
"api_header_key": "Your Key",
"api_header_table": "Get started for free. Keep going at a ridiculously low price.",
"app_name": "OpenDota",
"app_language": "Language",
"app_localization": "Localization",
"app_description": "Open source Dota 2 data platform",
"app_about": "About",
"app_privacy_terms": "Privacy & Terms",
"app_api_docs": "API Docs",
"app_blog": "Blog",
"app_translate": "Translate",
"app_donate": "Donate",
"app_netlify": "Deploys by Netlify",
"app_openunderlords": "OpenUnderlords - Dota Underlords stats",
"app_gravitech": "A Gravitech LLC Site",
"app_powered_by": "powered by",
"app_donation_goal": "Monthly Donation Goal",
"app_sponsorship": "Your sponsorship helps keep the service free for everyone.",
"app_twitter": "Follow on Twitter",
"app_github": "Source on GitHub",
"app_discord": "Chat on Discord",
"app_steam_profile": "Steam Profile",
"app_confirmed_as": "Confirmed as",
"app_untracked": "This user has not visited recently, and replays of new matches will not be automatically parsed.",
"app_tracked": "This user has visited recently, and replays of new matches will be automatically parsed.",
"app_cheese_bought": "Cheese bought",
"app_contributor": "This user has contributed to the development of the OpenDota project",
"app_dotacoach": "Ask a Coach",
"app_pvgna": "Find a Guide",
"app_pvgna_alt": "Find a Dota 2 Guide on Pvgna",
"app_rivalry": "Bet on Pro Matches with Rivalry",
"app_rivalry_team": "Bet on {0} Matches with Rivalry",
"app_refresh": "Refresh Match History: Queue a scan to find missing matches due to privacy settings",
"app_refresh_label": "Refresh",
"app_login": "Login",
"app_logout": "Logout",
"app_results": "result(s)",
"app_report_bug": "Report Bug",
"app_pro_players": "Pro Players",
"app_public_players": "Public Players",
"app_my_profile": "My Profile",
"barracks_value_1": "Dire Bot Melee",
"barracks_value_2": "Dire Bot Ranged",
"barracks_value_4": "Dire Mid Melee",
"barracks_value_8": "Dire Mid Ranged",
"barracks_value_16": "Dire Top Melee",
"barracks_value_32": "Dire Top Ranged",
"barracks_value_64": "Radiant Bot Melee",
"barracks_value_128": "Radiant Bot Ranged",
"barracks_value_256": "Radiant Mid Melee",
"barracks_value_512": "Radiant Mid Ranged",
"barracks_value_1024": "Radiant Top Melee",
"barracks_value_2048": "Radiant Top Ranged",
"benchmarks_description": "{0} {1} is equal or higher than {2}% of recent performances on this hero",
"fantasy_description": "{0} for {1} points",
"building_melee_rax": "Melee Barracks",
"building_range_rax": "Ranged Barracks",
"building_lasthit": "got the last hit",
"building_damage": "received damage",
"building_hint": "Icons on the map have tooltips",
"building_denied": "denied",
"building_ancient": "Ancient",
"CHAT_MESSAGE_TOWER_KILL": "Tower",
"CHAT_MESSAGE_BARRACKS_KILL": "Barracks",
"CHAT_MESSAGE_ROSHAN_KILL": "Roshan",
"CHAT_MESSAGE_AEGIS": "Picked up the Aegis",
"CHAT_MESSAGE_FIRSTBLOOD": "First Blood",
"CHAT_MESSAGE_TOWER_DENY": "Tower Deny",
"CHAT_MESSAGE_AEGIS_STOLEN": "Stole the Aegis",
"CHAT_MESSAGE_DENIED_AEGIS": "Denied the Aegis",
"cs_over_time": "CS Over Time",
"cs_this_minute": "CS This Minute",
"cumulative_cs": "Cumulative CS",
"distributions_heading_ranks": "Rank Tier Distribution",
"distributions_heading_mmr": "Solo MMR Distribution",
"distributions_heading_country_mmr": "Average Solo MMR by Country",
"distributions_tab_ranks": "Rank Tiers",
"distributions_tab_mmr": "Solo MMR",
"distributions_tab_country_mmr": "Solo MMR by Country",
"distributions_warning_1": "This data set is limited to players displaying MMR on profile and sharing public match data.",
"distributions_warning_2": "Players do not have to sign in, but due to the opt-in nature of the data collected, averages are likely higher than expected.",
"error": "Error",
"error_message": "Whoops! Something went wrong.",
"error_four_oh_four_message": "The page you are looking for cannot be found.",
"explorer_title": "Data Explorer",
"explorer_subtitle": "Professional Dota 2 Stats",
"explorer_description": "Run advanced queries on professional matches (excludes amateur leagues)",
"explorer_schema": "Schema",
"explorer_results": "Results",
"explorer_num_rows": "row(s)",
"explorer_select": "Select",
"explorer_group_by": "Group By",
"explorer_hero": "Hero",
"explorer_patch": "Patch",
"explorer_min_patch": "Min Patch",
"explorer_max_patch": "Max Patch",
"explorer_min_mmr": "Min MMR",
"explorer_max_mmr": "Max MMR",
"explorer_min_rank_tier": "Min Tier",
"explorer_max_rank_tier": "Max Tier",
"explorer_player": "Player",
"explorer_league": "League",
"explorer_player_purchased": "Player Purchased",
"explorer_duration": "Duration",
"explorer_min_duration": "Min Duration",
"explorer_max_duration": "Max Duration",
"explorer_timing": "Timing",
"explorer_uses": "Uses",
"explorer_kill": "Kill Time",
"explorer_side": "Side",
"explorer_toggle_sql": "Toggle SQL",
"explorer_team": "Current Team",
"explorer_lane_role": "Lane",
"explorer_min_date": "Min Date",
"explorer_max_date": "Max Date",
"explorer_hero_combos": "Hero-Hero",
"explorer_hero_player": "Hero-Player",
"explorer_player_player": "Player-Player",
"explorer_sql": "SQL",
"explorer_postgresql_function": "PostgreSQL Function",
"explorer_table": "Table",
"explorer_column": "Column",
"explorer_query_button": "Query",
"explorer_cancel_button": "Cancel",
"explorer_table_button": "Table",
"explorer_api_button": "API",
"explorer_json_button": "JSON",
"explorer_csv_button": "CSV",
"explorer_donut_button": "Donut",
"explorer_bar_button": "Bar",
"explorer_timeseries_button": "Timeseries",
"explorer_chart_unavailable": "Chart not available, try adding a GROUP BY",
"explorer_value": "Value",
"explorer_category": "Category",
"explorer_region": "Region",
"explorer_picks_bans": "Picks/Bans",
"explorer_counter_picks_bans": "Counter Picks/Bans",
"explorer_organization": "Organization",
"explorer_order": "Order",
"explorer_asc": "Ascending",
"explorer_desc": "Descending",
"explorer_tier": "Tier",
"explorer_having": "At Least This Many Matches",
"explorer_limit": "Limit",
"explorer_match": "Match",
"explorer_is_ti_team": "Is TI{number} Team",
"explorer_mega_comeback": "Mega Creeps Comeback",
"explorer_max_gold_adv": "Max Gold Advantage",
"explorer_min_gold_adv": "Min Gold Advantage",
"farm_heroes": "Heroes killed",
"farm_creeps": "Lane creeps killed",
"farm_neutrals": "Neutral creeps killed (includes Ancients)",
"farm_ancients": "Ancient creeps killed",
"farm_towers": "Towers killed",
"farm_couriers": "Couriers killed",
"farm_observers": "Observers killed",
"farm_sentries": "Sentries killed",
"farm_roshan": "Roshans killed",
"farm_necronomicon": "Necronomicon units killed",
"filter_button_text_open": "Filter",
"filter_button_text_close": "Close",
"filter_hero_id": "Hero",
"filter_is_radiant": "Side",
"filter_win": "Result",
"filter_lane_role": "Lane",
"filter_patch": "Patch",
"filter_game_mode": "Game Mode",
"filter_lobby_type": "Lobby Type",
"filter_date": "Date",
"filter_region": "Region",
"filter_with_hero_id": "Allied Heroes",
"filter_against_hero_id": "Opposing Heroes",
"filter_included_account_id": "Included Account ID",
"filter_excluded_account_id": "Excluded Account ID",
"filter_significant": "Insignificant",
"filter_significant_include": "Include",
"filter_last_week": "Last week",
"filter_last_month": "Last month",
"filter_last_3_months": "Last 3 months",
"filter_last_6_months": "Last 6 months",
"filter_last_12_months": "Last 12 months",
"filter_error": "Please select an item from the dropdown",
"filter_party_size": "Party Size",
"game_mode_0": "Unknown",
"game_mode_1": "All Pick",
"game_mode_2": "Captains Mode",
"game_mode_3": "Random Draft",
"game_mode_4": "Single Draft",
"game_mode_5": "All Random",
"game_mode_6": "Intro",
"game_mode_7": "Diretide",
"game_mode_8": "Reverse Captains Mode",
"game_mode_9": "The Greeviling",
"game_mode_10": "Tutorial",
"game_mode_11": "Mid Only",
"game_mode_12": "Least Played",
"game_mode_13": "Limited Heroes",
"game_mode_14": "Compendium",
"game_mode_15": "Custom",
"game_mode_16": "Captains Draft",
"game_mode_17": "Balanced Draft",
"game_mode_18": "Ability Draft",
"game_mode_19": "Event",
"game_mode_20": "All Random Deathmatch",
"game_mode_21": "1v1 Solo Mid",
"game_mode_22": "All Draft",
"game_mode_23": "Turbo",
"game_mode_24": "Mutation",
"general_unknown": "Unknown",
"general_no_hero": "No hero",
"general_anonymous": "Anonymous",
"general_radiant": "Radiant",
"general_dire": "Dire",
"general_standard_deviation": "Standard Deviation",
"general_matches": "Matches",
"general_league": "League",
"general_randomed": "Randomed",
"general_repicked": "Repicked",
"general_predicted_victory": "Predicted Victory",
"general_show": "Show",
"general_hide": "Hide",
"gold_reasons_0": "Other",
"gold_reasons_1": "Death",
"gold_reasons_2": "Buyback",
"NULL_gold_reasons_5": "Abandon",
"NULL_gold_reasons_6": "Sell",
"gold_reasons_11": "Building",
"gold_reasons_12": "Hero",
"gold_reasons_13": "Creep",
"gold_reasons_14": "Roshan",
"NULL_gold_reasons_15": "Courier",
"header_request": "Request",
"header_distributions": "Distributions",
"header_heroes": "Heroes",
"header_blog": "Blog",
"header_ingame": "Ingame",
"header_matches": "Matches",
"header_records": "Records",
"header_explorer": "Explorer",
"header_teams": "Teams",
"header_meta": "Meta",
"header_scenarios": "Scenarios",
"header_api": "API",
"heading_lhten": "Last Hits @ 10",
"heading_lhtwenty": "Last Hits @ 20",
"heading_lhthirty": "Last Hits @ 30",
"heading_lhforty": "Last Hits @ 40",
"heading_lhfifty": "Last Hits @ 50",
"heading_courier": "Courier",
"heading_roshan": "Roshan",
"heading_tower": "Tower",
"heading_barracks": "Barracks",
"heading_shrine": "Shrine",
"heading_item_purchased": "Item Purchased",
"heading_ability_used": "Ability Used",
"heading_item_used": "Item Used",
"heading_damage_inflictor": "Damage Inflictor",
"heading_damage_inflictor_received": "Damage Inflictor Received",
"heading_damage_instances": "Damage Instances",
"heading_camps_stacked": "Camps Stacked",
"heading_matches": "Recent Matches",
"heading_heroes": "Heroes Played",
"heading_mmr": "MMR History",
"heading_peers": "Players Played With",
"heading_pros": "Pro Players Played With",
"heading_rankings": "Hero Rankings",
"heading_all_matches": "In All Matches",
"heading_parsed_matches": "In Parsed Matches",
"heading_records": "Records",
"heading_teamfights": "Teamfights",
"heading_graph_difference": "Radiant Advantage",
"heading_graph_gold": "Gold",
"heading_graph_xp": "Experience",
"heading_graph_lh": "Last Hits",
"heading_graph_cs": "Last Hits + Denies",
"heading_overview": "Overview",
"heading_ability_draft": "Abilities Drafted",
"heading_buildings": "Buildings Map",
"heading_benchmarks": "Benchmarks",
"heading_laning": "Laning",
"heading_overall": "Overall",
"heading_kills": "Kills",
"heading_deaths": "Deaths",
"heading_assists": "Assists",
"heading_damage": "Damage",
"heading_unit_kills": "Unit Kills",
"heading_last_hits": "Last Hits",
"heading_gold_reasons": "Gold Sources",
"heading_xp_reasons": "XP Sources",
"heading_performances": "Performances",
"heading_support": "Support",
"heading_purchase_log": "Purchase Log",
"heading_casts": "Casts",
"heading_objective_damage": "Objective Damage",
"heading_runes": "Runes",
"heading_vision": "Vision",
"heading_actions": "Actions",
"heading_analysis": "Analysis",
"heading_cosmetics": "Cosmetics",
"heading_log": "Log",
"heading_chat": "Chat",
"heading_story": "Story",
"heading_fantasy": "Fantasy",
"heading_wardmap": "Wardmap",
"heading_wordcloud": "Wordcloud",
"heading_wordcloud_said": "Words said (all chat)",
"heading_wordcloud_read": "Words read (all chat)",
"heading_kda": "KLA",
"heading_gold_per_min": "Gold Per Min",
"heading_xp_per_min": "XP Per Min",
"heading_denies": "Denies",
"heading_lane_efficiency_pct": "EFF@10",
"heading_duration": "Duration",
"heading_level": "Level",
"heading_hero_damage": "Hero Damage",
"heading_tower_damage": "Tower Damage",
"heading_hero_healing": "Hero Healing",
"heading_tower_kills": "Tower Kills",
"heading_stuns": "Stuns",
"heading_neutral_kills": "Neutral Kills",
"heading_courier_kills": "Courier Kills",
"heading_purchase_tpscroll": "TPs Purchased",
"heading_purchase_ward_observer": "Observers Purchased",
"heading_purchase_ward_sentry": "Sentries Purchased",
"heading_purchase_gem": "Gems Purchased",
"heading_purchase_rapier": "Rapiers Purchased",
"heading_pings": "Map Pings",
"heading_throw": "Throw",
"heading_comeback": "Comeback",
"heading_stomp": "Stomp",
"heading_loss": "Loss",
"heading_actions_per_min": "Actions Per Min",
"heading_leaver_status": "Leaver Status",
"heading_game_mode": "Game Mode",
"heading_lobby_type": "Lobby Type",
"heading_lane_role": "Lane Role",
"heading_region": "Region",
"heading_patch": "Patch",
"heading_win_rate": "Win Rate",
"heading_is_radiant": "Side",
"heading_avg_and_max": "Averages/Maximums",
"heading_total_matches": "Total Matches",
"heading_median": "Median",
"heading_distinct_heroes": "Distinct Heroes",
"heading_team_elo_rankings": "Team Elo Rankings",
"heading_ability_build": "Ability Build",
"heading_attack": "Base attack",
"heading_attack_range": "Attack range",
"heading_attack_speed": "Attack speed",
"heading_projectile_speed": "Projectile speed",
"heading_base_health": "Health",
"heading_base_health_regen": "Health regen",
"heading_base_mana": "Mana",
"heading_base_mana_regen": "Mana regen",
"heading_base_armor": "Base armor",
"heading_base_mr": "Magic resistance",
"heading_move_speed": "Move speed",
"heading_turn_rate": "Turn speed",
"heading_legs": "Number of legs",
"heading_cm_enabled": "CM enabled",
"heading_current_players": "Current Players",
"heading_former_players": "Former Players",
"heading_damage_dealt": "Damage Dealt",
"heading_damage_received": "Damage Received",
"show_details": "Show details",
"hide_details": "Hide details",
"subheading_avg_and_max": "in last {0} displayed matches",
"subheading_records": "In ranked matches. Records reset monthly.",
"subheading_team_elo_rankings": "k=32, init=1000",
"hero_pro_tab": "Professional",
"hero_public_tab": "Public",
"hero_pro_heading": "Heroes in Professional Matches",
"hero_public_heading": "Heroes in Public Matches (Sampled)",
"hero_this_month": "matches in last 30 days",
"hero_pick_ban_rate": "Pro P+B%",
"hero_pick_rate": "Pro Pick%",
"hero_ban_rate": "Pro Ban%",
"hero_win_rate": "Pro Win%",
"hero_5000_pick_rate": ">5K P%",
"hero_5000_win_rate": ">5K W%",
"hero_4000_pick_rate": "4K P%",
"hero_4000_win_rate": "4K W%",
"hero_3000_pick_rate": "3K P%",
"hero_3000_win_rate": "3K W%",
"hero_2000_pick_rate": "2K P%",
"hero_2000_win_rate": "2K W%",
"hero_1000_pick_rate": "<2K P%",
"hero_1000_win_rate": "<2K W%",
"home_login": "Login",
"home_login_desc": "for automatic replay parsing",
"home_parse": "Request",
"home_parse_desc": "a specific match",
"home_why": "",
"home_opensource_title": "Open Source",
"home_opensource_desc": "All project code is open source and available for contributors to improve and modify.",
"home_indepth_title": "In-Depth Data",
"home_indepth_desc": "Parsing replay files provides highly detailed match data.",
"home_free_title": "Free of Charge",
"home_free_desc": "Servers are funded by sponsors and volunteers maintain the code, so the service is offered free of charge.",
"home_background_by": "Background picture by",
"home_sponsored_by": "Sponsored by",
"home_become_sponsor": "Become a Sponsor",
"items_name": "Name of item",
"items_built": "Number of times this item was built",
"items_matches": "Number of matches where this item was built",
"items_uses": "Number of times this item was used",
"items_uses_per_match": "Mean number of times this item was used in matches where it was built",
"items_timing": "Mean time this item was built at",
"items_build_pct": "Percentage of matches this item was built in",
"items_win_pct": "Percentage of matches won where this item was built",
"lane_role_0": "Unknown",
"lane_role_1": "Safe",
"lane_role_2": "Mid",
"lane_role_3": "Off",
"lane_role_4": "Jungle",
"lane_pos_1": "Bot",
"lane_pos_2": "Mid",
"lane_pos_3": "Top",
"lane_pos_4": "Radiant Jungle",
"lane_pos_5": "Dire Jungle",
"leaver_status_0": "None",
"leaver_status_1": "Left Safely",
"leaver_status_2": "Abandoned (DC)",
"leaver_status_3": "Abandoned",
"leaver_status_4": "Abandoned (AFK)",
"leaver_status_5": "Never Connected",
"leaver_status_6": "Never Connected (Timeout)",
"lobby_type_0": "Normal",
"lobby_type_1": "Practice",
"lobby_type_2": "Tournament",
"lobby_type_3": "Tutorial",
"lobby_type_4": "Co-Op Bots",
"lobby_type_5": "Ranked Team MM (Legacy)",
"lobby_type_6": "Ranked Solo MM (Legacy)",
"lobby_type_7": "Ranked",
"lobby_type_8": "1v1 Mid",
"lobby_type_9": "Battle Cup",
"match_radiant_win": "Radiant Victory",
"match_dire_win": "Dire Victory",
"match_team_win": "Victory",
"match_ended": "Ended",
"match_id": "Match ID",
"match_region": "Region",
"match_avg_mmr": "Avg MMR",
"match_button_parse": "Parse",
"match_button_reparse": "Re-parse",
"match_button_replay": "Replay",
"match_button_video": "Get video",
"match_first_tower": "First tower",
"match_first_barracks": "First barracks",
"match_pick": "Pick",
"match_ban": "Ban",
"matches_highest_mmr": "Top Public",
"matches_lowest_mmr": "Low MMR",
"meta_title": "Meta",
"meta_description": "Run advanced queries on data from sampled public matches in previous 24h",
"mmr_not_up_to_date": "Why is the MMR not up to date?",
"npc_dota_beastmaster_boar_#": "Boar",
"npc_dota_lesser_eidolon": "Lesser Eidolon",
"npc_dota_eidolon": "Eidolon",
"npc_dota_greater_eidolon": "Greater Eidolon",
"npc_dota_dire_eidolon": "Dire Eidolon",
"npc_dota_invoker_forged_spirit": "Forged Spirit",
"npc_dota_furion_treant_large": "Greater Treant",
"npc_dota_beastmaster_hawk_#": "Hawk",
"npc_dota_lycan_wolf#": "Lycan Wolf",
"npc_dota_neutral_mud_golem_split_doom": "Doom Shard",
"npc_dota_broodmother_spiderling": "Spiderling",
"npc_dota_broodmother_spiderite": "Spiderite",
"npc_dota_furion_treant": "Treant",
"npc_dota_unit_undying_zombie": "Undying Zombie",
"npc_dota_unit_undying_zombie_torso": "Undying Zombie",
"npc_dota_brewmaster_earth_#": "Earth Brewling",
"npc_dota_brewmaster_fire_#": "Fire Brewling",
"npc_dota_lone_druid_bear#": "Spirit Bear",
"npc_dota_brewmaster_storm_#": "Storm Brewling",
"npc_dota_visage_familiar#": "Familiar",
"npc_dota_warlock_golem_#": "Warlock Golem",
"npc_dota_warlock_golem_scepter_#": "Warlock Golem",
"npc_dota_witch_doctor_death_ward": "Death Ward",
"npc_dota_tusk_frozen_sigil#": "Frozen Sigil",
"npc_dota_juggernaut_healing_ward": "Healing Ward",
"npc_dota_techies_land_mine": "Proximity Mine",
"npc_dota_shadow_shaman_ward_#": "Serpent Ward",
"npc_dota_pugna_nether_ward_#": "Nether Ward",
"npc_dota_venomancer_plague_ward_#": "Plague Ward",
"npc_dota_rattletrap_cog": "Power Cog",
"npc_dota_templar_assassin_psionic_trap": "Psionic Trap",
"npc_dota_techies_remote_mine": "Remote Mine",
"npc_dota_techies_stasis_trap": "Stasis Trap",
"npc_dota_phoenix_sun": "Supernova",
"npc_dota_unit_tombstone#": "Tombstone",
"npc_dota_treant_eyes": "Eyes in the Forest",
"npc_dota_gyrocopter_homing_missile": "Homing Missile",
"npc_dota_weaver_swarm": "The Swarm",
"objective_tower1_top": "T1",
"objective_tower1_mid": "M1",
"objective_tower1_bot": "B1",
"objective_tower2_top": "T2",
"objective_tower2_mid": "M2",
"objective_tower2_bot": "B2",
"objective_tower3_top": "T3",
"objective_tower3_mid": "M3",
"objective_tower3_bot": "B3",
"objective_rax_top": "RaxT",
"objective_rax_mid": "RaxM",
"objective_rax_bot": "RaxB",
"objective_tower4": "T4",
"objective_fort": "Anc",
"objective_shrine": "Shr",
"objective_roshan": "Rosh",
"tooltip_objective_tower1_top": "Damage dealt to top Tier 1 tower",
"tooltip_objective_tower1_mid": "Damage dealt to middle Tier 1 tower",
"tooltip_objective_tower1_bot": "Damage dealt to bottom Tier 1 tower",
"tooltip_objective_tower2_top": "Damage dealt to top Tier 2 tower",
"tooltip_objective_tower2_mid": "Damage dealt to middle Tier 2 tower",
"tooltip_objective_tower2_bot": "Damage dealt to bottom Tier 2 tower",
"tooltip_objective_tower3_top": "Damage dealt to top Tier 3 tower",
"tooltip_objective_tower3_mid": "Damage dealt to middle Tier 3 tower",
"tooltip_objective_tower3_bot": "Damage dealt to bottom Tier 3 tower",
"tooltip_objective_rax_top": "Damage dealt to top barracks",
"tooltip_objective_rax_mid": "Damage dealt to middle barracks",
"tooltip_objective_rax_bot": "Damage dealt to bottom barracks",
"tooltip_objective_tower4": "Damage dealt to middle Tier 4 towers",
"tooltip_objective_fort": "Damage dealt to ancient",
"tooltip_objective_shrine": "Damage dealt to shrines",
"tooltip_objective_roshan": "Damage dealt to Roshan",
"pagination_first": "First",
"pagination_last": "Last",
"pagination_of": "of",
"peers_none": "This player has no peers.",
"rank_tier_0": "Uncalibrated",
"rank_tier_1": "Herald",
"rank_tier_2": "Guardian",
"rank_tier_3": "Crusader",
"rank_tier_4": "Archon",
"rank_tier_5": "Legend",
"rank_tier_6": "Ancient",
"rank_tier_7": "Divine",
"rank_tier_8": "Immortal",
"request_title": "Request a Parse",
"request_match_id": "Match ID",
"request_invalid_match_id": "Invalid Match ID",
"request_error": "Failed to get match data",
"request_submit": "Submit",
"roaming": "Roaming",
"rune_0": "Double Damage",
"rune_1": "Haste",
"rune_2": "Illusion",
"rune_3": "Invisibility",
"rune_4": "Regeneration",
"rune_5": "Bounty",
"rune_6": "Arcane",
"search_title": "Search by player name, match ID...",
"skill_0": "Unknown Skill",
"skill_1": "Normal Skill",
"skill_2": "High Skill",
"skill_3": "Very High Skill",
"story_invalid_template": "(invalid template)",
"story_error": "An error occured while compiling the story for this match",
"story_intro": "on {date}, two teams decided to play {game_mode_article} {game_mode} game of Dota 2 in {region}. Little did they know, the game would last {duration_in_words}",
"story_invalid_hero": "Unrecognized Hero",
"story_fullstop": ".",
"story_list_2": "{1} and {2}",
"story_list_3": "{1}, {2}, and {3}",
"story_list_n": "{i}, {rest}",
"story_firstblood": "first blood was drawn when {killer} killed {victim} at {time}",
"story_chatmessage": "{ message }, {player} {said_verb}",
"story_teamfight": "{winning_team} won a teamfight by trading {win_dead} for {lose_dead}, resulting in a net worth increase of {net_change}",
"story_teamfight_none_dead": "{winning_team} won a teamfight by killing {lose_dead} without losing any heroes, resulting in a net worth increase of {net_change}",
"story_teamfight_none_dead_loss": "{winning_team} somehow won a teamfight without killing anyone, and losing {win_dead}, resulting in a net worth increase of {net_change}",
"story_lane_intro": "At 10 minutes into the game, the lanes had gone as follows:",
"story_lane_radiant_win": "{radiant_players} won {lane} Lane against {dire_players}",
"story_lane_radiant_lose": "{radiant_players} lost {lane} Lane to {dire_players}",
"story_lane_draw": "{radiant_players} drew even in {lane} Lane with {dire_players}",
"story_lane_free": "{players} had a free {lane} lane",
"story_lane_empty": "there was nobody in {lane} lane",
"story_lane_jungle": "{players} farmed the jungle",
"story_lane_roam": "{players} roamed",
"story_roshan": "{team} killed Roshan",
"story_aegis": "{player} {action} the aegis",
"story_gameover": "The match ended in a {winning_team} victory at {duration} with a score of {radiant_score} to {dire_score}",
"story_during_teamfight": "during the fight, {events}",
"story_after_teamfight": "after the fight, {events}",
"story_expensive_item": "at {time}, {player} purchased {item}, which was the first item in the game with a price greater than {price_limit}",
"story_building_destroy": "{building} was destroyed",
"story_building_destroy_player": "{player} destroyed {building}",
"story_building_deny_player": "{player} denied {building}",
"story_building_list_destroy": "{buildings} were destroyed",
"story_courier_kill": "{team}\'s courier was killed",
"story_tower": "{team}\'s Tier {tier} {lane} tower",
"story_tower_simple": "one of {team}\'s towers",
"story_towers_n": "{n} of {team}\'s Towers",
"story_barracks": "{team}\'s {lane} {rax_type}",
"story_barracks_both": "both of {team}\'s {lane} Barracks",
"story_time_marker": "{minutes} Minutes In",
"story_item_purchase": "{player} purchased a {item} at {time}",
"story_predicted_victory": "{players} predicted {team} would win",
"story_predicted_victory_empty": "No one",
"story_networth_diff": "{percent}% / {gold} Diff",
"story_gold": "gold",
"story_chat_asked": "asked",
"story_chat_said": "said",
"tab_overview": "Overview",
"tab_matches": "Matches",
"tab_heroes": "Heroes",
"tab_peers": "Peers",
"tab_pros": "Pros",
"tab_activity": "Activity",
"tab_records": "Records",
"tab_totals": "Totals",
"tab_counts": "Counts",
"tab_histograms": "Histograms",
"tab_trends": "Trends",
"tab_items": "Items",
"tab_wardmap": "Wardmap",
"tab_wordcloud": "Wordcloud",
"tab_mmr": "MMR",
"tab_rankings": "Rankings",
"tab_drafts": "Draft",
"tab_benchmarks": "Benchmarks",
"tab_performances": "Performances",
"tab_damage": "Damage",
"tab_purchases": "Purchases",
"tab_farm": "Farm",
"tab_combat": "Combat",
"tab_graphs": "Graphs",
"tab_casts": "Casts",
"tab_vision": "Vision",
"tab_objectives": "Objectives",
"tab_teamfights": "Teamfights",
"tab_actions": "Actions",
"tab_analysis": "Analysis",
"tab_cosmetics": "Cosmetics",
"tab_log": "Log",
"tab_chat": "Chat",
"tab_story": "Story",
"tab_fantasy": "Fantasy",
"tab_laning": "Laning",
"tab_recent": "Recent",
"tab_matchups": "Matchups",
"tab_durations": "Durations",
"tab_players": "Players",
"placeholder_filter_heroes": "Filter Heroes",
"td_win": "Won Match",
"td_loss": "Lost Match",
"td_no_result": "No Result",
"th_hero_id": "Hero",
"th_match_id": "ID",
"th_account_id": "Account ID",
"th_result": "Result",
"th_skill": "Skill",
"th_duration": "Duration",
"th_games": "MP",
"th_games_played": "Games",
"th_win": "Win %",
"th_advantage": "Advantage",
"th_with_games": "With",
"th_with_win": "Win with %",
"th_against_games": "Against",
"th_against_win": "Win against %",
"th_gpm_with": "GPM With",
"th_xpm_with": "XPM With",
"th_avatar": "Player",
"th_last_played": "Last",
"th_record": "Record",
"th_title": "Title",
"th_category": "Category",
"th_matches": "Matches",
"th_percentile": "Percentile",
"th_rank": "Rank",
"th_items": "Items",
"th_stacked": "Stacked",
"th_multikill": "Multi",
"th_killstreak": "Streak",
"th_stuns": "Stuns",
"th_dead": "Dead",
"th_buybacks": "Buybacks",
"th_biggest_hit": "Biggest Hit",
"th_lane": "Lane",
"th_map": "Map",
"th_lane_efficiency": "EFF@10",
"th_lhten": "LH@10",
"th_dnten": "DN@10",
"th_tpscroll": "TP",
"th_ward_observer": "Observer",
"th_ward_sentry": "Sentry",
"th_smoke_of_deceit": "Smoke",
"th_dust": "Dust",
"th_gem": "Gem",
"th_time": "Time",
"th_message": "Message",
"th_heroes": "Heroes",
"th_creeps": "Creeps",
"th_neutrals": "Neutrals",
"th_ancients": "Ancients",
"th_towers": "Towers",
"th_couriers": "Couriers",
"th_roshan": "Roshan",
"th_necronomicon": "Necronomicon",
"th_other": "Other",
"th_cosmetics": "Cosmetics",
"th_damage_received": "Received",
"th_damage_dealt": "Dealt",
"th_players": "Players",
"th_analysis": "Analysis",
"th_death": "Death",
"th_damage": "Damage",
"th_healing": "Healing",
"th_gold": "G",
"th_xp": "XP",
"th_abilities": "Abilities",
"th_target_abilities": "Ability Targets",
"th_mmr": "MMR",
"th_level": "LVL",
"th_kills": "K",
"th_kills_per_min": "KPM",
"th_deaths": "D",
"th_assists": "A",
"th_last_hits": "LH",
"th_last_hits_per_min": "LHM",
"th_denies": "DN",
"th_gold_per_min": "GPM",
"th_xp_per_min": "XPM",
"th_stuns_per_min": "SPM",
"th_hero_damage": "HD",
"th_hero_damage_per_min": "HDM",
"th_hero_healing": "HH",
"th_hero_healing_per_min": "HHM",
"th_tower_damage": "TD",
"th_tower_damage_per_min": "TDM",
"th_kda": "KLA",
"th_actions_per_min": "APM",
"th_pings": "PNG (M)",
"th_DOTA_UNIT_ORDER_MOVE_TO_POSITION": "MV (P)",
"th_DOTA_UNIT_ORDER_MOVE_TO_TARGET": "MV (T)",
"th_DOTA_UNIT_ORDER_ATTACK_TARGET": "ATK (T)",
"th_DOTA_UNIT_ORDER_ATTACK_MOVE": "ATK (P)",
"th_DOTA_UNIT_ORDER_CAST_POSITION": "CST (P)",
"th_DOTA_UNIT_ORDER_CAST_TARGET": "CST (T)",
"th_DOTA_UNIT_ORDER_CAST_NO_TARGET": "CST (N)",
"th_DOTA_UNIT_ORDER_HOLD_POSITION": "HLD",
"th_DOTA_UNIT_ORDER_GLYPH": "GLYPH",
"th_DOTA_UNIT_ORDER_RADAR": "SCN",
"th_ability_builds": "AB",
"th_purchase_shorthand": "PUR",
"th_use_shorthand": "USE",
"th_duration_shorthand": "DUR",
"th_country": "Country",
"th_count": "Count",
"th_sum": "Sum",
"th_average": "Average",
"th_name": "Name",
"th_team_name": "Team Name",
"th_score": "Score",
"th_casts": "Casts",
"th_hits": "Hits",
"th_wins": "Wins",
"th_losses": "Losses",
"th_winrate": "Winrate",
"th_solo_mmr": "Solo MMR",
"th_party_mmr": "Party MMR",
"th_estimated_mmr": "Estimated MMR",
"th_permanent_buffs": "Buffs",
"th_winner": "Winner",
"th_played_with": "My Record With",
"th_obs_placed": "Observer Wards Placed",
"th_sen_placed": "Sentry Wards Placed",
"th_obs_destroyed": "Observer Wards Destroyed",
"th_sen_destroyed": "Sentry Wards Destroyed",
"th_scans_used": "Scans Used",
"th_glyphs_used": "Glyphs Used",
"th_legs": "Legs",
"th_fantasy_points": "Fantasy Pts",
"th_rating": "Rating",
"th_teamfight_participation": "Participation",
"th_firstblood_claimed": "First Blood",
"th_observers_placed": "Observers",
"th_camps_stacked": "Stacks",
"th_league": "League",
"th_attack_type": "Attack Type",
"th_primary_attr": "Primary Attribute",
"th_opposing_team": "Opposing Team",
"ward_log_type": "Type",
"ward_log_owner": "Owner",
"ward_log_entered_at": "Placed",
"ward_log_left_at": "Left",
"ward_log_duration": "Lifespan",
"ward_log_killed_by": "Killed by",
"log_detail": "Detail",
"log_heroes": "Specify Heroes",
"tier_professional": "Professional",
"tier_premium": "Premium",
"time_past": "{0} ago",
"time_just_now": "just now",
"time_s": "a second",
"time_abbr_s": "{0}s",
"time_ss": "{0} seconds",
"time_abbr_ss": "{0}s",
"time_m": "a minute",
"time_abbr_m": "{0}m",
"time_mm": "{0} minutes",
"time_abbr_mm": "{0}m",
"time_h": "an hour",
"time_abbr_h": "{0}h",
"time_hh": "{0} hours",
"time_abbr_hh": "{0}h",
"time_d": "a day",
"time_abbr_d": "{0}d",
"time_dd": "{0} days",
"time_abbr_dd": "{0}d",
"time_M": "a month",
"time_abbr_M": "{0}mo",
"time_MM": "{0} months",
"time_abbr_MM": "{0}mo",
"time_y": "a year",
"time_abbr_y": "{0}y",
"time_yy": "{0} years",
"time_abbr_yy": "{0}y",
"timeline_firstblood": "drew first blood",
"timeline_firstblood_key": "drew first blood by killing",
"timeline_aegis_picked_up": "picked up",
"timeline_aegis_snatched": "snatched",
"timeline_aegis_denied": "denied",
"timeline_teamfight_deaths": "Deaths",
"timeline_teamfight_gold_delta": "gold delta",
"title_default": "OpenDota - Dota 2 Statistics",
"title_template": "%s - OpenDota - Dota 2 Statistics",
"title_matches": "Matches",
"title_request": "Request a Parse",
"title_search": "Search",
"title_status": "Status",
"title_explorer": "Data Explorer",
"title_meta": "Meta",
"title_records": "Records",
"title_api": "The Opendota API: Advanced Dota 2 stats for your app",
"tooltip_mmr": "Solo MMR of the player",
"tooltip_cs_over_time": "CS each minute, first 10 minutes",
"tooltip_abilitydraft": "Ability Drafted",
"tooltip_level": "Level achieved by hero",
"tooltip_kills": "Number of kills by hero",
"tooltip_deaths": "Number of deaths by hero",
"tooltip_assists": "Number of assists by hero",
"tooltip_last_hits": "Number of last hits by hero",
"tooltip_denies": "Number of denied creeps",
"tooltip_gold": "Total gold farmed",
"tooltip_gold_per_min": "Gold farmed per minute",
"tooltip_xp_per_min": "Experience gained per minute",
"tooltip_stuns_per_min": "Seconds of hero stuns per minute",
"tooltip_last_hits_per_min": "Last hits per minute",
"tooltip_kills_per_min": "Kills per minute",
"tooltip_hero_damage_per_min": "Hero damage per minute",
"tooltip_hero_healing_per_min": "Hero healing per minute",
"tooltip_tower_damage_per_min": "Tower damage per minute",
"tooltip_actions_per_min": "Actions performed by player per minute",
"tooltip_hero_damage": "Amount of damage dealt to heroes",
"tooltip_tower_damage": "Amount of damage dealt to towers",
"tooltip_hero_healing": "Amount of health restored to heroes",
"tooltip_duration": "The length of the match",
"tooltip_first_blood_time": "The time first blood occurred",
"tooltip_kda": "(Kills + Assists) / (Deaths + 1)",
"tooltip_stuns": "Seconds of disable on heroes",
"tooltip_dead": "Time dead",
"tooltip_buybacks": "Number of buybacks",
"tooltip_camps_stacked": "Camps stacked",
"tooltip_tower_kills": "Number of towers killed",
"tooltip_neutral_kills": "Number of neutral creeps killed",
"tooltip_courier_kills": "Number of couriers killed",
"tooltip_purchase_tpscroll": "Town Portal Scroll purchases",
"tooltip_purchase_ward_observer": "Observer Ward purchases",
"tooltip_purchase_ward_sentry": "Sentry Ward purchases",
"tooltip_purchase_smoke_of_deceit": "Smoke of Deceit purchases",
"tooltip_purchase_dust": "Dust of Appearance purchases",
"tooltip_purchase_gem": "Gem of True Sight purchases",
"tooltip_purchase_rapier": "Divine Rapier purchases",
"tooltip_purchase_buyback": "Buyback purchases",
"tooltip_duration_observer": "Average lifespan of Observer Wards",
"tooltip_duration_sentry": "Average lifespan of Sentry Wards",
"tooltip_used_ward_observer": "Number of Observer Wards placed during the game",
"tooltip_used_ward_sentry": "Number of Sentry Wards placed during the game",
"tooltip_used_dust": "Number of times Dust of Appearance was used during the game",
"tooltip_used_smoke_of_deceit": "Number of times Smoke of Deceit was used during the game",
"tooltip_parsed": "Replay has been parsed for additional data",
"tooltip_unparsed": "The replay for this match has not yet been parsed. Not all data may be available.",
"tooltip_hero_id": "The hero played",
"tooltip_result": "Whether the player won or lost",
"tooltip_match_id": "The ID of the match",
"tooltip_game_mode": "The game mode of the match",
"tooltip_skill": "Approximate MMR cutoffs for the brackets are 0, 3200 and 3700",
"tooltip_ended": "The time the match ended",
"tooltip_pick_order": "Order in which the player picked",
"tooltip_throw": "Maximum gold advantage in a lost game",
"tooltip_comeback": "Maximum gold disadvantage in a won game",
"tooltip_stomp": "Maximum gold advantage in a won game",
"tooltip_loss": "Maximum gold disadvantage in a lost game",
"tooltip_items": "Items built",
"tooltip_permanent_buffs": "Permanent buffs such as Flesh Heap stacks or Tomes of Knowledge used",
"tooltip_lane": "Lane based on early game position",
"tooltip_map": "Heatmap of the player\'s early game position",
"tooltip_lane_efficiency": "Percentage of lane gold (creeps+passive+starting) obtained at 10 minutes",
"tooltip_lane_efficiency_pct": "Percentage of lane gold (creeps+passive+starting) obtained at 10 minutes",
"tooltip_pings": "Number of times the player pinged the map",
"tooltip_DOTA_UNIT_ORDER_MOVE_TO_POSITION": "Number of times the player moved to a position",
"tooltip_DOTA_UNIT_ORDER_MOVE_TO_TARGET": "Number of times the player moved to a target",
"tooltip_DOTA_UNIT_ORDER_ATTACK_MOVE": "Number of times the player attacked a position (attack move)",
"tooltip_DOTA_UNIT_ORDER_ATTACK_TARGET": "Number of times the player attacked a target",
"tooltip_DOTA_UNIT_ORDER_CAST_POSITION": "Number of times the player cast on a position",
"tooltip_DOTA_UNIT_ORDER_CAST_TARGET": "Number of times the player cast on a target",
"tooltip_DOTA_UNIT_ORDER_CAST_NO_TARGET": "Number of times the player cast on no target",
"tooltip_DOTA_UNIT_ORDER_HOLD_POSITION": "Number of times the player held position",
"tooltip_DOTA_UNIT_ORDER_GLYPH": "Number of times the player used the glyph",
"tooltip_DOTA_UNIT_ORDER_RADAR": "Number of times the player used scan",
"tooltip_last_played": "The last time a match was played with this player/hero",
"tooltip_matches": "Matches played with/against this player",
"tooltip_played_as": "Number of games played as this hero",
"tooltip_played_with": "Number of games with this player/hero on the team",
"tooltip_played_against": "Number of games with this player/hero on the opposing team",
"tooltip_tombstone_victim": "Here Lies",
"tooltip_tombstone_killer": "killed by",
"tooltip_win_pct_as": "Win percentage as this hero",
"tooltip_win_pct_with": "Win percentage with this player/hero",
"tooltip_win_pct_against": "Win percentage against this player/hero",
"tooltip_lhten": "Last hits at 10 minutes",
"tooltip_dnten": "Denies at 10 minutes",
"tooltip_biggest_hit": "Largest instance of damage on a hero",
"tooltip_damage_dealt": "Damage dealt to heroes by items/abilities",
"tooltip_damage_received": "Damage received from heroes by items/abilities",
"tooltip_registered_user": "Registered user",
"tooltip_dotaplus": "Dota Plus subscriber",
"tooltip_ability_builds": "Ability Builds",
"tooltip_ability_builds_expired": "Ability upgrade data has expired for this match. Use the request form to reload data.",
"tooltip_multikill": "Longest multi-kill",
"tooltip_killstreak": "Longest killstreak",
"tooltip_casts": "Number of times this ability/item was cast",
"tooltip_target_abilities": "How many times each hero was targeted by this hero\'s abilities",
"tooltip_hits": "Number of damage instances to heroes caused by this ability/item",
"tooltip_damage": "Amount of damage dealt to heroes by this ability/item",
"tooltip_autoattack_other": "Auto Attack/Other",
"tooltip_estimated_mmr": "MMR estimate based on the mean visible MMR of the recent matches played by this user",
"tooltip_backpack": "Backpack",