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 /plugins/Non-IM Contact/src | |
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 'plugins/Non-IM Contact/src')
-rw-r--r-- | plugins/Non-IM Contact/src/contactinfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Non-IM Contact/src/contactinfo.cpp b/plugins/Non-IM Contact/src/contactinfo.cpp index 1c028354a3..095d04bc7d 100644 --- a/plugins/Non-IM Contact/src/contactinfo.cpp +++ b/plugins/Non-IM Contact/src/contactinfo.cpp @@ -595,19 +595,19 @@ INT_PTR ImportContacts(WPARAM, LPARAM) else if (icon == ID_STATUS_AWAY)
mir_snprintf(tmp, "Icon: Away\r\n");
else if (icon == ID_STATUS_NA)
- mir_snprintf(tmp, "Icon: NA\r\n");
+ mir_snprintf(tmp, "Icon: N/A\r\n");
else if (icon == ID_STATUS_DND)
mir_snprintf(tmp, "Icon: DND\r\n");
else if (icon == ID_STATUS_OCCUPIED)
mir_snprintf(tmp, "Icon: Occupied\r\n");
else if (icon == ID_STATUS_FREECHAT)
- mir_snprintf(tmp, "Icon: Free For Chat\r\n");
+ mir_snprintf(tmp, "Icon: Free for chat\r\n");
else if (icon == ID_STATUS_INVISIBLE)
mir_snprintf(tmp, "Icon: Invisible\r\n");
else if (icon == ID_STATUS_ONTHEPHONE)
- mir_snprintf(tmp, "Icon: On The Phone\r\n");
+ mir_snprintf(tmp, "Icon: On the phone\r\n");
else if (icon == ID_STATUS_OUTTOLUNCH)
- mir_snprintf(tmp, "Icon: Out To Lunch\r\n");
+ mir_snprintf(tmp, "Icon: Out to lunch\r\n");
else {
free(msg);
continue;
|