diff options
author | Dart Raiden <wowemuh@gmail.com> | 2015-11-24 01:05:26 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2015-11-24 01:05:26 +0000 |
commit | a481538396b68d5d6b9bd6db2d7c4f208d8cf40b (patch) | |
tree | 51cd6618994543ff280f0da81c625addc8261656 /plugins | |
parent | 293ec162c9ae59b2bb560c6a419f3e1b9e9c9f09 (diff) |
proper capitalization of plugin names (taken from our wiki)
git-svn-id: http://svn.miranda-ng.org/main/trunk@15768 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Clist_nicer/res/resource.rc | 6 | ||||
-rw-r--r-- | plugins/Cln_skinedit/src/Version.h | 4 | ||||
-rw-r--r-- | plugins/TabSRMM/src/msgs.cpp | 2 | ||||
-rw-r--r-- | plugins/TopToolBar/src/toolbar.cpp | 2 |
4 files changed, 7 insertions, 7 deletions
diff --git a/plugins/Clist_nicer/res/resource.rc b/plugins/Clist_nicer/res/resource.rc index 831202dbb7..4893a2e8d3 100644 --- a/plugins/Clist_nicer/res/resource.rc +++ b/plugins/Clist_nicer/res/resource.rc @@ -27,7 +27,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL IDD_EXCEPTION DIALOGEX 0, 0, 370, 131
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "Clist Nicer exception"
+CAPTION "Clist nicer exception"
FONT 8, "MS Shell Dlg", 0, 0, 0x0
BEGIN
EDITTEXT IDC_EXCEPTION_DETAILS,7,18,356,60,ES_MULTILINE | ES_READONLY
@@ -41,12 +41,12 @@ END IDD_CLNABOUT DIALOGEX 0, 0, 228, 140
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 CList Nicer+"
+CAPTION "About CList nicer"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
LTEXT "",IDC_WHITERECT,0,0,228,116
DEFPUSHBUTTON "OK",IDOK,168,123,55,14
- LTEXT "Clist Nicer+",IDC_CLNICER,5,7,150,15
+ LTEXT "Clist nicer",IDC_CLNICER,5,7,150,15
CTEXT "Copyright © 2004-2010 by the Miranda IM project, 2012-2015 by the Miranda NG project. More detailed copyright information can be found in the included README file.",IDC_COPYRIGHT,5,39,217,47
ICON 0,IDC_LOGO,201,2,20,20
LTEXT "Version",IDC_VERSION,5,19,150,15
diff --git a/plugins/Cln_skinedit/src/Version.h b/plugins/Cln_skinedit/src/Version.h index d714ee7592..eaa36dd5ad 100644 --- a/plugins/Cln_skinedit/src/Version.h +++ b/plugins/Cln_skinedit/src/Version.h @@ -5,9 +5,9 @@ #include <stdver.h>
-#define __PLUGIN_NAME "Skin editor for clist nicer"
+#define __PLUGIN_NAME "Skin editor for Clist nicer"
#define __FILENAME "Cln_skinedit.dll"
-#define __DESCRIPTION "Allows inline skin item editing for clist nicer."
+#define __DESCRIPTION "Allows inline skin item editing for Clist nicer."
#define __AUTHOR "Nightwish, Pixel"
#define __AUTHOREMAIL ""
#define __AUTHORWEB "http://miranda-ng.org/p/Cln_skinedit/"
diff --git a/plugins/TabSRMM/src/msgs.cpp b/plugins/TabSRMM/src/msgs.cpp index 4f22af20e5..9ccd847b66 100644 --- a/plugins/TabSRMM/src/msgs.cpp +++ b/plugins/TabSRMM/src/msgs.cpp @@ -943,7 +943,7 @@ static void TSAPI InitAPI() int LoadSendRecvMessageModule(void)
{
if (FIF == 0) {
- MessageBox(0, TranslateT("The image service plugin (advaimg.dll) is not properly installed.\n\nTabSRMM is disabled."), TranslateT("TabSRMM fatal error"), MB_OK | MB_ICONERROR);
+ MessageBox(0, TranslateT("The image service plugin (AdvaImg) is not properly installed.\n\nTabSRMM is disabled."), TranslateT("TabSRMM fatal error"), MB_OK | MB_ICONERROR);
return 1;
}
diff --git a/plugins/TopToolBar/src/toolbar.cpp b/plugins/TopToolBar/src/toolbar.cpp index f6368d6e58..c4efd68b71 100644 --- a/plugins/TopToolBar/src/toolbar.cpp +++ b/plugins/TopToolBar/src/toolbar.cpp @@ -622,7 +622,7 @@ int LoadToolbarModule() {
if (!ServiceExists(MS_CLIST_FRAMES_ADDFRAME)) {
if (!db_get_b(NULL, TTB_OPTDIR, "WarningDone", 0))
- MessageBox(0, TranslateT("Frames service has not been found, so plugin will be disabled.\nTo run it you need to install and / or enable contact list plugin that supports it:\n- Modern contact list\n- Nicer+\nYou can get them at http://wiki.miranda-ng.org/Download"), TranslateT("TopToolBar"), 0);
+ MessageBox(0, TranslateT("Frames service has not been found, so plugin will be disabled.\nTo run it you need to install and / or enable contact list plugin that supports it:\n- Modern contact list\n- Clist nicer\nYou can get them at http://wiki.miranda-ng.org/Download"), TranslateT("TopToolBar"), 0);
db_set_b(NULL, TTB_OPTDIR, "WarningDone", 1);
return 1;
}
|