summaryrefslogtreecommitdiff
path: root/plugins/Import
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Import')
-rw-r--r--plugins/Import/res/resource.rc6
-rw-r--r--plugins/Import/src/main.cpp2
-rw-r--r--plugins/Import/src/miranda.cpp2
3 files changed, 5 insertions, 5 deletions
diff --git a/plugins/Import/res/resource.rc b/plugins/Import/res/resource.rc
index 3ad1b1111a..632fc88996 100644
--- a/plugins/Import/res/resource.rc
+++ b/plugins/Import/res/resource.rc
@@ -58,7 +58,7 @@ FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
LTEXT "Choose how you would like to import:",IDC_STATIC,5,16,
210,8
- CONTROL "From a Miranda IM database.",IDC_MIRANDA,"Button",
+ CONTROL "From a Miranda NG database.",IDC_MIRANDA,"Button",
BS_AUTORADIOBUTTON,11,31,204,10
END
@@ -311,12 +311,12 @@ BEGIN
BEGIN
VALUE "Comments", "Licensed under the terms of the GNU General Public License"
VALUE "CompanyName", " "
- VALUE "FileDescription", "Miranda IM Import Plugin"
+ VALUE "FileDescription", "Miranda NG Import Plugin"
VALUE "FileVersion", "0.8.0.1"
VALUE "InternalName", "import"
VALUE "LegalCopyright", "Copyright © 2000-2009, Martin Öberg, Richard Hughes, Dmitry Kuzkin, George Hazan"
VALUE "OriginalFilename", "import.dll"
- VALUE "ProductName", "Miranda IM"
+ VALUE "ProductName", "Miranda NG"
VALUE "ProductVersion", "0.8.0.1"
END
END
diff --git a/plugins/Import/src/main.cpp b/plugins/Import/src/main.cpp
index 13f4f8f315..39231e0c4c 100644
--- a/plugins/Import/src/main.cpp
+++ b/plugins/Import/src/main.cpp
@@ -41,7 +41,7 @@ PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
"Import contacts and messages",
__VERSION_DWORD,
- "Imports contacts and messages from Mirabilis ICQ and Miranda IM.",
+ "Imports contacts and messages from another Miranda profile or from an external program.",
"Miranda team",
"info@miranda-im.org",
"© 2000-2010 Martin Öberg, Richard Hughes, Dmitry Kuzkin, George Hazan",
diff --git a/plugins/Import/src/miranda.cpp b/plugins/Import/src/miranda.cpp
index 0c20b61d7a..9e809975a7 100644
--- a/plugins/Import/src/miranda.cpp
+++ b/plugins/Import/src/miranda.cpp
@@ -152,7 +152,7 @@ INT_PTR CALLBACK MirandaPageProc(HWND hdlg,UINT message,WPARAM wParam,LPARAM lPa
ZeroMemory(&ofn, sizeof(ofn));
ofn.lStructSize = OPENFILENAME_SIZE_VERSION_400;
ofn.hwndOwner = hdlg;
- mir_sntprintf(text, SIZEOF(text), _T("%s (*.dat, *.bak)%c*.dat;*.bak%c%s (*.*)%c*.*%c%c"), TranslateT("Miranda IM database"), 0, 0, TranslateT("All Files"), 0, 0, 0);
+ mir_sntprintf(text, SIZEOF(text), _T("%s (*.dat, *.bak)%c*.dat;*.bak%c%s (*.*)%c*.*%c%c"), TranslateT("Miranda NG database"), 0, 0, TranslateT("All Files"), 0, 0, 0);
ofn.lpstrFilter = text;
ofn.lpstrDefExt = _T("dat");
ofn.lpstrFile = str;