use localization.

This commit is contained in:
xavier 2010-12-11 15:01:06 +00:00
parent a1d7083098
commit 25da179730
3 changed files with 4 additions and 4 deletions

View file

@ -53,7 +53,7 @@ namespace Server.Engines.Quests.Necro
}
else
{
player.SendMessage( "You must be young to have this item recharged." );
player.SendLocalizedMessage(1114333); //You must be young to have this item recharged.
}
return false;

View file

@ -223,7 +223,7 @@ namespace Server.Engines.Quests.Haven
}
else
{
player.SendMessage( "You must be young to have this item recharged." );
player.SendLocalizedMessage(1114333); //You must be young to have this item recharged.
}
return false;

View file

@ -329,7 +329,7 @@ namespace Server.Gumps
if ( mob == null || !mob.Player || !mob.Alive || mob == from )
{
from.SendMessage( "That is not a valid target for a rental contract!" );
from.SendLocalizedMessage(1071984); //That is not a valid target for a rental contract!
}
else if ( !mob.InRange( m_Contract, 5 ) )
{
@ -600,7 +600,7 @@ namespace Server.Gumps
m_Vendor.Destroy( false );
from.SendMessage( "Remember to claim your vendor's belongings from the house sign!" );
from.SendLocalizedMessage(1071990); //Remember to claim your vendor's belongings from the house sign!
}
else
{