diff options
-rw-r--r-- | protocols/Skype/res/Resource.rc | 2 | ||||
-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 |
4 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Skype/res/Resource.rc b/protocols/Skype/res/Resource.rc index c2fabb0b19..08f6921a9c 100644 --- a/protocols/Skype/res/Resource.rc +++ b/protocols/Skype/res/Resource.rc @@ -95,7 +95,7 @@ STYLE DS_SETFONT | DS_MODALFRAME | DS_SETFOREGROUND | DS_FIXEDSYS | DS_CENTER | CAPTION "Enter password"
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- LTEXT "Enter a password",IDC_INSTRUCTION,7,7,142,8
+ LTEXT "Enter password",IDC_INSTRUCTION,7,7,142,8
EDITTEXT IDC_PASSWORD,17,16,122,14,ES_PASSWORD | ES_AUTOHSCROLL
CONTROL "Remember this session password",IDC_SAVEPASSWORD,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,18,32,120,10
DEFPUSHBUTTON "OK",IDOK,46,50,50,14
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 */,
|