diff options
author | Dart Raiden <wowemuh@gmail.com> | 2016-01-20 18:01:45 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2016-01-20 18:01:45 +0000 |
commit | 2b3e5469d5740b3426f246648014de6f069a2c05 (patch) | |
tree | 2d20fb7ba47b6406e68f36837b1947192aab202e /plugins/SeenPlugin | |
parent | 4874e848f64514f3d6f76e2f0e341a67e791b6eb (diff) |
"N/A" -> "Not available" (thx Wishmaster for idea)
git-svn-id: http://svn.miranda-ng.org/main/trunk@16126 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SeenPlugin')
-rw-r--r-- | plugins/SeenPlugin/res/resource.rc | 2 | ||||
-rw-r--r-- | plugins/SeenPlugin/src/utils.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/plugins/SeenPlugin/res/resource.rc b/plugins/SeenPlugin/res/resource.rc index b50819bd92..c3104b0faf 100644 --- a/plugins/SeenPlugin/res/resource.rc +++ b/plugins/SeenPlugin/res/resource.rc @@ -93,7 +93,7 @@ BEGIN RTEXT "Away",IDC_STATIC,10,103,60,10
CONTROL "",ID_STATUS_AWAY,"ColourPicker",WS_TABSTOP,80,100,20,14
CONTROL "",40093,"ColourPicker",WS_TABSTOP,105,100,20,14
- RTEXT "N/A",IDC_STATIC,10,123,60,10
+ RTEXT "Not available",IDC_STATIC,10,123,60,10
CONTROL "",ID_STATUS_NA,"ColourPicker",WS_TABSTOP,80,120,20,14
CONTROL "",40095,"ColourPicker",WS_TABSTOP,105,120,20,14
RTEXT "Occupied",IDC_STATIC,10,143,60,10
diff --git a/plugins/SeenPlugin/src/utils.cpp b/plugins/SeenPlugin/src/utils.cpp index 72cc928f17..cdbec7f7f4 100644 --- a/plugins/SeenPlugin/src/utils.cpp +++ b/plugins/SeenPlugin/src/utils.cpp @@ -433,9 +433,9 @@ void GetColorsFromDWord(LPCOLORREF First, LPCOLORREF Second, DWORD colDword) DWORD StatusColors15bits[] = {
0x63180000, // 0x00C0C0C0, 0x00000000, Offline - LightGray
0x7B350000, // 0x00F0C8A8, 0x00000000, Online - LightBlue
- 0x33fe0000, // 0x0070E0E0, 0x00000000, Away -LightOrange
- 0x295C0000, // 0x005050E0, 0x00000000, DND -DarkRed
- 0x5EFD0000, // 0x00B8B8E8, 0x00000000, NA -LightRed
+ 0x33fe0000, // 0x0070E0E0, 0x00000000, Away - LightOrange
+ 0x295C0000, // 0x005050E0, 0x00000000, DND - DarkRed
+ 0x5EFD0000, // 0x00B8B8E8, 0x00000000, Not available - LightRed
0x295C0000, // 0x005050E0, 0x00000000, Occupied
0x43900000, // 0x0080E080, 0x00000000, Free for chat - LightGreen
0x76AF0000, // 0x00E8A878, 0x00000000, Invisible
|