-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlocales.lua
More file actions
executable file
·87 lines (70 loc) · 4.44 KB
/
Copy pathlocales.lua
File metadata and controls
executable file
·87 lines (70 loc) · 4.44 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
local ADDON_NAME, ns = ...
local L = {}
ns.L = L
setmetatable(L, { __index = function(t, k)
local v = tostring(k)
t[k] = v
return v
end })
-- Get strings from the API
local secretestFishName, _ = C_Item.GetItemInfo(158932)
L.SecretestFishName = secretestFishName or "Secretest Fish"
local bubblefilledFlounderName, _ = C_Item.GetItemInfo(200638)
L.BubblefilledFlounderName = bubblefilledFlounderName or "Bubblefilled Flounder"
-- Default (English)
L.ToggleWindow = "Toggle Window"
L.Version = "%s is the current version." -- ns.version
L.Install = "Thanks for installing |cff%1$sv%2$s|r! You can open the interface with |cff%1$s/%3$s|r." -- ns.color, ns.version, ns.command
L.Intro = "Locations in the lists that have coordinates attached to them can be clicked to set a Map Pin."
L.Section1Pre = "Simply travel around Mechagon fishing in specific areas and turn each fish in!"
L.Section1Post = "When you've caught all 10, you will be awarded the Secret Fish Goggles, which you will need for the next achievement!"
L.Section2Pre1 = "Despite being about fishing, you actually don't need to do any fishing for this achievement. You'll make heavy use of your Secret Fish Goggles and you'll also be journeying across space and time to track all the fish down!"
L.Section2Pre2 = "To collect Secret Fish for this achievement, you'll need to use the Secret Fish Goggles, applying its buff to yourself, and Secret Fish (looks like a small bubble) will spawn within 40 yards of you every ~30 seconds. It is recommended to farm these that you find an open area or steep ledge to make view of spawns clear and quick."
L.Section2Pre3 = "Important to note is that Secret Fish can be seen and interacted with by group members, so grouping with others using their Secret Fish Goggles will increase your spawn rates!"
L.Section2Pre4 = "These first 8 can be acquired in any zone at any time, so it is recommended you prioritise the Secret Fish after, and you will pick these up as you go:"
L.Section2Post = "When you've caught all 30, you will be awarded the Hyper-Compressed Ocean!"
L.Section3Pre1 = "Note: This is NOT an achievement. Whether or not there is a secret-related purpose for the Secret Fish Lure is still unknown."
L.Section4Pre1 = "Note: This is NOT an achievement. Whether or not there is a secret-related purpose for the Bubblefilled Flounder is still unknown."
L.SpecificZoneTypePre = "These next 14 can only be acquired in specific zones:"
L.NightTypePre = "This next one can only be acquired during the night (server time):"
L.DayTypePre = "This next one can only be acquired during the day (server time):"
L.KirinTorClownPost = "Broken Isles/Northrend"
L.PrisonFishPost = "Make sure you're in the PVP zone!"
L.GhostTypePre = "These next 4 can only be acquired while you are |cffff6666dead|r, and the best place to do so is in Broken Isles Dalaran, behind the southern bank (although |cffffc478Shadowlands|r zones also work):"
L.GreenRoughyPre = "This next one can only be acquired while you have the Painted Green Buff:"
L.DisplacedScrapfinPre = "This next one can only be acquired in the alternate version of Mechagon as part of the daily quest, The Other Place, from Chromie:"
L.SecretestFishDescription = "Find this fish using your Secret Fish Goggles in any Shadowlands zone and deliver it to Angler Danielle on Mechagon Island."
L.BubblefilledFlounderDescription = "This fish can only be acquired while you are |cffff6666dead|r and can be found in the ocean in the Waking Shores."
L.Completed = "Completed"
L.Reward = "Reward"
L.DropsAnywhere = "Drops anywhere"
L.DropChance = "Drop Chance"
L.ZoneWide = "Zone-wide"
L.Attempts = "~95% after 300 attempts"
L.AddonCompartmentTooltip = "|cff" .. ns.color .. "Click:|r Open Window"
-- Check locale and assign appropriate
local CURRENT_LOCALE = GetLocale()
-- English
if CURRENT_LOCALE == "enUS" then return end
-- German
if CURRENT_LOCALE == "deDE" then return end
-- Spanish
if CURRENT_LOCALE == "esES" then return end
-- Latin-American Spanish
if CURRENT_LOCALE == "esMX" then return end
-- French
if CURRENT_LOCALE == "frFR" then return end
-- Italian
if CURRENT_LOCALE == "itIT" then return end
-- Brazilian Portuguese
if CURRENT_LOCALE == "ptBR" then return end
-- Russian
if CURRENT_LOCALE == "ruRU" then return end
-- Korean
if CURRENT_LOCALE == "koKR" then return end
-- Simplified Chinese
if CURRENT_LOCALE == "zhCN" then return end
-- Traditional Chinese
if CURRENT_LOCALE == "zhTW" then return end
-- Swedish
if CURRENT_LOCALE == "svSE" then return end