summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2013-10-23 12:23:39 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2013-10-23 12:23:39 +0000
commit621ff1dc2cf264676f0ff6dd34008f01230ade2f (patch)
tree8c304c89624fb3c5af833b449185e1f8733500d7
parentb17aba0c3ef3d5b35d702133bb055beecbc5016f (diff)
double string from YAMN fixed (for real this time)
git-svn-id: http://svn.miranda-ng.org/main/trunk@6600 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--langpacks/english/Plugins/YAMN.txt1
-rw-r--r--plugins/YAMN/src/proto/pop3/pop3comm.cpp2
2 files changed, 1 insertions, 2 deletions
diff --git a/langpacks/english/Plugins/YAMN.txt b/langpacks/english/Plugins/YAMN.txt
index 44f6c49b7a..8b556ed050 100644
--- a/langpacks/english/Plugins/YAMN.txt
+++ b/langpacks/english/Plugins/YAMN.txt
@@ -132,7 +132,6 @@
;file \plugins\YAMN\src\proto\pop3\pop3comm.cpp
[Disconnected]
[POP3 protocol (internal)]
-[Mail notifier and browser for Miranda NG. Included POP3 protocol.]
[Found new version of account book, not compatible with this version of YAMN.]
[YAMN (internal POP3) read error]
[Error reading account file. Account file corrupted.]
diff --git a/plugins/YAMN/src/proto/pop3/pop3comm.cpp b/plugins/YAMN/src/proto/pop3/pop3comm.cpp
index 4f48c760b3..f20534aa75 100644
--- a/plugins/YAMN/src/proto/pop3/pop3comm.cpp
+++ b/plugins/YAMN/src/proto/pop3/pop3comm.cpp
@@ -227,7 +227,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 NG. Included POP3 protocol.");
+ POP3ProtocolRegistration.Description = Translate(__DESCRIPTION);
if (NULL==(POP3Plugin=(HYAMNPROTOPLUGIN)CallService(MS_YAMN_REGISTERPROTOPLUGIN,(WPARAM)&POP3ProtocolRegistration,(LPARAM)YAMN_PROTOREGISTRATIONVERSION)))
return 0;