diff options
Diffstat (limited to 'src/core/stdclist')
-rw-r--r-- | src/core/stdclist/res/resource.rc | 2 | ||||
-rw-r--r-- | src/core/stdclist/src/clcopts.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/stdclist/res/resource.rc b/src/core/stdclist/res/resource.rc index 61a0b54819..fb0fd779e1 100644 --- a/src/core/stdclist/res/resource.rc +++ b/src/core/stdclist/res/resource.rc @@ -476,7 +476,7 @@ BEGIN MENUITEM "&Offline\tCtrl+0", ID_STATUS_OFFLINE, CHECKED
MENUITEM "On&line\tCtrl+1", ID_STATUS_ONLINE
MENUITEM "&Away\tCtrl+2", ID_STATUS_AWAY
- MENUITEM "&N/A\tCtrl+3", ID_STATUS_NA
+ MENUITEM "&Not available\tCtrl+3", ID_STATUS_NA
MENUITEM "Occ&upied\tCtrl+4", ID_STATUS_OCCUPIED
MENUITEM "&DND\tCtrl+5", ID_STATUS_DND
MENUITEM "&Free for chat\tCtrl+6", ID_STATUS_FREECHAT
diff --git a/src/core/stdclist/src/clcopts.cpp b/src/core/stdclist/src/clcopts.cpp index 9d6c8e7f02..4713ca180d 100644 --- a/src/core/stdclist/src/clcopts.cpp +++ b/src/core/stdclist/src/clcopts.cpp @@ -63,7 +63,7 @@ static const struct CheckBoxValues_t greyoutValues[] = { MODEF_OFFLINE, LPGENT("Offline") },
{ PF2_ONLINE, LPGENT("Online") },
{ PF2_SHORTAWAY, LPGENT("Away") },
- { PF2_LONGAWAY, LPGENT("N/A") },
+ { PF2_LONGAWAY, LPGENT("Not available") },
{ PF2_LIGHTDND, LPGENT("Occupied") },
{ PF2_HEAVYDND, LPGENT("DND") },
{ PF2_FREECHAT, LPGENT("Free for chat") },
@@ -77,7 +77,7 @@ static const struct CheckBoxValues_t offlineValues[] = { MODEF_OFFLINE, LPGENT("Offline") },
{ PF2_ONLINE, LPGENT("Online") },
{ PF2_SHORTAWAY, LPGENT("Away") },
- { PF2_LONGAWAY, LPGENT("N/A") },
+ { PF2_LONGAWAY, LPGENT("Not available") },
{ PF2_LIGHTDND, LPGENT("Occupied") },
{ PF2_HEAVYDND, LPGENT("DND") },
{ PF2_FREECHAT, LPGENT("Free for chat") },
|