mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-09-20 02:09:25 +03:00
Correct Spelling (#458)
* spelling: accepts * spelling: account * spelling: accept * spelling: accumulate * spelling: adapter * spelling: address * spelling: additional * spelling: aggressive * spelling: adhered * spelling: allowed * spelling: ambiguous * spelling: amount * spelling: anonymous * spelling: acquisition * spelling: assemble * spelling: associated * spelling: assigns * spelling: attach * spelling: attempt * spelling: attribute * spelling: authenticate * spelling: authentication * spelling: available * spelling: bridging * spelling: cascade * spelling: cancel * spelling: check * spelling: challenge * spelling: changing * spelling: characters * spelling: cloud * spelling: compare * spelling: communication * spelling: compatible * spelling: compatibility * spelling: completion * spelling: complete * spelling: computers * spelling: configure * spelling: configuration * spelling: conformant * spelling: connection * spelling: contains * spelling: continuously * spelling: continue * spelling: convert * spelling: counters * spelling: create * spelling: created * spelling: cumulate * spelling: currently * spelling: debugging * spelling: decryption * spelling: description * spelling: default * spelling: driver * spelling: delete * spelling: destination * spelling: disabled * spelling: different * spelling: dynamically * spelling: directory * spelling: disappeared * spelling: disable * spelling: doesn't * spelling: download * spelling: dropped * spelling: enable * spelling: established * spelling: ether * spelling: except * spelling: expired * spelling: field * spelling: following * spelling: forever * spelling: firewall * spelling: first * spelling: fragment * spelling: function * spelling: gateway * spelling: identifier * spelling: identify * spelling: incoming * spelling: information * spelling: initialize * spelling: injection * spelling: inner * spelling: instead * spelling: installation * spelling: inserted * spelling: integer * spelling: interrupt * spelling: intuitive * spelling: interval * spelling: january * spelling: keybytes * spelling: know * spelling: language * spelling: length * spelling: library * spelling: listener * spelling: maintain * spelling: modified * spelling: necessary * spelling: number * spelling: obsoleted * spelling: occurred * spelling: occurring * spelling: occur * spelling: original * spelling: omittable * spelling: omit * spelling: opening * spelling: operation * spelling: packet * spelling: parameters * spelling: pointed * spelling: popupmenuopen * spelling: privilege * spelling: product * spelling: protection * spelling: promiscuous * spelling: prompt * spelling: query * spelling: random * spelling: reconnection * spelling: revocation * spelling: received * spelling: red hat * spelling: registry * spelling: release * spelling: retrieve
This commit is contained in:
committed by
Moataz Elmasry
parent
03443ab1c4
commit
ac865f04fc
@ -144,7 +144,7 @@ BEGIN
|
||||
IDS_STRING11004 "Failed to download file %S.\r\nInstallation of VPN software aborted."
|
||||
IDS_STRING11005 "Invalid file %S. \r\nInstallation of VPN software aborted."
|
||||
IDS_STRING11006 "Failed to create temporary file %s."
|
||||
IDS_STRING11007 "Getting data and installing VPN software...\r\nPlease wait.\r\n\r\nAny of your private infomation is not sent to the Internet."
|
||||
IDS_STRING11007 "Getting data and installing VPN software...\r\nPlease wait.\r\n\r\nAny of your private information is not sent to the Internet."
|
||||
END
|
||||
|
||||
STRINGTABLE
|
||||
@ -152,7 +152,7 @@ BEGIN
|
||||
IDS_STRING11008 "Failed to start process %S. Installation of VPN software aborted."
|
||||
IDS_STRING11009 "Starting installation of VPN Software."
|
||||
IDS_STRING11010 "Installation process finished. Connection process are started correctly.\r\n\r\nYou can now close your browser or move the other pages."
|
||||
IDS_STRING11011 "The automatically downloaded file %S from the Internet is not digitally signed with a trusted certificate.\r\nThe developer and publisher do not guarantee that the downloaded file %S is safe and do not take responsibility in case of unsafe code included in the file.\r\n\r\nWe recommend to abort the installation by clicking [Cancel]. Proceed the installation by clicking [OK] at your own risk.\r\n\r\nNotice: the message will not be disappered when the file %S is signed by valid code signing certificate authentication."
|
||||
IDS_STRING11011 "The automatically downloaded file %S from the Internet is not digitally signed with a trusted certificate.\r\nThe developer and publisher do not guarantee that the downloaded file %S is safe and do not take responsibility in case of unsafe code included in the file.\r\n\r\nWe recommend to abort the installation by clicking [Cancel]. Proceed the installation by clicking [OK] at your own risk.\r\n\r\nNotice: the message will not be disappeared when the file %S is signed by valid code signing certificate authentication."
|
||||
IDS_STRING11012 "Security Alert"
|
||||
IDS_STRING11013 "Installation cancelled by user."
|
||||
IDS_STRING11014 "Press [Manage Virtual HUB] button to manage Virtual HUB with VPN Server Manager started."
|
||||
|
@ -556,7 +556,7 @@ DOWNLOAD_FAILED:
|
||||
}
|
||||
else
|
||||
{
|
||||
VwPrint(hWnd, msgUserCancal);
|
||||
VwPrint(hWnd, msgUserCancel);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -769,7 +769,7 @@ INT_PTR CALLBACK VpnWebDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam
|
||||
Hide(hWnd, B_START);
|
||||
Hide(hWnd, S_INFO2);
|
||||
Show(hWnd, S_INFO);
|
||||
VwPrint(hWnd, msgInfDownloag);
|
||||
VwPrint(hWnd, msgInfDownload);
|
||||
task.Thread = VwNewThread(VwTaskThread, NULL);
|
||||
break;
|
||||
|
||||
|
@ -126,7 +126,7 @@ extern HINSTANCE hDllInstance;
|
||||
|
||||
static wchar_t *msgAppTitle = NULL;
|
||||
static char *msgNotSupported = NULL;
|
||||
static wchar_t *msgInfDownloag = NULL;
|
||||
static wchar_t *msgInfDownload = NULL;
|
||||
static wchar_t *msgInfDownloadFailed = NULL;
|
||||
static wchar_t *msgBadInfFile = NULL;
|
||||
static wchar_t *msgWriteFailed = NULL;
|
||||
@ -136,7 +136,7 @@ static wchar_t *msgProcessCreating =NULL;
|
||||
static wchar_t *msgProcessCreated = NULL;
|
||||
static wchar_t *msgWarning = NULL;
|
||||
static wchar_t *msgWarningTitle = NULL;
|
||||
static wchar_t *msgUserCancal = NULL;
|
||||
static wchar_t *msgUserCancel = NULL;
|
||||
static wchar_t *msgStartTextForVpnServer = NULL;
|
||||
static wchar_t *msgButtonForVpnServer = NULL;
|
||||
static wchar_t *msgProcessCreatedForVpnServer = NULL;
|
||||
@ -147,10 +147,10 @@ static char *msgNoParam = NULL;
|
||||
static void **_messages;
|
||||
|
||||
typedef enum MessageType {
|
||||
_e_msgAppTitle,_e_msgNotSupported,_e_msgInfDownloag,_e_msgInfDownloadFailed,
|
||||
_e_msgAppTitle,_e_msgNotSupported,_e_msgInfDownload,_e_msgInfDownloadFailed,
|
||||
_e_msgBadInfFile,_e_msgWriteFailed,_e_msgDownloading,_e_msgProcessFailed,
|
||||
_e_msgProcessCreating,_e_msgProcessCreated,_e_msgWarning,_e_msgWarningTitle,
|
||||
_e_msgUserCancal,_e_msgStartTextForVpnServer,_e_msgButtonForVpnServer,_e_msgProcessCreatedForVpnServer,
|
||||
_e_msgUserCancel,_e_msgStartTextForVpnServer,_e_msgButtonForVpnServer,_e_msgProcessCreatedForVpnServer,
|
||||
_e_msgNoParam, _e_msgStartTextForVpnClient, _e_msgButtonForVpnClient, _e_msgEnd} MessageType_t;
|
||||
|
||||
int currentPage=MESSAGE_OFFSET_EN;
|
||||
@ -183,7 +183,7 @@ int LoadTables(char *pTag){
|
||||
|
||||
msgAppTitle=LoadMessageW(_e_msgAppTitle);
|
||||
msgNotSupported=LoadMessageA(_e_msgNotSupported);
|
||||
msgInfDownloag=LoadMessageW(_e_msgInfDownloag);
|
||||
msgInfDownload=LoadMessageW(_e_msgInfDownload);
|
||||
msgInfDownloadFailed=LoadMessageW(_e_msgInfDownloadFailed);
|
||||
msgBadInfFile=LoadMessageW(_e_msgBadInfFile);
|
||||
msgWriteFailed=LoadMessageW(_e_msgWriteFailed);
|
||||
@ -193,7 +193,7 @@ int LoadTables(char *pTag){
|
||||
msgProcessCreated=LoadMessageW(_e_msgProcessCreated);
|
||||
msgWarning=LoadMessageW(_e_msgWarning);
|
||||
msgWarningTitle=LoadMessageW(_e_msgWarningTitle);
|
||||
msgUserCancal=LoadMessageW(_e_msgUserCancal);
|
||||
msgUserCancel=LoadMessageW(_e_msgUserCancel);
|
||||
msgStartTextForVpnServer=LoadMessageW(_e_msgStartTextForVpnServer);
|
||||
msgButtonForVpnServer=LoadMessageW(_e_msgButtonForVpnServer);
|
||||
msgProcessCreatedForVpnServer=LoadMessageW(_e_msgProcessCreatedForVpnServer);
|
||||
|
Reference in New Issue
Block a user