diff options
| -rwxr-xr-x | plugins/Msg_Export/src/FileViewer.cpp | 6 | ||||
| -rw-r--r-- | plugins/SecureIM/src/language.cpp | 24 | ||||
| -rw-r--r-- | protocols/IcqOscarJ/src/icq_uploadui.cpp | 2 | 
3 files changed, 16 insertions, 16 deletions
| diff --git a/plugins/Msg_Export/src/FileViewer.cpp b/plugins/Msg_Export/src/FileViewer.cpp index ac6580d9b6..c993b3299e 100755 --- a/plugins/Msg_Export/src/FileViewer.cpp +++ b/plugins/Msg_Export/src/FileViewer.cpp @@ -240,7 +240,7 @@ int CLStreamRTFInfo::nLoadFileStream(LPBYTE pbBuff, LONG cb)  	if (nOptimalReadLen < 500 )
  	{
 -		MessageBox(NULL, TranslateT("Error: Optimal buffer size decrecied to a to low size !!"), MSG_BOX_TITEL, MB_OK);
 +		MessageBox(NULL, TranslateT("Error: Optimal buffer size decrecied to a to low size!"), MSG_BOX_TITEL, MB_OK);
  		return 0;
  	}
 @@ -330,7 +330,7 @@ int CLStreamRTFInfo::nLoadFileStream(LPBYTE pbBuff, LONG cb)  					LONG lExtraRead = (n+1) - dwRead;
  					if (lExtraRead >= 0 )
 -						MessageBox(NULL, TranslateT("Internal error !! (lExtraRead >= 0)"), MSG_BOX_TITEL, MB_OK);
 +						MessageBox(NULL, TranslateT("Internal error! (lExtraRead >= 0)"), MSG_BOX_TITEL, MB_OK);
  					SetFilePointer( hFile, lExtraRead, NULL, FILE_CURRENT);
  					bCheckFirstForNick = true;
  					return dwCurrent;
 @@ -865,7 +865,7 @@ LRESULT CALLBACK EditSubclassProc( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lP  				ft.chrg.cpMin = 0;
  				res = (int)SendMessage(hwnd, EM_FINDTEXTW, (WPARAM)fr->Flags,(LPARAM)&ft);
  				if(res == -1) {
 -					MessageBox(hwnd, TranslateT("Search string was not found !"), MSG_BOX_TITEL, MB_OK);
 +					MessageBox(hwnd, TranslateT("Search string was not found!"), MSG_BOX_TITEL, MB_OK);
  					return 0;
  				}
  			}
 diff --git a/plugins/SecureIM/src/language.cpp b/plugins/SecureIM/src/language.cpp index 984489134c..7c6936396b 100644 --- a/plugins/SecureIM/src/language.cpp +++ b/plugins/SecureIM/src/language.cpp @@ -7,25 +7,25 @@ LPCSTR sim003 = LPGEN("Key from disabled...");  LPCSTR sim004 = LPGEN("Sent back message received...");
  LPCSTR sim005 = LPGEN("Sending back secure message...");
  LPCSTR sim006 = LPGEN("SecureIM disabled...");
 -LPCSTR sim007 = LPGEN("Sending Key...");
 -LPCSTR sim008 = LPGEN("Key Received...");
 -LPCSTR sim009 = LPGEN("Sending Message...");
 -LPCSTR sim010 = LPGEN("Message Received...");
 -LPCSTR sim011 = LPGEN("Encrypting File:");
 -LPCSTR sim012 = LPGEN("Decrypting File:");
 +LPCSTR sim007 = LPGEN("Sending key...");
 +LPCSTR sim008 = LPGEN("Key received...");
 +LPCSTR sim009 = LPGEN("Sending message...");
 +LPCSTR sim010 = LPGEN("Message received...");
 +LPCSTR sim011 = LPGEN("Encrypting file:");
 +LPCSTR sim012 = LPGEN("Decrypting file:");
  LPCSTR sim013 = LPGEN("Bad key received...");
  //Error Messages
  LPCSTR sim101 = LPGEN("SecureIM: Error while decrypting the message.");
  LPCSTR sim102 = LPGEN("SecureIM: Error while decrypting the message, bad message length.");
  LPCSTR sim103 = LPGEN("SecureIM: Error while decrypting the message, bad message CRC.");
 -LPCSTR sim104 = LPGEN("User has not answered to key exchange !\nYour messages are still in SecureIM queue, do you want to send them Unencrypted now?");
 -LPCSTR sim105 = LPGEN("SecureIM not enabled! You Must Enable SecureIM with this user...");
 -LPCSTR sim106 = LPGEN("Can't Send Encrypted Message !\nUser is offline now and his secure key has been expired, Do you want to send your message ?\nIt will be unencrypted !");
 -LPCSTR sim107 = LPGEN("SecureIM won't be loaded because cryptopp.dll is missing or wrong version !");
 +LPCSTR sim104 = LPGEN("User has not answered to key exchange!\nYour messages are still in SecureIM queue, do you want to send them unencrypted now?");
 +LPCSTR sim105 = LPGEN("SecureIM not enabled! You must enable SecureIM with this user...");
 +LPCSTR sim106 = LPGEN("Can't send encrypted message!\nUser is offline now and his secure key has been expired. Do you want to send your message?\nIt will be unencrypted!");
 +LPCSTR sim107 = LPGEN("SecureIM won't be loaded because cryptopp.dll is missing or wrong version!");
  LPCSTR sim108 = LPGEN("SecureIM can't load PGP/GPG key! Check PGP/GPG settings!");
  LPCSTR sim109 = LPGEN("SecureIM can't encrypt message! Check trust of PGP/GPG key!");
 -LPCSTR sim110 = LPGEN("Can't Send Encrypted Message !\nDo you want to send your message ?\nIt will be unencrypted !");
 +LPCSTR sim110 = LPGEN("Can't send encrypted message!\nDo you want to send your message ?\nIt will be unencrypted!");
  LPCSTR sim111 = LPGEN("Can't change mode! Secure connection established!");
  LPCSTR sim112 = LPGEN("Can't export RSA private key!");
  LPCSTR sim113 = LPGEN("Can't import RSA private key!");
 @@ -53,7 +53,7 @@ LPCSTR sim220 = LPGEN("This version not supported!");  LPCSTR sim221 = LPGEN("(none)");
  LPCSTR sim222 = LPGEN("Private key loaded.");
  LPCSTR sim223 = LPGEN("Private key not loaded!");
 -LPCSTR sim224 = LPGEN("The new settings will become valid when you restart MirandaNG!");
 +LPCSTR sim224 = LPGEN("The new settings will become valid when you restart Miranda NG!");
  LPCSTR sim225 = LPGEN("Keyrings disabled!");
  LPCSTR sim226 = "GPG";
  LPCSTR sim227 = "CP";
 diff --git a/protocols/IcqOscarJ/src/icq_uploadui.cpp b/protocols/IcqOscarJ/src/icq_uploadui.cpp index ba8cbc30ff..570a1e0b5e 100644 --- a/protocols/IcqOscarJ/src/icq_uploadui.cpp +++ b/protocols/IcqOscarJ/src/icq_uploadui.cpp @@ -876,7 +876,7 @@ static INT_PTR CALLBACK DlgProcUploadList(HWND hwndDlg,UINT message,WPARAM wPara  			if (!ppro->icqOnline())
  			{
  				char str[MAX_PATH];
 -				AppendToUploadLog(hwndDlg, ICQTranslateUtfStatic(LPGEN("You have to be online to sychronize the server-list !"), str, MAX_PATH));
 +				AppendToUploadLog(hwndDlg, ICQTranslateUtfStatic(LPGEN("You have to be online to sychronize the server-list!"), str, MAX_PATH));
  				break;
  			}
  			working = 1;
 | 
