summaryrefslogtreecommitdiff
path: root/protocols/Omegle/src/chat.cpp
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2015-10-20 15:13:37 +0000
committerRobert Pösel <robyer@seznam.cz>2015-10-20 15:13:37 +0000
commit7d1babb61cffcf4c376463053397e3b11659f349 (patch)
treeb8249b332a665b5d95a413d92b3729cd138be2cf /protocols/Omegle/src/chat.cpp
parent7d1d2dad298eb1fb008c3116dc7c62dda051645b (diff)
Omegle: Various improvements; version bump
* Show icon with typing info in statusbar * Don't send "hi message" when in mode for anwering questions * Clear typing info on more events (e.g. on spy message) * Fix icons labels in icolib * Fix help messages * Show which stranger is typing in spy mode git-svn-id: http://svn.miranda-ng.org/main/trunk@15582 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Omegle/src/chat.cpp')
-rw-r--r--protocols/Omegle/src/chat.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/protocols/Omegle/src/chat.cpp b/protocols/Omegle/src/chat.cpp
index 1bd515667e..a8179f5cc5 100644
--- a/protocols/Omegle/src/chat.cpp
+++ b/protocols/Omegle/src/chat.cpp
@@ -153,22 +153,22 @@ int OmegleProto::OnChatEvent(WPARAM, LPARAM lParam)
else if (!mir_strcmpi(command.c_str(), "help"))
{
UpdateChat(NULL, TranslateT("There are three different modes of chatting:\
- \n1) Standard mode\t - You chat with random stranger privately\
- \n2) Question mode\t - You ask two strangers a question and see how they discuss it (you can't join their conversation, only watch)\
- \n3) Spy mode\t - You and stranger got a question to discuss from third stranger (he can't join your conversation, only watch)\
- \n\nSend '/commands' for available commands."), false);
+\n1) Standard mode\t - You chat with random stranger privately\
+\n2) Question mode\t - You ask two strangers a question and see how they discuss it (you can't join their conversation, only watch)\
+\n3) Spy mode\t - You and stranger got a question to discuss from third stranger (he can't join your conversation, only watch)\
+\n\nSend '/commands' for available commands."), false);
}
else if (!mir_strcmpi(command.c_str(), "commands"))
{
UpdateChat(NULL, TranslateT("You can use different commands:\
- \n/help\t - show info about chat modes\
- \n/new\t - start standard mode\
- \n/ask <question> - start question mode with your question\
- \n/ask\t - start question mode with your last asked question\
- \n/spy\t - start spy mode\
- \n/quit\t - disconnect from stranger or stop connecting\
- \n/asl\t - send your predefined ASL message\
- \n\nNote: You can reconnect to different stranger without disconnecting from current one."), false);
+\n/help\t - show info about chat modes\
+\n/new\t - start standard mode\
+\n/ask <question> - start question mode with your question\
+\n/ask\t - start question mode with your last asked question\
+\n/spy\t - start spy mode\
+\n/quit\t - disconnect from stranger or stop connecting\
+\n/asl\t - send your predefined ASL message\
+\n\nNote: You can reconnect to different stranger without disconnecting from current one."), false);
break;
}
else