-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLocales.lua
More file actions
75 lines (55 loc) · 2.95 KB
/
Locales.lua
File metadata and controls
75 lines (55 loc) · 2.95 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
local name , addon = ...;
addon.locales = {};
addon.locales.enUS = {
--these are lower case on purpose
human = "Human",
dwarf = "Dwarf",
gnome = "Gnome",
nightelf = "Night Elf",
orc = "Orc",
undead = "Undead",
troll = "Troll",
tauren = "Tauren",
druid = "Druid",
hunter = "Hunter",
mage = "Mage",
priest = "Priest",
paladin = "Paladin",
shaman = "Shaman",
rogue = "Rogue",
warrior = "Warrior",
warlock = "Warlock",
--will need to add the new classes and races if we want to support other game versions
--use capital for rest of the locales
DASHBOARD = "Dashboard",
TABS_SCAN = "Scan",
TABS_CENSUS_LOG = "Log",
TABS_CENSUS = "Census",
TABS_EXPORT ="Export",
SELECT_REGION = " - Region:",
HOME_IS_QUICK_CENSUS_LABEL = "Quick Scan",
HOME_GUILDS_HELPTIP = "Guilds are orderd by the total XP of all members",
HOME_CENSUS_HISTORY_HELPTIP = [[
Census records are listed here.
%s Merged records are shown
with this icon.
You can select multiple records
to view census data.
You can merge or delete selected
records.
]],
HOME_CLASSES_HELPTIP = "You can select different parts on the charts to filter the results.",
HOME_FILTERS_HELPTIP = "Adjust the level range and race/class filters to view data.\n\nIf no results show try selecting all races.",
CUSTOM_CENSUS_COOP_HELPTIP = "Enter a players name here to send them the custom census. Once its been competed it'll be sent back to you.",
CUSTOM_CENSUS_FILTERS_HELPTIP = "Select which races, classes or level range you want to include in a custom census.",
CUSTOM_CENSUS_IGNORED_ZONES_HELPTIP = "Select which zones to ignore.\n\nThis is a GLOBAL setting and will only take effect IF the census being run needs to increase the /who search params (when the /who returns 50+ characters using the base filters).\n\nThis can help reduce the census run time by allowing you to ignore certain zones from being quiried.\n\nIgnored zones will be sent to your co-op partner(s) BUT the zones will not be saved in their addon and will only exist for the co-op request.",
LOG_ACTIONS_HEADER = "Actions",
LOG_JOBS_HEADER = "Jobs",
HELP_ABOUT = "ClassicEraCensus is an addon that aims to collect population data for the WoW Classic Era servers.\n\nDue to the nature of conducting a census they can take a long time on high pop servers. To aid with this the addon allows multiple people to each conduct a smaller part of a census. The main organiser can then merge all the results to create a full census record.",
POPUP_MERGE_CENSUS = "You should only merge Co-op census to create a full census\n\nOR\n\nMerge recent/concurrent daily census.\n\n-\n\nDo not merge census where there is a large time gap between them.",
EXPORT_INFO = "Export your selected census (or the latest if none selected) and paste the export text into the UPLOAD form on www.classicwowcensus.com",
}
addon.locales.deDE = {
}
addon.locales.frFR = {
}