| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | #include "TextsFileZilla.h"#define _AFX_NO_APPMENU_RESOURCES#define _AFX_NO_FILECMD_RESOURCES#define _AFX_NO_OLE_RESOURCES#define _AFX_NO_MAPI_RESOURCES#define _AFX_NO_OCC_RESOURCES#define _AFX_NO_SPLITTER_RESOURCES#define _AFX_NO_TRACKER_RESOURCES#define _AFX_NO_CTL3D_RESOURCES#define _AFX_NO_NEWTYPEDLG_RESOURCES#include "afxres.rc"STRINGTABLEBEGIN  IDS_ERRORMSG_NAMEINUSE, "File already exists"  IDS_ERRORMSG_PROXY_AUTHNOLOGON, "Proxy requires authentication"  IDS_ERRORMSG_PROXY_AUTHTYPEUNKNOWN, "Required authtype reported by proxy server is unknown or not supported"  IDS_ERRORMSG_PROXY_CANTRESOLVEHOST, "Can't resolve host of proxy server"  IDS_ERRORMSG_PROXY_NOCONN, "Can't connect to proxy server"  IDS_ERRORMSG_PROXY_REQUESTFAILED, "Proxy request failed, can't connect through proxy server"ENDSTRINGTABLEBEGIN  IDS_ERRORMSG_TIMEOUT, "Timeout detected."  IDS_ERRORMSG_UPLOADABORTED, "Upload aborted"ENDSTRINGTABLEBEGIN  IDS_ERRORMSG_CANTOPENTRANSFERCHANNEL, "Transfer channel can't be opened. Reason: %s"  IDS_ERRORMSG_CANTRESOLVEHOST2, "Can't resolve host name \"%s\""  IDS_ERRORMSG_CANTRESUME, "Resume command not supported by server, overwriting file."  IDS_ERRORMSG_CANTRESUME_FINISH, "Resume command not supported by server, but local and remote filesize are equal."  IDS_ERRORMSG_CANTSENDCOMMAND, "Unable to send command. Disconnected."  IDS_ERRORMSG_CERTREJECTED, "Peer certificate rejected"  IDS_ERRORMSG_DOWNLOADABORTED, "Download aborted"ENDSTRINGTABLEBEGIN  IDS_ERRORMSG_CANTCREATEDUETOPORTRANGE, "Could not create socket in the specified port range."  IDS_ERRORMSG_CANTESTABLISHSSLCONNECTION, "Can't establish TLS connection"  IDS_ERRORMSG_CANTGETLIST, "Could not retrieve directory listing"  IDS_ERRORMSG_CANTINITSSL, "Can't initialize TLS library"ENDSTRINGTABLEBEGIN  IDS_STATUSMSG_CONNECTED, "Connected"  IDS_STATUSMSG_CONNECTEDWITH, "Connected with %s. Waiting for welcome message..."  IDS_STATUSMSG_CONNECTEDWITHSSL, "Connected with %s, negotiating TLS connection..."  IDS_STATUSMSG_CONNECTING, "Connecting to %s ..."  IDS_STATUSMSG_DIRLISTSUCCESSFUL, "Directory listing successful"  IDS_STATUSMSG_DISCONNECTED, "Disconnected from server"  IDS_STATUSMSG_DOWNLOADSTART, "Starting download of %s"  IDS_STATUSMSG_DOWNLOADSUCCESSFUL, "Download successful"  IDS_STATUSMSG_FWCONNECT, "Trying to access %s through ftp proxy..."ENDSTRINGTABLEBEGIN  IDS_STATUSMSG_RETRIEVINGDIRLIST, "Retrieving directory listing..."  IDS_STATUSMSG_SSLESTABLISHED, "TLS connection established. Waiting for welcome message..."  IDS_STATUSMSG_SSLESTABLISHEDTRANSFER, "TLS connection established"  IDS_STATUSMSG_UPLOADSTART, "Starting upload of %s"  IDS_STATUSMSG_UPLOADSUCCESSFUL, "Upload successful"ENDSTRINGTABLEBEGIN  IDS_ERRORMSG_CANTGETLISTFILE, "Could not retrieve file information"  IDS_STATUSMSG_LISTFILESUCCESSFUL, "Retrieving file information successful"  IDS_STATUSMSG_RETRIEVINGLISTFILE, "Retrieving file information..."ENDSTRINGTABLEBEGIN  IDS_ERRORMSG_SETFILEPOINTER, "Could not set file pointer"  IDS_ERRORMSG_UNKNOWNSSLERROR, "Unknown error in TLS layer"  IDS_ERRORMSG_SSLCERTIFICATEERROR, "Could not verify TLS certificate"ENDSTRINGTABLEBEGIN  IDS_PROXY_CONNECTED, "Connection with proxy established, performing handshake..."  IDS_CONTROL_CONNECTION, "control connection"  IDS_DATA_CONNECTION, "data connection"END
 |