/pidgin/main: faba3b092f55: Attempt to clarify a string and adju...
Mark Doliner <[email protected]>
| Newsgroups | gmane.comp.gnome.gaim.cvs |
|---|---|
| Message-ID | <[email protected]> |
Changeset: faba3b092f5583571b06836a45d1a1ace31d854f Author: Mark Doliner <[email protected]> Date: 2014-06-17 22:24 -0700 Branch: default URL: https://hg.pidgin.im/pidgin/main/rev/faba3b092f55 Description: Attempt to clarify a string and adjust the formatting slightly. diffstat: libpurple/protocols/oscar/visibility.c | 11 +++++------ 1 files changed, 5 insertions(+), 6 deletions(-) diffs (25 lines): diff --git a/libpurple/protocols/oscar/visibility.c b/libpurple/protocols/oscar/visibility.c --- a/libpurple/protocols/oscar/visibility.c +++ b/libpurple/protocols/oscar/visibility.c @@ -125,16 +125,15 @@ void oscar_show_visible_list(PurplePluginAction *action) { show_private_list(action, AIM_SSI_TYPE_PERMIT, _("Visible List"), - _("These buddies will see " - "your status when you switch " - "to \"Invisible\""), - _(APPEAR_ONLINE)); + _("These buddies can see your status even when you're " + "invisible."), + _(APPEAR_ONLINE)); } void oscar_show_invisible_list(PurplePluginAction *action) { show_private_list(action, AIM_SSI_TYPE_DENY, _("Invisible List"), - _("These buddies will always see you as offline"), - _(APPEAR_OFFLINE)); + _("These buddies will always see you as offline."), + _(APPEAR_OFFLINE)); }