-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmap_english.php
More file actions
40 lines (36 loc) · 775 Bytes
/
Copy pathmap_english.php
File metadata and controls
40 lines (36 loc) · 775 Bytes
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
<?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','Outland','Northrend'),
'total' => 'Total',
'faction' => array('Alliance', 'Horde'),
'name' => 'Name',
'race' => 'Race',
'class' => 'Class',
'level' => 'lvl',
'click_to_next' => 'Click: go to next',
'click_to_first' => 'Click: go to first'
);
include "zone_names_english.php";