diff options
author | dartraiden <wowemuh@gmail.com> | 2020-03-18 17:07:06 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2020-03-18 17:07:33 +0300 |
commit | 26cb50759800a1388843ba2b9fa27eb1766899da (patch) | |
tree | 9cb65623296930fc123e5de786c3996654a4c25f /plugins | |
parent | 3ef77b40f926008cac2d3f13e832710a226d8bf2 (diff) |
Shorter is better
Diffstat (limited to 'plugins')
-rwxr-xr-x | plugins/Msg_Export/src/options.cpp | 2 | ||||
-rwxr-xr-x | plugins/Msg_Export/src/utils.cpp | 2 | ||||
-rw-r--r-- | plugins/SecureIM/src/language.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Msg_Export/src/options.cpp b/plugins/Msg_Export/src/options.cpp index 21ea372bbd..e7f91192b0 100755 --- a/plugins/Msg_Export/src/options.cpp +++ b/plugins/Msg_Export/src/options.cpp @@ -466,7 +466,7 @@ public: cCol.cx = nUINColWitdh;
cCol.mask |= LVCF_FMT;
cCol.fmt = LVCFMT_RIGHT;
- cCol.pszText = TranslateT("UIN/Email/JID/...");
+ cCol.pszText = TranslateT("User ID");
listUsers.InsertColumn(3, &cCol);
int nUser = 0;
diff --git a/plugins/Msg_Export/src/utils.cpp b/plugins/Msg_Export/src/utils.cpp index 11a61221d9..41123cb714 100755 --- a/plugins/Msg_Export/src/utils.cpp +++ b/plugins/Msg_Export/src/utils.cpp @@ -748,7 +748,7 @@ static bool ExportDBEventInfo(MCONTACT hContact, HANDLE hFile, wstring sFilePath ptrW id(Contact_GetInfo(CNF_UNIQUEID, hContact, szProto));
if (id != NULL)
- output.AppendFormat(L"%-10s: %s\r\n", TranslateT("UIN"), id.get());
+ output.AppendFormat(L"%-10s: %s\r\n", TranslateT("User ID"), id.get());
szTemp[0] = (wchar_t)db_get_b(hContact, szProto, "Gender", 0);
if (szTemp[0]) {
diff --git a/plugins/SecureIM/src/language.cpp b/plugins/SecureIM/src/language.cpp index 887e7ce496..a6cf8f8961 100644 --- a/plugins/SecureIM/src/language.cpp +++ b/plugins/SecureIM/src/language.cpp @@ -36,7 +36,7 @@ LPCSTR sim115 = LPGEN("Can't import RSA public key!"); LPCSTR sim201 = LPGEN("General");
LPCSTR sim202 = LPGEN("Accounts");
LPCSTR sim203 = LPGEN("Nickname");
-LPCSTR sim204 = "UIN/Email/JID/...";
+LPCSTR sim204 = LPGEN("User ID");
LPCSTR sim205 = LPGEN("Status");
LPCSTR sim206 = "PSK";
LPCSTR sim210 = LPGEN("Name");
|