From 290f72980a890c08e043ba8f57f59d2c81c14026 Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Mon, 23 Jul 2012 20:07:17 +0000 Subject: Miranda IM renamed to Miranda NG part 2 and contributors.txt edited git-svn-id: http://svn.miranda-ng.org/main/trunk@1138 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- docs/contributors.txt | 64 +++++++++++++++------------------ src/core/stdhelp/help.cpp | 2 +- src/core/stdhelp/resource.rc | 4 +-- src/modules/database/database.cpp | 6 ++-- src/modules/database/profilemanager.cpp | 6 ++-- src/modules/options/options.cpp | 2 +- src/modules/plugins/newplugins.cpp | 6 ++-- src/modules/skin/skinicons.cpp | 2 +- 8 files changed, 43 insertions(+), 49 deletions(-) diff --git a/docs/contributors.txt b/docs/contributors.txt index 70036e8dde..59805b7e4e 100644 --- a/docs/contributors.txt +++ b/docs/contributors.txt @@ -1,26 +1,25 @@ -Miranda IM is proudly brought to you by: +Miranda NG is proudly brought to you by: -Ricardo Domenecci -Gennady Feldman +Bartosz Białek +Vadim Dashevsky George Hazan -Tim Hunter -Kubilay Kocak -Boris Krasnovskiy -Josef Kucera -Aaron Landwehr -Lyon Lim -Tjado Maecke -Piotr Piastucki -Robert Rainwater -Alex Sanda -Artem Shpynov -Adam Strzelecki -Maxim Mluhov +Ekaterina Gritsenko +Alexey Koulakov +Michael Kunz +Dmitry Kuz'kin +Eugene Lishnevsky +Tobias M. +Vlad Mironov Victor Pavlychko -Bartosz Białek +Robert Pösel +Ivan Rozhuk +Artem Shpynov +Kirill Volinsky -Retired Members: +People used to develop Miranda IM Project: +Ricardo Domenecci +Gennady Feldman Martin Öberg Denis Stanishevskiy Richard Hughes @@ -34,20 +33,15 @@ Glutnix Santithorn Bunchua Sam K Jörgen Persson - -Our plugin developers, too multitudinous to name individually, but whos works are nontheless crucial to our success. -Special mention to Scott Ellis, a welcome part of arguably almost every Miranda IM installation :) - -Our translators, who have done great things to expand our reach, and who are infuriated that -I won't let them change this text. - -Our media developers, who bring us the icons, sounds and skins you love so much. -Special mention to Angeli-Ka, a0x, Faith Healer, Quadrone, and Valkyre for their work on the application icons. - -Our bug reporters and moderators, who strive thanklessly to bring quality into Miranda. -Special mention to Piotr Lukaszewski aka nowotny, not always smiling, but always doing his part. - -Our forum residents, who discover new and exciting ways to break Miranda daily and who are the gestalt - slash 'mob' that shapes how Miranda IM works and evolves. - -Our users, who...er...use it, and without who...well...we love that you love Miranda. +Tim Hunter +Kubilay Kocak +Boris Krasnovskiy +Josef Kucera +Aaron Landwehr +Lyon Lim +Tjado Maecke +Piotr Piastucki +Robert Rainwater +Alex Sanda +Adam Strzelecki +Maxim Mluhov \ No newline at end of file diff --git a/src/core/stdhelp/help.cpp b/src/core/stdhelp/help.cpp index 918ae51ad3..ea5a221696 100644 --- a/src/core/stdhelp/help.cpp +++ b/src/core/stdhelp/help.cpp @@ -103,7 +103,7 @@ int LoadHelpModule(void) mi.icolibItem = GetSkinIconHandle(SKINICON_OTHER_MIRANDAWEB); mi.position = 2000050000; - mi.pszName = LPGEN("&Miranda IM Homepage"); + mi.pszName = LPGEN("&Miranda NG Homepage"); mi.pszService = "Help/WebsiteCommand"; Menu_AddMainMenuItem(&mi); diff --git a/src/core/stdhelp/resource.rc b/src/core/stdhelp/resource.rc index eb5554a81c..1b822881d2 100644 --- a/src/core/stdhelp/resource.rc +++ b/src/core/stdhelp/resource.rc @@ -28,10 +28,10 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US IDD_ABOUT DIALOGEX 0, 0, 212, 131 STYLE DS_SETFONT | DS_MODALFRAME | DS_3DLOOK | DS_FIXEDSYS | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU EXSTYLE WS_EX_CONTROLPARENT -CAPTION "About Miranda IM" +CAPTION "About Miranda NG" FONT 8, "MS Shell Dlg", 0, 0, 0x1 BEGIN - CONTROL "Miranda IM\n%s",IDC_HEADERBAR,"MHeaderbarCtrl",WS_TABSTOP,0,0,212,25 + CONTROL "Miranda NG\n%s",IDC_HEADERBAR,"MHeaderbarCtrl",WS_TABSTOP,0,0,212,25 LTEXT "",IDC_WHITERECT,0,25,213,81 DEFPUSHBUTTON "OK",IDOK,152,112,55,14 CONTROL "",IDC_STATIC,"Static",SS_ETCHEDHORZ,0,106,213,1 diff --git a/src/modules/database/database.cpp b/src/modules/database/database.cpp index 13ce6bbfa9..65bb98fb6d 100644 --- a/src/modules/database/database.cpp +++ b/src/modules/database/database.cpp @@ -235,7 +235,7 @@ static void moveProfileDirProfiles(TCHAR *profiledir, BOOL isRootDir = TRUE) TCHAR buf[512]; mir_sntprintf(buf, SIZEOF(buf), TranslateTS(tszMoveMsg), path, path2); - MessageBox(NULL, buf, _T("Miranda IM"), MB_ICONERROR | MB_OK); + MessageBox(NULL, buf, _T("Miranda NG"), MB_ICONERROR | MB_OK); } else if (MoveFile(path, path2) == 0) { @@ -246,7 +246,7 @@ static void moveProfileDirProfiles(TCHAR *profiledir, BOOL isRootDir = TRUE) TCHAR buf[512]; mir_sntprintf(buf, SIZEOF(buf), TranslateTS(tszMoveMsg), path, path2); - MessageBox(NULL, buf, _T("Miranda IM"), MB_ICONERROR | MB_OK); + MessageBox(NULL, buf, _T("Miranda NG"), MB_ICONERROR | MB_OK); break; } mir_free(profile); @@ -333,7 +333,7 @@ static int getProfile(TCHAR *szProfile, size_t cch) MessageBox(NULL, _T("Profile cannot be placed into Miranda root folder.\n") _T("Please move Miranda profile to some other location."), - _T("Miranda IM"), MB_ICONERROR | MB_OK); + _T("Miranda NG"), MB_ICONERROR | MB_OK); return 0; } if (getProfileAutoRun(szProfile)) diff --git a/src/modules/database/profilemanager.cpp b/src/modules/database/profilemanager.cpp index 6ca3206574..4303aeddf9 100644 --- a/src/modules/database/profilemanager.cpp +++ b/src/modules/database/profilemanager.cpp @@ -78,7 +78,7 @@ static void ThemeDialogBackground(HWND hwnd) static int findProfiles(TCHAR *szProfileDir, ENUMPROFILECALLBACK callback, LPARAM lParam) { - // find in Miranda IM profile subfolders + // find in Miranda NG profile subfolders HANDLE hFind = INVALID_HANDLE_VALUE; WIN32_FIND_DATA ffd; TCHAR searchspec[MAX_PATH]; @@ -303,7 +303,7 @@ void DeleteProfile(HWND hwndList, int iItem, DlgProfData* dat) mir_sntprintf(profilef, SIZEOF(profilef), TranslateT("Are you sure you want to remove profile \"%s\"?"), profile); - if (IDYES != MessageBox(NULL, profilef, _T("Miranda IM"), MB_YESNO | MB_TASKMODAL | MB_ICONWARNING)) + if (IDYES != MessageBox(NULL, profilef, _T("Miranda NG"), MB_YESNO | MB_TASKMODAL | MB_ICONWARNING)) return; mir_sntprintf(profilef, SIZEOF(profilef), _T("%s\\%s%c"), dat->pd->szProfileDir, profile, 0); @@ -512,7 +512,7 @@ static INT_PTR CALLBACK DlgProfileManager(HWND hwndDlg, UINT msg, WPARAM wParam, { TCHAR buf[512]; mir_sntprintf(buf, SIZEOF(buf), _T("%s: %s\n%s"), TranslateT("Miranda Profiles from"), prof->pd->szProfileDir, - TranslateT("Select or create your Miranda IM user profile")); + TranslateT("Select or create your Miranda NG user profile")); SetDlgItemText(hwndDlg, IDC_NAME, buf); } diff --git a/src/modules/options/options.cpp b/src/modules/options/options.cpp index 8e63ed5d4e..e7f5304b33 100644 --- a/src/modules/options/options.cpp +++ b/src/modules/options/options.cpp @@ -1457,7 +1457,7 @@ static void OpenOptionsNow(const char *pszGroup, const char *pszPage, const char psh.dwFlags = PSH_PROPSHEETPAGE | PSH_NOAPPLYNOW; psh.nPages = opi.pageCount; psh.pStartPage = (LPCTSTR)&ood; //more structure misuse - psh.pszCaption = TranslateT("Miranda IM Options"); + psh.pszCaption = TranslateT("Miranda NG Options"); psh.ppsp = (PROPSHEETPAGE*)opi.odp; //blatent misuse of the structure, but what the hell hwndOptions = CreateDialogParam(hInst, diff --git a/src/modules/plugins/newplugins.cpp b/src/modules/plugins/newplugins.cpp index ce412e8d34..3a1b02e664 100644 --- a/src/modules/plugins/newplugins.cpp +++ b/src/modules/plugins/newplugins.cpp @@ -720,9 +720,9 @@ int LoadNewPluginsModule(void) if (clist == NULL) { // result = 0, no clist_* can be found if (pluginListUI) - MessageBox(NULL, TranslateT("Unable to start any of the installed contact list plugins, I even ignored your preferences for which contact list couldn't load any."), _T("Miranda IM"), MB_OK | MB_ICONINFORMATION); + MessageBox(NULL, TranslateT("Unable to start any of the installed contact list plugins, I even ignored your preferences for which contact list couldn't load any."), _T("Miranda NG"), MB_OK | MB_ICONINFORMATION); else - MessageBox(NULL, TranslateT("Can't find a contact list plugin! you need clist_classic or any other clist plugin.") , _T("Miranda IM"), MB_OK | MB_ICONINFORMATION); + MessageBox(NULL, TranslateT("Can't find a contact list plugin! you need clist_classic or any other clist plugin.") , _T("Miranda NG"), MB_OK | MB_ICONINFORMATION); return 1; } @@ -745,7 +745,7 @@ int LoadNewPluginsModule(void) } if ( !msgModule) - MessageBox(NULL, TranslateT("No messaging plugins loaded. Please install/enable one of the messaging plugins, for instance, \"srmm.dll\""), _T("Miranda IM"), MB_OK | MB_ICONINFORMATION); + MessageBox(NULL, TranslateT("No messaging plugins loaded. Please install/enable one of the messaging plugins, for instance, \"srmm.dll\""), _T("Miranda NG"), MB_OK | MB_ICONINFORMATION); HookEvent(ME_OPT_INITIALISE, PluginOptionsInit); return 0; diff --git a/src/modules/skin/skinicons.cpp b/src/modules/skin/skinicons.cpp index 796b2033f4..983500b358 100644 --- a/src/modules/skin/skinicons.cpp +++ b/src/modules/skin/skinicons.cpp @@ -34,7 +34,7 @@ struct StandardIconDescription static const struct StandardIconDescription mainIcons[] = { - { SKINICON_OTHER_MIRANDA, LPGEN("Miranda IM"), -IDI_MIRANDA }, + { SKINICON_OTHER_MIRANDA, LPGEN("Miranda NG"), -IDI_MIRANDA }, { SKINICON_EVENT_MESSAGE, LPGEN("Message"), -IDI_RECVMSG }, { SKINICON_EVENT_URL, LPGEN("URL"), -IDI_URL }, { SKINICON_EVENT_FILE, LPGEN("File"), -IDI_FILE }, -- cgit v1.2.3