diff options
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/IRCG/src/commandmonitor.cpp | 2 | ||||
-rw-r--r-- | protocols/IRCG/src/options.cpp | 2 | ||||
-rw-r--r-- | protocols/JabberG/src/jabber_chat.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/protocols/IRCG/src/commandmonitor.cpp b/protocols/IRCG/src/commandmonitor.cpp index 3550c1a4f9..22d1a408ae 100644 --- a/protocols/IRCG/src/commandmonitor.cpp +++ b/protocols/IRCG/src/commandmonitor.cpp @@ -330,7 +330,7 @@ bool CIrcProto::OnIrc_SETAWAY(const CIrcMessage* pmsg) DoPerform("Event: Not available");
break;
case ID_STATUS_DND:
- DoPerform("Event: DND");
+ DoPerform("Event: Do not disturb");
break;
case ID_STATUS_OCCUPIED:
DoPerform("Event: Occupied");
diff --git a/protocols/IRCG/src/options.cpp b/protocols/IRCG/src/options.cpp index 13767def86..4fe3b827e4 100644 --- a/protocols/IRCG/src/options.cpp +++ b/protocols/IRCG/src/options.cpp @@ -956,7 +956,7 @@ static char* sttPerformEvents[] = { LPGEN("Event: Away"),
LPGEN("Event: Not available"),
LPGEN("Event: Occupied"),
- LPGEN("Event: DND"),
+ LPGEN("Event: Do not disturb"),
LPGEN("Event: Free for chat"),
LPGEN("Event: On the phone"),
LPGEN("Event: Out for lunch"),
diff --git a/protocols/JabberG/src/jabber_chat.cpp b/protocols/JabberG/src/jabber_chat.cpp index 7d2c089f9b..5038fd7160 100644 --- a/protocols/JabberG/src/jabber_chat.cpp +++ b/protocols/JabberG/src/jabber_chat.cpp @@ -447,7 +447,7 @@ static gc_item sttLogListItems[] = { LPGENT("Online"), IDM_PRESENCE_ONLINE, MENU_POPUPITEM },
{ LPGENT("Away"), IDM_PRESENCE_AWAY, MENU_POPUPITEM },
{ LPGENT("Not available"), IDM_PRESENCE_NA, MENU_POPUPITEM },
- { LPGENT("DND"), IDM_PRESENCE_DND, MENU_POPUPITEM },
+ { LPGENT("Do not disturb"), IDM_PRESENCE_DND, MENU_POPUPITEM },
{ LPGENT("Free for chat"), IDM_PRESENCE_FREE4CHAT, MENU_POPUPITEM },
{ LPGENT("&Leave chat session"), IDM_LEAVE, MENU_ITEM }
|