diff options
author | Dart Raiden <wowemuh@gmail.com> | 2013-10-29 13:28:11 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2013-10-29 13:28:11 +0000 |
commit | 509d7ddf40af1e66dfe033e5fedfa29f0444d4a2 (patch) | |
tree | 963c4d762e0e090d6015ced8d15526a43e0d7588 /protocols/SkypeClassic | |
parent | f650656376d1ee647069b9bc1a73c8fe35ebd282 (diff) |
SkypeClassic: spelling correction
git-svn-id: http://svn.miranda-ng.org/main/trunk@6679 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeClassic')
-rw-r--r-- | protocols/SkypeClassic/res/Resource.rc | 14 | ||||
-rw-r--r-- | protocols/SkypeClassic/src/skype.cpp | 6 |
2 files changed, 10 insertions, 10 deletions
diff --git a/protocols/SkypeClassic/res/Resource.rc b/protocols/SkypeClassic/res/Resource.rc index 188ed1cbc3..51eb9c7cf7 100644 --- a/protocols/SkypeClassic/res/Resource.rc +++ b/protocols/SkypeClassic/res/Resource.rc @@ -42,7 +42,7 @@ STYLE DS_FIXEDSYS | DS_CONTROL | WS_CHILD | WS_VISIBLE EXSTYLE WS_EX_CONTROLPARENT
FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
- CONTROL "Start Skype with Miranda IM if not running using the following command line options:",
+ CONTROL "Start Skype with Miranda NG if not running using the following command line options:",
IDC_STARTSKYPE,"Button",BS_AUTOCHECKBOX | WS_GROUP |
WS_TABSTOP,10,4,290,10
CONTROL "/NOSPLASH - Don't show splash screen on startup",
@@ -50,10 +50,10 @@ BEGIN 264,12
CONTROL "/MINIMIZED - Start Skype minimized",IDC_MINIMIZED,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,36,28,264,12
- CONTROL "/NOTRAY - Skype tray icon becomes grey and is therefore ""invisible""",
+ CONTROL "/NOTRAY - Skype tray icon becomes gray and is therefore ""invisible""",
IDC_NOTRAY,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,36,40,
264,12
- CONTROL "/REMOVEABLE - For running portable skype",
+ CONTROL "/REMOVEABLE - For running portable Skype",
IDC_REMOVEABLE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,36,
51,264,12
CONTROL "/SECONDARY - This is the second instance",IDC_SECONDARY,
@@ -66,9 +66,9 @@ BEGIN BS_AUTOCHECKBOX | WS_TABSTOP,36,103,264,10
EDITTEXT IDC_COMMANDLINE,47,116,236,12,ES_AUTOHSCROLL
PUSHBUTTON "...",IDC_BROWSECMDL,285,115,16,15
- CTEXT "* Relative path root is Miranda IM folder",
+ CTEXT "* Relative path root is Miranda NG folder",
IDC_STATIC_PATHINFO,10,136,290,8,NOT WS_GROUP
- CONTROL "Shutdown Skype when you close Miranda IM",IDC_SHUTDOWN,
+ CONTROL "Shutdown Skype when you close Miranda NG",IDC_SHUTDOWN,
"Button",BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP,10,151,
290,10
CONTROL "Unload Skype when you change to Offline status",
@@ -141,7 +141,7 @@ BEGIN EDITTEXT IDC_HOST,41,19,133,12,ES_AUTOHSCROLL
LTEXT "Port:",IDC_STATIC_PORT,180,21,16,10,0,WS_EX_RIGHT
EDITTEXT IDC_PORT,200,19,29,12,ES_AUTOHSCROLL | ES_NUMBER
- CTEXT "* You must restart Miranda IM in order to let the settings take effect",
+ CTEXT "* You must restart Miranda NG in order to let the settings take effect",
IDC_STATIC_RESTART,10,54,290,8,NOT WS_GROUP
CONTROL "This Skype proxy requires password authentication:",
IDC_REQPASS,"Button",BS_AUTOCHECKBOX | WS_GROUP |
@@ -204,7 +204,7 @@ BEGIN BS_AUTOCHECKBOX | WS_TABSTOP,10,94,290,9
CONTROL "Ignore time zones",IDC_IGNTZ,"Button",BS_AUTOCHECKBOX |
WS_TABSTOP,10,109,290,9
- CONTROL "Show default skype avatar for contacts",
+ CONTROL "Show default Skype avatar for contacts",
IDC_SHOWDEFAULTAVATAR,"Button",BS_AUTOCHECKBOX |
WS_TABSTOP,10,124,290,9
CONTROL "Suppress call summary chat message",
diff --git a/protocols/SkypeClassic/src/skype.cpp b/protocols/SkypeClassic/src/skype.cpp index 4c66594dd1..26bafd6ad3 100644 --- a/protocols/SkypeClassic/src/skype.cpp +++ b/protocols/SkypeClassic/src/skype.cpp @@ -1570,7 +1570,7 @@ void RingThread(char *szSkypeMsg) { dbei.eventType=EVENTTYPE_CALL;
dbei.szModule=SKYPE_PROTONAME;
dbei.timestamp=(DWORD)SkypeTime(NULL);
- dbei.pBlob=(unsigned char*)Translate("Phonecall");
+ dbei.pBlob=(unsigned char*)Translate("Phone call");
dbei.cbBlob=strlen((const char*)dbei.pBlob)+1;
if (!strncmp(ptr, "INCOMING", 8))
{
@@ -3238,7 +3238,7 @@ extern "C" int __declspec(dllexport) Load(void) if (!db_get_b(NULL, SKYPE_PROTONAME, "FirstRun", 0)) {
db_set_b(NULL, SKYPE_PROTONAME, "FirstRun", 1);
if (AnySkypeusers()==0) // First run, it seems :)
- if (MessageBox(NULL, TranslateT("This seems to be the first time that you're running the Skype protocol plugin. Do you want to enable the protocol for this Miranda-Profile? (If you chose NO, you can always enable it in the plugin options later."), _T("Welcome!"), MB_ICONQUESTION|MB_YESNO)==IDNO) {
+ if (MessageBox(NULL, TranslateT("This seems to be the first time that you're running the Skype protocol plugin. Do you want to enable the protocol for this Miranda profile? (If you chose NO, you can always enable it in the plugin options later."), _T("Welcome!"), MB_ICONQUESTION|MB_YESNO)==IDNO) {
char path[MAX_PATH], *filename;
GetModuleFileNameA(hInst, path, sizeof(path));
if (filename = strrchr(path,'\\')+1)
@@ -3267,7 +3267,7 @@ extern "C" int __declspec(dllexport) Load(void) if (SkypeInstalled==FALSE || RegQueryValueExA(MyKey, "SkypePath", NULL, NULL, (unsigned char *)skype_path, &Buffsize)!=ERROR_SUCCESS)
{
- //OUTPUT("Skype was not found installed :( \nMaybe you are using portable skype.");
+ //OUTPUT("Skype was not found installed :( \nMaybe you are using portable Skype.");
RegCloseKey(MyKey);
skype_path[0]=0;
//return 0;
|