# HG changeset patch # User Mark Doliner # Date 1091766645 0 # Node ID 89110d3665df21228ed733854e940e6cd23cfc9f # Parent 7c50e203184660ba8ff24e3f8ac002403a8f724c [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 diff -r 7c50e2031846 -r 89110d3665df src/gaim-remote.c --- 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); }