diff options
-rw-r--r-- | plugins/HTTPServer/src/GuiElements.cpp | 2 | ||||
-rw-r--r-- | plugins/TipperYM/src/translations.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/HTTPServer/src/GuiElements.cpp b/plugins/HTTPServer/src/GuiElements.cpp index 9e03f45127..0a17aba557 100644 --- a/plugins/HTTPServer/src/GuiElements.cpp +++ b/plugins/HTTPServer/src/GuiElements.cpp @@ -1219,7 +1219,7 @@ static INT_PTR CALLBACK OptionsDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LP GetDlgItemText(hwndDlg, IDC_PAGE_KEYWORD, szKeyWord, sizeof(szKeyWord));
DWORD dwExternalIP = GetExternIP(szUrl, szKeyWord);
- mir_snprintf(szKeyWord, sizeof(szKeyWord), Translate("You external ip was detected as %d.%d.%d.%d\r\nby: %s") ,
+ mir_snprintf(szKeyWord, sizeof(szKeyWord), Translate("You external IP was detected as %d.%d.%d.%d\r\nby: %s") ,
SplitIpAddress(dwExternalIP) ,
szUrl);
MessageBox(hwndDlg, szKeyWord, MSG_BOX_TITEL, MB_OK);
diff --git a/plugins/TipperYM/src/translations.cpp b/plugins/TipperYM/src/translations.cpp index ad98d19a5e..4b3050ce9e 100644 --- a/plugins/TipperYM/src/translations.cpp +++ b/plugins/TipperYM/src/translations.cpp @@ -704,7 +704,7 @@ static DBVTranslation internalTranslations[] = { ByteToYesNo, LPGENT("BYTE to Yes/No") },
{ ByteToGender, LPGENT("BYTE to Male/Female (ICQ)") },
{ WordToCountry, LPGENT("WORD to country name") },
- { DwordToIp, LPGENT("DWORD to ip address") },
+ { DwordToIp, LPGENT("DWORD to IP address") },
{ DayMonthYearToDate, LPGENT("<prefix>Day|Month|Year to date") },
{ DayMonthYearToAge, LPGENT("<prefix>Day|Month|Year to age") },
{ HoursMinutesSecondsToTime, LPGENT("<prefix>Hours|Minutes|Seconds to time") },
|