Mercurial > pidgin
changeset 9695:89110d3665df
[gaim-migrate @ 10550]
Add help for individual gaim-remote commands. I think this was from
Bjoern. Eat your heart out string freeze!
committer: Tailor Script <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Fri, 06 Aug 2004 04:30:45 +0000 |
parents | 7c50e2031846 |
children | a57fa78e5752 |
files | src/gaim-remote.c |
diffstat | 1 files changed, 11 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gaim-remote.c Fri Aug 06 04:10:51 2004 +0000 +++ b/src/gaim-remote.c Fri Aug 06 04:30:45 2004 +0000 @@ -251,9 +251,19 @@ " gaim-remote uri 'aim:addbuddy?screenname=Penguin'\n" "...prompts you to add 'Penguin' to your buddy list.\n"), 1); } - else if(!strcmp(command, "quit")) { + + else if (!strcmp(command, "quit")) { message(_("\nClose running copy of Gaim\n"), 1); } + + else if (!strcmp(command, "away")) { + message(_("\nMark all accounts as \"away\" with the default message.\n"), 1); + } + + else if (!strcmp(command, "back")) { + message(_("\nSet all accounts as not away.\n"), 1); + } + else { show_remote_usage(name); }