diff options
author | Dart Raiden <wowemuh@gmail.com> | 2016-01-04 14:32:49 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2016-01-04 14:32:49 +0000 |
commit | c04be5ec932da96596e4ef971b022992f84db870 (patch) | |
tree | c88c35c3995f1c552e0ed7da0bcd5415e3543fc3 /protocols/JabberG/src/jabber_rc.cpp | |
parent | ea26b9a0835ee0d164e00996a2a7a44a1b5f909e (diff) |
"NA" -> "N/A"
git-svn-id: http://svn.miranda-ng.org/main/trunk@16019 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/JabberG/src/jabber_rc.cpp')
-rw-r--r-- | protocols/JabberG/src/jabber_rc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/JabberG/src/jabber_rc.cpp b/protocols/JabberG/src/jabber_rc.cpp index 5ac6acfe57..ad2c0a89ef 100644 --- a/protocols/JabberG/src/jabber_rc.cpp +++ b/protocols/JabberG/src/jabber_rc.cpp @@ -303,8 +303,8 @@ int CJabberProto::AdhocSetStatusHandler(HXML, CJabberIqInfo *pInfo, CJabberAdhoc fieldNode << XCHILD(_T("option")) << XATTR(_T("label"), TranslateT("Free for chat")) << XCHILD(_T("value"), _T("chat"));
fieldNode << XCHILD(_T("option")) << XATTR(_T("label"), TranslateT("Online")) << XCHILD(_T("value"), _T("online"));
fieldNode << XCHILD(_T("option")) << XATTR(_T("label"), TranslateT("Away")) << XCHILD(_T("value"), _T("away"));
- fieldNode << XCHILD(_T("option")) << XATTR(_T("label"), TranslateT("Extended Away (N/A)")) << XCHILD(_T("value"), _T("xa"));
- fieldNode << XCHILD(_T("option")) << XATTR(_T("label"), TranslateT("Do Not Disturb")) << XCHILD(_T("value"), _T("dnd"));
+ fieldNode << XCHILD(_T("option")) << XATTR(_T("label"), TranslateT("Extended away (N/A)")) << XCHILD(_T("value"), _T("xa"));
+ fieldNode << XCHILD(_T("option")) << XATTR(_T("label"), TranslateT("Do not disturb (DND)")) << XCHILD(_T("value"), _T("dnd"));
fieldNode << XCHILD(_T("option")) << XATTR(_T("label"), TranslateT("Invisible")) << XCHILD(_T("value"), _T("invisible"));
fieldNode << XCHILD(_T("option")) << XATTR(_T("label"), TranslateT("Offline")) << XCHILD(_T("value"), _T("offline"));
|