-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocalization.es.lua
32 lines (27 loc) · 994 Bytes
/
localization.es.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
30
31
32
--------------------------------------------------------------------------------
-- BadPet @project-version@
-- File: localization.es.lua
-- Author: @project-author@
-- License: LICENSE.txt
--------------------------------------------------------------------------------
--
if not BadPetI18N then
return
end
local default = BadPetI18N["en"];
local L = setmetatable({}, default);
BadPetI18N["es"] = L
L["My pet, %s,"] = "Mi mascota, %s,";
L["My pet"] = "Mi mascota";
L["Your pet, %s,"] = "Su mascota, %s,";
L["Your pet"] = "Su mascota";
L["%s's pet, %s,"] = "Mascota de %s, %s,";
L["%s's pet"] = "Mascota de %s";
L["An unknown pet"] = "Una mascota desconocida";
L["An unknown pet, %s,"] = "Una mascota desconocida, %s,";
L["%s was hit by %s"] = "%2$s golpe alcanzó %1$s";
L["%s was missed by %s"] = "%2$s golpe falló %1$s";
L["%s used %s on %s"] = "%s lanzó %s %s";
L["%s used %s"] = "%s lanzó %s";
L["disabled"] = "desactivado";
L["%s, reporting to %q"] = "%s, informes a %q";