Add internationalization to basechat and fix CS:GO colours (#674)

* Added translation more to basechat

Also fixed colors, because it didn't work without `\x01` at begin of string.

* Fixed cs:go colors, thanks Bara20

* Added 'space' at the start of string.

* Added check for Engine_CSGO, to remove offset on other games

* forgot one row
This commit is contained in:
Alex 2017-12-30 22:25:32 +02:00 committed by Kyle Sanderson
parent de108cca44
commit 6b257de75a
2 changed files with 38 additions and 5 deletions

View File

@ -334,7 +334,10 @@ void SendChatToAll(int client, const char[] message)
}
FormatActivitySource(client, i, nameBuf, sizeof(nameBuf));
PrintToChat(i, "\x04(ALL) %s: \x01%s", nameBuf, message);
if (g_GameEngine == Engine_CSGO)
PrintToChat(i, " \x01\x0B\x04%t: \x01%s", "Say all", nameBuf, message);
else
PrintToChat(i, "\x04%t: \x01%s", "Say all", nameBuf, message);
}
}
@ -360,7 +363,10 @@ void SendChatToAdmins(int from, const char[] message)
{
if (IsClientInGame(i) && (from == i || CheckCommandAccess(i, "sm_chat", ADMFLAG_CHAT)))
{
PrintToChat(i, "\x04(%sADMINS) %N: \x01%s", fromAdmin ? "" : "TO ", from, message);
if (g_GameEngine == Engine_CSGO)
PrintToChat(i, " \x01\x0B\x04%t: \x01%s", fromAdmin ? "Chat admins" : "Chat to admins", from, message);
else
PrintToChat(i, "\x04%t: \x01%s", fromAdmin ? "Chat admins" : "Chat to admins", from, message);
}
}
}
@ -388,10 +394,16 @@ void SendPrivateChat(int client, int target, const char[] message)
}
else if (target != client)
{
PrintToChat(client, "\x04(Private to %N) %N: \x01%s", target, client, message);
if (g_GameEngine == Engine_CSGO)
PrintToChat(client, " \x01\x0B\x04%t: \x01%s", "Private say to", target, client, message);
else
PrintToChat(client, "\x04%t: \x01%s", "Private say to", target, client, message);
}
PrintToChat(target, "\x04(Private to %N) %N: \x01%s", target, client, message);
if (g_GameEngine == Engine_CSGO)
PrintToChat(target, " \x01\x0B\x04%t: \x01%s", "Private say to", target, client, message);
else
PrintToChat(target, "\x04%t: \x01%s", "Private say to", target, client, message);
LogAction(client, target, "\"%L\" triggered sm_psay to \"%L\" (text %s)", client, target, message);
}

View File

@ -239,4 +239,25 @@
{
"en" "Off"
}
"Say all"
{
"#format" "{1:s}"
"en" "(ALL) {1}"
}
"Chat admins"
{
"#format" "{1:N}"
"en" "(ADMINS) {1}"
}
"Chat to admins"
{
"#format" "{1:N}"
"en" "(TO ADMINS) {1}"
}
"Private say to"
{
"#format" "{1:N},{2:N}"
"en" "(Private to {1}) {2}"
}
}