overhaul of the phrases for consistency

renamed config files for adminmenu
cleaned up execcfg menu code

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401598
This commit is contained in:
David Anderson
2007-10-16 18:37:24 +00:00
parent 2b15d877aa
commit 5d72810449
24 changed files with 129 additions and 115 deletions
+3 -3
View File
@@ -6,7 +6,7 @@ PerformBurn(client, target, Float:seconds)
if (!IsPlayerAlive(target))
{
ReplyToCommand(client, "[SM] %t", "Cannot performed on dead", name);
ReplyToCommand(client, "[SM] %t", "Cannot be performed on dead", name);
return;
}
@@ -20,7 +20,7 @@ DisplayBurnMenu(client)
new Handle:menu = CreateMenu(MenuHandler_Burn);
decl String:title[100];
Format(title, sizeof(title), "%T:", "Burn Player", client);
Format(title, sizeof(title), "%T:", "Burn player", client);
SetMenuTitle(menu, title);
SetMenuExitBackButton(menu, true);
@@ -38,7 +38,7 @@ public AdminMenu_Burn(Handle:topmenu,
{
if (action == TopMenuAction_DisplayOption)
{
Format(buffer, maxlength, "%T", "Burn Player", param);
Format(buffer, maxlength, "%T", "Burn player", param);
}
else if (action == TopMenuAction_SelectOption)
{
+4 -4
View File
@@ -6,7 +6,7 @@ PerformSlap(client, target, damage)
if (!IsPlayerAlive(target))
{
ReplyToCommand(client, "[SM] %t", "Cannot performed on dead", name);
ReplyToCommand(client, "[SM] %t", "Cannot be performed on dead", name);
return;
}
@@ -20,7 +20,7 @@ DisplaySlapDamageMenu(client)
new Handle:menu = CreateMenu(MenuHandler_SlapDamage);
decl String:title[100];
Format(title, sizeof(title), "%T:", "Slap Damage", client);
Format(title, sizeof(title), "%T:", "Slap damage", client);
SetMenuTitle(menu, title);
SetMenuExitBackButton(menu, true);
@@ -40,7 +40,7 @@ DisplaySlapTargetMenu(client)
new Handle:menu = CreateMenu(MenuHandler_Slap);
decl String:title[100];
Format(title, sizeof(title), "%T:", "Slap Player", client);
Format(title, sizeof(title), "%T:", "Slap player", client);
SetMenuTitle(menu, title);
SetMenuExitBackButton(menu, true);
@@ -58,7 +58,7 @@ public AdminMenu_Slap(Handle:topmenu,
{
if (action == TopMenuAction_DisplayOption)
{
Format(buffer, maxlength, "%T", "Slap Player", param);
Format(buffer, maxlength, "%T", "Slap player", param);
}
else if (action == TopMenuAction_SelectOption)
{
+1 -1
View File
@@ -7,7 +7,7 @@ PerformSlay(client, target)
if (!IsPlayerAlive(target))
{
ReplyToCommand(client, "[SM] %t", "Cannot performed on dead", name);
ReplyToCommand(client, "[SM] %t", "Cannot be performed on dead", name);
return;
}