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 /src/core/stdclist | |
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 '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 8c82256bfe..452f1bfec8 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 "&NA\tCtrl+3", ID_STATUS_NA
+ MENUITEM "&N/A\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 0f4628721b..9d6c8e7f02 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("NA") },
+ { PF2_LONGAWAY, LPGENT("N/A") },
{ 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("NA") },
+ { PF2_LONGAWAY, LPGENT("N/A") },
{ PF2_LIGHTDND, LPGENT("Occupied") },
{ PF2_HEAVYDND, LPGENT("DND") },
{ PF2_FREECHAT, LPGENT("Free for chat") },
|