-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmap_en.php
More file actions
134 lines (129 loc) · 3.85 KB
/
Copy pathmap_en.php
File metadata and controls
134 lines (129 loc) · 3.85 KB
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
<?php
$character_race = array(
1 => 'Human',
2 => 'Orc',
3 => 'Dwarf',
4 => 'Night Elf',
5 => 'Undead',
6 => 'Tauren',
7 => 'Gnome',
8 => 'Troll',
9 => 'Goblin',
10 => 'Blood Elf',
11 => 'Draenei');
$character_class = array(
1 => 'Warrior',
2 => 'Paladin',
3 => 'Hunter',
4 => 'Rogue',
5 => 'Priest',
6 => 'Death Knight',
7 => 'Shaman',
8 => 'Mage',
9 => 'Warlock',
11 => 'Druid');
$lang_defs = array(
'maps_names' => array('Azeroth', 'Outreterre', 'Northendre'),
'total' => 'Total',
'online' => 'online',
'active_battlegrounds' => 'Active Battlegrounds',
'no_active_battlegrounds' => 'No Active Battlegrounds',
'active_instances' => 'Active Instances',
'no_active_instances' => 'No Active Instance',
'faction' => array('Alliance', 'Horde'),
'name' => 'Name',
'race' => 'Race',
'class' => 'Class',
'level' => 'lvl.',
'click_to_next' => 'Click : next page',
'click_to_first' => 'Click : first page',
'status' => array(
'offline' => 'Offline',
'db_error' => 'DB Connect Error',
'uptime' => 'Uptime',
'max_online' => 'Max online',
'gm_online' => 'GM online'
),
'home_label' => 'Home',
'home_title' => 'Home'
);
$lang_defs['stats'] = array(
'unknown' => 'Unknown',
'players' => 'players',
'page' => 'Page',
'page_title' => 'Server statistics',
'back_map' => 'Back to map',
'updated_at' => 'Last update:',
'hero_title' => 'Server statistics',
'hero_subtitle' => 'Full overview of realm {realm}: live activity, online characters, progression, guilds and rankings.',
'realm_online' => 'Realm online',
'realm_offline' => 'Realm offline',
'realm_summary' => 'Realm summary',
'footer_note' => 'External Playermap page independent from the BlizzCMS layout. Refresh the page to update statistics.',
'errors' => array(
'auth_db' => 'Unable to connect to auth database.',
'characters_db' => 'Unable to connect to characters database.'
),
'time' => array(
'day_short' => 'd',
'hour_short' => 'h',
'minute_short' => 'm'
),
'tabs' => array(
'summary' => 'Summary',
'distribution' => 'Distribution',
'rankings' => 'Rankings',
'guilds' => 'Guilds'
),
'metrics' => array(
'online_players' => 'Online players',
'current_uptime' => 'Current uptime',
'session_max' => 'Session max:',
'characters' => 'Characters',
'level_80_characters' => 'level 80 characters',
'accounts_guilds' => 'Accounts / guilds',
'created_guilds' => 'created guilds',
'total_playtime' => 'Total playtime',
'average' => 'Average:',
'per_character' => 'per character',
'total_wealth' => 'Total wealth',
'character_money_sum' => 'Sum of character money',
'gm_source' => 'Based on account_access / gmlevel',
'server_state' => 'Server state',
'realmlist' => 'Realmlist:'
),
'players_panel' => array(
'title' => 'Online players',
'paginated' => 'Paginated display: {total} player(s), {per_page} per page.',
'empty' => 'No online players right now.'
),
'table' => array(
'faction' => 'Faction',
'zone' => 'Zone',
'continent' => 'Continent',
'guild' => 'Guild',
'playtime' => 'Playtime',
'character' => 'Character',
'money' => 'Money',
'guild_master' => 'GM',
'members' => 'Members'
),
'distribution' => array(
'title' => 'Distribution',
'subtitle' => 'Character distribution by class, race, level and current presence.',
'classes' => 'Classes',
'races' => 'Races',
'levels' => 'Levels',
'current_presence' => 'Current presence'
),
'rankings' => array(
'title' => 'Rankings',
'subtitle' => 'Top playtime and character wealth.'
),
'guilds' => array(
'title' => 'Most populated guilds',
'subtitle' => 'Guild ranking by member count, with faction inferred from the guild master.',
'empty' => 'No guild found.'
)
);
include "zone_names_english.php";