summaryrefslogtreecommitdiff
path: root/src/modules/netlib
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/netlib')
-rw-r--r--src/modules/netlib/netliblog.cpp4
-rw-r--r--src/modules/netlib/netlibssl.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/netlib/netliblog.cpp b/src/modules/netlib/netliblog.cpp
index 0e121ef4fb..878289e826 100644
--- a/src/modules/netlib/netliblog.cpp
+++ b/src/modules/netlib/netliblog.cpp
@@ -116,7 +116,7 @@ static INT_PTR CALLBACK LogOptionsDlgProc(HWND hwndDlg, UINT message, WPARAM wPa
TreeView_InsertItem(hwndFilter, &tvis);
}
tvis.item.lParam = -1;
- tvis.item.pszText = TranslateT("(Miranda Core Logging)");
+ tvis.item.pszText = TranslateT("(Miranda core logging)");
tvis.item.state = INDEXTOSTATEIMAGEMASK((logOptions.toLog) ? 2 : 1);
TreeView_InsertItem(hwndFilter, &tvis);
}
@@ -166,7 +166,7 @@ static INT_PTR CALLBACK LogOptionsDlgProc(HWND hwndDlg, UINT message, WPARAM wPa
ofn.Flags|=OFN_PATHMUSTEXIST|OFN_FILEMUSTEXIST;
ofn.lpstrTitle = TranslateT("Select program to be run");
}
- _tcscpy(filter, TranslateT("All Files"));
+ _tcscpy(filter, TranslateT("All files"));
_tcscat(filter, _T(" (*)"));
pfilter = filter+lstrlen(filter)+1;
_tcscpy(pfilter, _T("*"));
diff --git a/src/modules/netlib/netlibssl.cpp b/src/modules/netlib/netlibssl.cpp
index 65b564795c..926a952bff 100644
--- a/src/modules/netlib/netlibssl.cpp
+++ b/src/modules/netlib/netlibssl.cpp
@@ -87,7 +87,7 @@ static void ReportSslError(SECURITY_STATUS scRet, int line, bool showPopup = fal
return;
case SEC_E_INVALID_TOKEN:
- _tcscpy(szMsgBuf, TranslateT("Client cannot decode host message. Possible causes: Host does not support SSL or requires not existing security package"));
+ _tcscpy(szMsgBuf, TranslateT("Client cannot decode host message. Possible causes: host does not support SSL or requires not existing security package"));
break;
case CERT_E_CN_NO_MATCH: