1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 06:16:40 +02:00

Fix bugs with colors in some german translations (patch #6919)

This commit is contained in:
Sebastien Helleu
2009-10-03 12:16:58 +02:00
parent 427419dcd0
commit 7232e7d7f2
10 changed files with 247 additions and 232 deletions
+6 -4
View File
@@ -2921,13 +2921,14 @@ irc_command_server (void *data, struct t_gui_buffer *buffer, int argc,
{
weechat_printf (NULL,
_("%s: server %s%s%s has been copied to "
"%s%s"),
"%s%s%s"),
IRC_PLUGIN_NAME,
IRC_COLOR_CHAT_SERVER,
argv[2],
IRC_COLOR_CHAT,
IRC_COLOR_CHAT_SERVER,
argv[3]);
argv[3],
IRC_COLOR_CHAT);
return WEECHAT_RC_OK;
}
@@ -2969,13 +2970,14 @@ irc_command_server (void *data, struct t_gui_buffer *buffer, int argc,
{
weechat_printf (NULL,
_("%s: server %s%s%s has been renamed to "
"%s%s"),
"%s%s%s"),
IRC_PLUGIN_NAME,
IRC_COLOR_CHAT_SERVER,
argv[2],
IRC_COLOR_CHAT,
IRC_COLOR_CHAT_SERVER,
argv[3]);
argv[3],
IRC_COLOR_CHAT);
return WEECHAT_RC_OK;
}