Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gamemode/items/base/sh_outfit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ end)

ITEM.functions.EquipUn = { -- sorry, for name order.
name = "unequip",
tip = "equipTip",
tip = "unequipTip",
icon = "icon16/cross.png",
OnRun = function(item)
item:RemoveOutfit(item.player)
Expand Down
2 changes: 1 addition & 1 deletion gamemode/items/base/sh_pacoutfit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ end)
-- On player uneqipped the item, Removes a weapon from the player and keep the ammo in the item.
ITEM.functions.EquipUn = { -- sorry, for name order.
name = "unequip",
tip = "equipTip",
tip = "unequipTip",
icon = "icon16/cross.png",
OnRun = function(item)
item:RemovePart(item.player)
Expand Down
2 changes: 1 addition & 1 deletion gamemode/items/base/sh_weapons.lua
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ end)
-- On player uneqipped the item, Removes a weapon from the player and keep the ammo in the item.
ITEM.functions.EquipUn = { -- sorry, for name order.
name = "unequip",
tip = "equipTip",
tip = "unequipTip",
icon = "icon16/cross.png",
OnRun = function(item)
item:Unequip(item.player, true)
Expand Down
20 changes: 19 additions & 1 deletion gamemode/languages/sh_spanish.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
-- SPANISH TRANSLATION
-- Cuboxis (http://steamcommunity.com/id/Cuboxis)
-- Geferon (https://steamcommunity.com/id/GEFERON)
-- Whitehole (https://steamcommunity.com/id/whitehole)
-- Carlos Bes

NAME = "Español"

Expand Down Expand Up @@ -160,6 +165,7 @@ LANGUAGE = {
moneyTaken = "Has encontrado %s.",
moneyGiven = "Te han dado %s.",
insufficientMoney = "No puedes permitirte esto con tu dinero.",
belowMinMoneyDrop = "No puedes soltar menos de %s.",
businessPurchase = "Has comprado %s por %s.",
businessSell = "Has vendido %s por %s.",
businessTooFast = "Por favor, espera antes de comprar otro objeto.",
Expand Down Expand Up @@ -308,8 +314,10 @@ LANGUAGE = {
containerNameWrite = "Introduce el nombre.",
containerNameRemove = "Has borrado el nombre de este contenedor.",
containerInvalid = "¡Necesitas estar mirando a un contenedor para hacer esto!",
passwordAttemptLimit = "¡Demasiados intentos fallidos de contraseña!",
wrongPassword = "Has introducido una contraseña errónea.",
respawning = "Reapareciendo...",
syntax = "Formato: %s",
tellAdmin = "Informa a un miembro del staff de este error: %s",

mapAdd = "Has añadido una escena de mapa.",
Expand Down Expand Up @@ -447,5 +455,15 @@ LANGUAGE = {
cmdY = "Grita algo a las personas a tu alrededor.",
cmdEvent = "Describe un evento que todos pueden ver en el servidor.",
cmdOOC = "Envía un mensaje en el chat (global) fuera de personaje.",
cmdLOOC = "Envía un mensaje en el chat (local) fuera de personaje."
cmdLOOC = "Envía un mensaje en el chat (local) fuera de personaje.",

iconEditorAlignBest = "Alineación óptima",
iconEditorWidth = "Ancho",
iconEditorHeight = "Altura",
iconEditorCopy = "Copiar al portapapeles",
iconEditorCopied = "Datos del modelo del objeto copiados al portapapeles.",
iconEditorAlignFront = "Alinear desde el frente",
iconEditorAlignAbove = "Alinear desde arriba",
iconEditorAlignRight = "Alinear desde la derecha",
iconEditorAlignCenter = "Alinear desde el centro"
}
Loading