diff options
Diffstat (limited to 'protocols/Skype/src')
-rw-r--r-- | protocols/Skype/src/skype_account.cpp | 2 | ||||
-rw-r--r-- | protocols/Skype/src/skype_instances.cpp | 2 | ||||
-rw-r--r-- | protocols/Skype/src/skype_utils.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_account.cpp b/protocols/Skype/src/skype_account.cpp index 47ad1b71d2..8834318596 100644 --- a/protocols/Skype/src/skype_account.cpp +++ b/protocols/Skype/src/skype_account.cpp @@ -10,7 +10,7 @@ wchar_t *CSkypeProto::LogoutReasons[] = LPGENW("SERVER_CONNECT_FAILED") /* SERVER_CONNECT_FAILED */,
LPGENW("Server is overloaded") /* SERVER_OVERLOADED */,
LPGENW("SkypeKit database already in use") /* DB_IN_USE */,
- LPGENW("Invalid skypename") /* INVALID_SKYPENAME */,
+ LPGENW("Invalid Skype name") /* INVALID_SKYPENAME */,
LPGENW("Invalid email") /* INVALID_EMAIL */,
LPGENW("Unacceptable password") /* UNACCEPTABLE_PASSWORD */,
LPGENW("Skype name is taken") /* SKYPENAME_TAKEN */,
diff --git a/protocols/Skype/src/skype_instances.cpp b/protocols/Skype/src/skype_instances.cpp index 8a4c2b6f99..0d28bcb6e9 100644 --- a/protocols/Skype/src/skype_instances.cpp +++ b/protocols/Skype/src/skype_instances.cpp @@ -12,7 +12,7 @@ CSkypeProto* CSkypeProto::InitSkypeProto(const char* protoName, const wchar_t* u if (CSkypeProto::instanceList.getCount() > 0)
{
CSkypeProto::ShowNotification(
- ::TranslateT("SkypeKit will only permit you to login to one account at a time.\nAdding multiple instances of SkypeKit is prohibited in the licence agreement and standard distribution terms."),
+ ::TranslateT("Skype protocol plugin only permit you to login to one account at a time. Adding multiple accounts is prohibited in the licence agreement and standard distribution terms of SkypeKit."),
MB_ICONERROR);
return NULL;
}
diff --git a/protocols/Skype/src/skype_utils.cpp b/protocols/Skype/src/skype_utils.cpp index dc7c5b4abd..8828504333 100644 --- a/protocols/Skype/src/skype_utils.cpp +++ b/protocols/Skype/src/skype_utils.cpp @@ -8,7 +8,7 @@ wchar_t *CSkypeProto::ValidationReasons[] = LPGENW("The value exceeds max size limit for the given property") /* TOO_LONG */,
LPGENW("Value contains illegal characters") /* CONTAINS_INVALID_CHAR */,
LPGENW("Value contains whitespace") /* CONTAINS_SPACE */,
- LPGENW("Password cannot be the same as skypename") /* SAME_AS_USERNAME */,
+ LPGENW("Password cannot be the same as Skype name") /* SAME_AS_USERNAME */,
LPGENW("Value has invalid format") /* INVALID_FORMAT */,
LPGENW("Value contains invalid word") /* CONTAINS_INVALID_WORD */,
LPGENW("Password is too simple") /* TOO_SIMPLE */,
|