diff options
Diffstat (limited to 'protocols/YAMN')
-rw-r--r-- | protocols/YAMN/main.cpp | 2 | ||||
-rw-r--r-- | protocols/YAMN/proto/pop3/pop3comm.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/protocols/YAMN/main.cpp b/protocols/YAMN/main.cpp index da9e0a1f53..e7e74ee7b4 100644 --- a/protocols/YAMN/main.cpp +++ b/protocols/YAMN/main.cpp @@ -42,7 +42,7 @@ PLUGININFOEX pluginInfo = { sizeof(PLUGININFOEX),
YAMN_SHORTNAME,
YAMN_VERSION,
- "Mail notifier and browser for Miranda IM. Included POP3 protocol.",
+ "Mail notifier and browser for Miranda NG. Included POP3 protocol.",
"y_b tweety (majvan)",
"francois.mean@skynet.be",
"© (2002-2004 majvan) 2005-2007 tweety y_b Miranda community",
diff --git a/protocols/YAMN/proto/pop3/pop3comm.cpp b/protocols/YAMN/proto/pop3/pop3comm.cpp index 1fbc6b4164..4fbfb86a7f 100644 --- a/protocols/YAMN/proto/pop3/pop3comm.cpp +++ b/protocols/YAMN/proto/pop3/pop3comm.cpp @@ -130,7 +130,7 @@ YAMN_PROTOREGISTRATION POP3ProtocolRegistration = "POP3 protocol (internal)",
YAMN_VERSION_C,
"© 2002-2004 majvan | 2005-2007 tweety, yb",
- "Mail notifier and browser for Miranda IM. Included POP3 protocol.",
+ "Mail notifier and browser for Miranda NG. Included POP3 protocol.",
"francois.mean@skynet.be",
"http://miranda-ng.org/",
};
@@ -232,7 +232,7 @@ int RegisterPOP3Plugin(WPARAM,LPARAM) //First, we register this plugin
//it is quite impossible this function returns zero (failure) as YAMN and internal plugin structre versions are the same
POP3ProtocolRegistration.Name = Translate("POP3 protocol (internal)");
- POP3ProtocolRegistration.Description = Translate("Mail notifier and browser for Miranda IM. Included POP3 protocol.");
+ POP3ProtocolRegistration.Description = Translate("Mail notifier and browser for Miranda NG. Included POP3 protocol.");
if (NULL==(POP3Plugin=(HYAMNPROTOPLUGIN)CallService(MS_YAMN_REGISTERPROTOPLUGIN,(WPARAM)&POP3ProtocolRegistration,(LPARAM)YAMN_PROTOREGISTRATIONVERSION)))
return 0;
|