forked from Godot-Fye/Fishbringer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocalization.esES.lua
29 lines (23 loc) · 1.4 KB
/
Localization.esES.lua
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
local ADDON_NAME, namespace = ...
local L = namespace.L
if namespace.locale == "esES" then
--ShowHelp Function
L["Nat Pagle would be proud of you."] = "Nat Pagle estaría orgulloso de ti."
L["- /fishbringer show - Toggles visibility."] = "- /fishbringer show - Alterna la visibilidad."
L["- /fishbringer align - Cycles through text alignment."] = "- /fishbringer align - Recorre la alineación del texto."
L["- /fishbringer count - Toggles fish count visibility."] = "- /fishbringer count - Alterna la visibilidad del recuento de peces."
L["- /fishbringer reset - Resets the fish database."] = "- /fishbringer reset - Restablece la base de datos de peces."
--Fishbringer Overlay/Display Widget
L["No fish in this zone"] = "No hay peces en esta zona"
L["%d skill needed to fish:"] = "%d habilidad necesaria para pescar"
L["%d needed for 100%% catch rate"] = "%d necesario para una tasa de captura del 100%%"
L["%d%% catch rate"] = "%d%% tasa de captura"
-- L["%d%% junk rate"] = "%d%% junk rate"
L["%s%s fishing skill%s"] = "%s%s habilidad de pesca"
L["\n%d fish needed to skill up"] = "\n%d peces necesarios para mejorar"
L["%d fish caught at this level"] = "%d pescado capturado a este nivel"
-- Angeln/Fishing - Name of the Fishing Perk
L["Fishing"] = "taux indésirable"
-- Welcome Message on Login
L["Pack yer bags, we be leavin' fer fishin'!"] = "¡Prepara tus maletas, nos vamos 'a pescar'!"
return end