| help [ <command> [ <command2> ... ] ] |
| Displays list of commands when no parameters are specified. |
| Displays help for each command when some are specified. |
| alias: |
| man |
| examples: |
| help |
| help ls |
|
| exit |
| Closes all sessions and terminates the program. |
| alias: |
| bye |
|
| open <site> |
| open sftp|scp|ftp[es]|dav[s]|s3 :// [ <user> [ :password ] @ ] <host> [ :<port> ] |
| Establishes connection to given host. Use either name of the site or |
| specify host, username, port and protocol directly. |
| switches: |
| -privatekey=<file> SSH private key file |
| -hostkey=<fingerprint> Fingerprint of server host key (SFTP and SCP only). |
| -clientcert=<file> TLS/SSL client certificate file |
| -certificate=<fingerprint> Fingerprint of TLS/SSL certificate |
| (FTPS and WebDAVS only) |
| -passphrase=<phr> Private key passphrase |
| -passive=on|off Passive mode (FTP protocol only) |
| -implicit Implicit TLS/SSL (FTP protocol only) |
| -explicit Explicit TLS/SSL (FTP protocol only) |
| -timeout=<sec> Server response timeout |
| -username=<user> An alternative way to provide a username |
| -password=<password> An alternative way to provide a password |
| -rawsettings setting1=value1 setting2=value2 ... |
| Configures any site settings using raw format |
| as in an INI file |
| -filezilla Load <site> from FileZilla site manager |
| -newpassword=<password> Changes password to <password> |
| -passwordsfromfiles Read all passwords from files |
| examples: |
| open |
| open sftp://martin@example.com:2222 -privatekey=mykey.ppk |
| open martin@example.com |
| open example.com |
|
| close [ <session> ] |
| Closes session specified by its number. When session number is not |
| specified, closes currently selected session. |
| examples: |
| close |
| close 1 |
|
| session [ <session> ] |
| Makes session specified by its number active. When session number |
| is not specified, lists connected sessions. |
| examples: |
| session |
| session 1 |
|
| pwd |
| Prints current remote working directory for active session. |
|
| cd [ <directory> ] |
| Changes remote working directory for active session. |
| If directory is not specified, changes to home directory. |
| examples: |
| cd /home/martin |
| cd |
|
| ls [ <directory> ]/[ <wildcard> ] |
| Lists the contents of specified remote directory. If directory is |
| not specified, lists working directory. |
| When wildcard is specified, it is treated as set of files to list. |
| Otherwise, all files are listed. |
| alias: |
| dir |
| effective option: |
| failonnomatch |
| examples: |
| ls |
| ls *.html |
| ls /home/martin |
|
| lpwd |
| Prints current local working directory (valid for all sessions). |
|
| lcd <directory> |
| Changes local working directory for all sessions. |
| example: |
| lcd d:\ |
|
| lls [ <directory> ]\[ <wildcard> ] |
| Lists the contents of specified local directory. If directory is |
| not specified, lists working directory. |
| When wildcard is specified, it is treated as set of files to list. |
| Otherwise, all files are listed. |
| effective option: |
| failonnomatch |
| examples: |
| lls |
| lls *.html |
| lls d:\ |
|
| rm <file> [ <file2> ... ] |
| Removes one or more remote files. If remote recycle bin is |
| configured, moves file to the bin instead of deleting it. |
| Filename can be replaced with wildcard to select multiple files. |
| effective option: |
| failonnomatch |
| examples: |
| rm index.html |
| rm index.html about.html |
| rm *.html |
|
| rmdir <directory> [ <directory2> ... ] |
| Removes one or more remote directories. If remote recycle bin is |
| configured, moves directory to the bin instead of deleting it. |
| example: |
| rmdir public_html |
|
| mv <file> [ <file2> ... ] [ <directory>/ ][ <newname> ] |
| Moves or renames one or more remote files. Destination directory or new |
| name or both must be specified. Destination directory must end with |
| slash. Operation mask can be used instead of new name. |
| Filename can be replaced with wildcard to select multiple files. |
| alias: |
| rename |
| effective option: |
| failonnomatch |
| examples: |
| mv index.html public_html/ |
| mv index.html about.* |
| mv index.html public_html/about.* |
| mv public_html/index.html public_html/about.html /home/martin/*.bak |
| mv *.html /home/backup/*.bak |
|
| chmod <mode> <file> [ <file2> ... ] |
| Changes permissions of one or more remote files. Mode can be specified |
| as three or four-digit octal number. |
| Filename can be replaced with wildcard to select multiple files. |
| effective option: |
| failonnomatch |
| examples: |
| chmod 644 index.html about.html |
| chmod 1700 /home/martin/public_html |
| chmod 644 *.html |
|
| ln <target> <symlink> |
| Creates remote symbolic link. |
| alias: |
| symlink |
| example: |
| ln /home/martin/public_html www |
|
| mkdir <directory> |
| Creates remote directory. |
| example: |
| mkdir public_html |
|
| get <file> [ [ <file2> ... ] <directory>\[ <newname> ] ] |
| Downloads one or more files from remote directory to local directory. |
| If only one parameter is specified downloads the file to local working |
| directory. If more parameters are specified, all except the last one |
| specify set of files to download. The last parameter specifies target |
| local directory and optionally operation mask to store file(s) under |
| different name. Destination directory must end with backslash. |
| Filename can be replaced with wildcard to select multiple files. |
| To download more files to current working directory use '.\' as the |
| last parameter. |
| alias: |
| recv, mget |
| switches: |
| -delete Delete source remote file(s) after transfer |
| -resume Resume transfer if possible (SFTP and FTP protocols only) |
| -append Append file to end of target file (SFTP protocol only) |
| -preservetime Preserve timestamp |
| -nopreservetime Do not preserve timestamp |
| -speed=<kbps> Limit transfer speed (in KB/s) |
| -transfer=<mode> Transfer mode: binary, ascii, automatic |
| -filemask=<mask> Sets file mask. |
| -resumesupport=<state> Configures resume support. |
| Possible values are 'on', 'off' or threshold |
| -neweronly Transfer new and updated files only |
| -latest Transfer the latest file only |
| effective options: |
| confirm, failonnomatch, reconnecttime |
| examples: |
| get index.html |
| get -delete index.html about.html .\ |
| get index.html about.html d:\www\ |
| get public_html/index.html d:\www\about.* |
| get *.html *.png d:\www\*.bak |
|
| put <file> [ [ <file2> ... ] <directory>/[ <newname> ] ] |
| Uploads one or more files from local directory to remote directory. |
| If only one parameter is specified uploads the file to remote working |
| directory. If more parameters are specified, all except the last one |
| specify set of files to upload. The last parameter specifies target |
| remote directory and optionally operation mask to store file(s) under |
| different name. Destination directory must end with slash. |
| Filename can be replaced with wildcard to select multiple files. |
| To upload more files to current working directory use './' as the |
| last parameter. |
| alias: |
| send, mput |
| switches: |
| -delete Delete source local file(s) after transfer |
| -resume Resume transfer if possible (SFTP and FTP protocols only) |
| -append Append file to end of target file (SFTP protocol only) |
| -preservetime Preserve timestamp |
| -nopreservetime Do not preserve timestamp |
| -permissions=<mode> Set permissions |
| -nopermissions Keep default permissions |
| -speed=<kbps> Limit transfer speed (in KB/s) |
| -transfer=<mode> Transfer mode: binary, ascii, automatic |
| -filemask=<mask> Sets file mask. |
| -resumesupport=<state> Configures resume support. |
| Possible values are 'on', 'off' or threshold |
| -neweronly Transfer new and updated files only |
| -latest Transfer the latest file only |
| effective options: |
| confirm, failonnomatch, reconnecttime |
| examples: |
| put index.html |
| put -delete index.html about.html ./ |
| put -permissions=644 index.html about.html /home/martin/public_html/ |
| put d:\www\index.html about.* |
| put *.html *.png /home/martin/backup/*.bak |
|
| option [ <option> [ <value> ] ] |
| If no parameters are specified, lists all script options and their |
| values. When one parameter is specified only, shows value of the option. |
| When two parameters are specified sets value of the option. |
| Initial values of some options are taken from application configuration, |
| however modifing the options does not change the application |
| configuration. |
| options are: |
| echo on|off |
| Toggles echoing of command being executed. |
| Commands affected: all |
| batch on|off|abort|continue |
| Toggles batch mode (all prompts are automatically replied |
| negatively). When 'on', it is recommended to set 'confirm' |
| to 'off' to allow overwrites. With 'abort', script is aborted |
| when any error occurs. With 'continue', all errors are ignored. |
| Reconnect time is automatically limited do 120s, if not limited yet. |
| Commands affected: nearly all |
| confirm on|off |
| Toggles confirmations (overwrite, etc.). |
| Commands affected: get, put |
| reconnecttime off | <sec> |
| Time limit in seconds to try reconnecting broken sessions. |
| Commands affected: get, put, synchronize, keepuptodate |
| failonnomatch on|off |
| When 'on', commands fail when file mask matches no files. |
| When 'off', commands do nothing when file mask matches no files. |
| Commands affected: get, put, rm, mv, chmod, ls, lls |
| examples: |
| option |
| option batch |
| option confirm off |
|
| synchronize local|remote|both [ <local directory> [ <remote directory> ] ] |
| When the first parameter is 'local' synchronises local directory with |
| remote one. When the first parameter is 'remote' synchronises remote |
| directory with local one. When the first parameter is 'both' synchronises |
| directories one against the other. |
| When directories are not specified, current working directories are |
| synchronized. |
| Note: Overwrite confirmations are always off for the command. |
| switches: |
| -preview Preview changes only, do not synchronize |
| -delete Delete obsolete files |
| -mirror Mirror mode (synchronize also older files). |
| Ignored for 'both'. |
| -criteria=<criteria> Comparison criteria. Possible values are 'none', 'time', |
| 'size' and 'either'. Ignored for 'both' mode. |
| -permissions=<mode> Set permissions |
| -nopermissions Keep default permissions |
| -speed=<kbps> Limit transfer speed (in KB/s) |
| -transfer=<mode> Transfer mode: binary, ascii, automatic |
| -filemask=<mask> Sets file mask. |
| -resumesupport=<state> Configures resume support. |
| Possible values are 'on', 'off' or threshold |
| effective options: |
| reconnecttime |
| examples: |
| synchronize remote -delete |
| synchronize both d:\www /home/martin/public_html |
|
| keepuptodate [ <local directory> [ <remote directory> ] ] |
| Watches for changes in local directory and reflects them on remote one. |
| When directories are not specified, current working directories are |
| synchronized. To stop watching for changes press Ctrl-C. |
| Note: Overwrite confirmations are always off for the command. |
| switches: |
| -delete Delete obsolete files |
| -permissions=<mode> Set permissions |
| -nopermissions Keep default permissions |
| -speed=<kbps> Limit transfer speed (in KB/s) |
| -transfer=<mode> Transfer mode: binary, ascii, automatic |
| -filemask=<mask> Sets file mask. |
| -resumesupport=<state> Configures resume support. |
| Possible values are 'on', 'off' or threshold |
| effective options: |
| reconnecttime |
| examples: |
| keepuptodate -delete |
| keepuptodate d:\www /home/martin/public_html |
|
| call <command> |
| With SFTP and SCP protocols, executes arbitrary remote shell command. |
| If current session does not allow execution of arbitrary remote command |
| separate shell session will be automatically opened. |
| With FTP protocol, executes a protocol command. |
| The command must not require user input. |
| alias: |
| ! |
| example: |
| call touch index.html |
|
| echo <message> |
| Prints message onto script output. |
| example: |
| echo Starting upload... |
|
| stat <file> |
| Retrieves and lists attributes of specified remote file. |
| example: |
| stat index.html |
|
| checksum <alg> <file> |
| Calculates checksum of remote file. |
| example: |
| checksum sha-1 index.html |
|
| cp <file> [ <file2> ... ] [ <directory>/ ][ <newname> ] |
| Duplicates one or more remote files. Destination directory or new |
| name or both must be specified. Destination directory must end with |
| slash. Operation mask can be used instead of new name. |
| Filename can be replaced with wildcard to select multiple files. |
| effective option: |
| failonnomatch |
| examples: |
| cp index.html public_html/ |
| cp index.html about.* |
| cp index.html public_html/about.* |
| cp public_html/index.html public_html/about.html /home/martin/*.bak |
| cp *.html /home/backup/*.bak |
|
| CORE_ERROR |
| Host key wasn't verified! |
| Connection failed. |
| Terminated by user. |
| Lost connection. |
| Can't detect command return code. |
| Command '%s' |
| failed with return code %d and the following error message. |
| Command failed with return code %d. |
| Command '%s' failed with invalid output '%s'. |
| Error getting name of current remote directory. |
| Error skipping startup message. Your shell is probably incompatible with the application (BASH is recommended). |
| Error changing directory to '%s'. |
| Error listing directory '%s'. |
| Unexpected directory listing line '%s'. |
| Invalid rights description '%s' |
| Error cleaning up general configuration. |
| Error cleaning up caches. |
| Error cleaning up random seed file. |
| Error cleaning up cached host keys. |
| Error detecting variable containing return code of last command. |
| Error looking up user groups. |
| File or folder '%s' does not exist. |
| Can't get attributes of file '%s'. |
| Can't open file '%s'. |
| Error reading file '%s'. |
| Copying file '%s' fatally failed. |
| Copying files to remote side failed. |
| Copying files from remote side failed. |
| SCP protocol error: Unexpected newline |
| SCP protocol error: Illegal time format |
| SCP protocol error: Invalid control record (%s; %s) |
| Copying file '%s' failed. |
| SCP protocol error: Illegal file descriptor format |
| '%s' is not folder! |
| Error creating folder '%s'. |
| Can't create file '%s'. |
| Error writing to file '%s' |
| Can't set attributes of file '%s'. |
| Received error message from remote side: '%s' |
| Error deleting file '%s'. |
| Error occurred during logging. It's been turned off. |
| Can't open log file '%s'. |
| Error renaming file '%s' to '%s'. |
| File with name '%s' already exists. |
| Directory with name '%s' already exists. |
| Error changing directory to home directory. |
| Error clearing all aliases. |
| Error clearing national user variables. |
| Unexpected input from server: %s |
| Error cleaning up INI file. |
| Authentication log (see session log for details): |
| %s |
|
| Authentication failed. |
| Connection has been unexpectedly closed. |
| Error saving key to file '%s'. |
| Server sent command exit status %d. |
| SFTP protocol violation: Invalid response message type (%d). |
| Version of SFTP server (%d) is not supported. Supported versions are %d to %d. |
| SFTP protocol violation: Invalid message number %d (expected %d). |
| Unexpected OK response. |
| Unexpected EOF response. |
| No such file or directory. |
| Permission denied. |
| General failure (server should provide error description). |
| Bad message (badly formatted packet or protocol incompatibility). |
| No connection. |
| Connection lost. |
| The server does not support the operation. |
| %s |
| Error code: %d |
| Error message from server%s: %s |
| Unknown status code. |
| Error reading symbolic link '%s'. |
| Server returned empty listing for directory '%s'. |
| Received SSH_FXP_NAME packet with zero or multiple records. |
| Cannot get real path for '%s'. |
| Cannot change properties of file '%s'. |
| Cannot initialize SFTP protocol. Is the host running an SFTP server? |
| Cannot read time zone information |
| Cannot create remote file '%s'. |
| Cannot open remote file '%s'. |
| Cannot close remote file '%s'. |
| '%s' is not file! |
| Transfer was successfully finished, but temporary transfer file '%s' could not be renamed to target file name '%s'. If the problem persists, you may try to turn off transfer resume support. |
| Cannot create link '%s'. |
| Invalid command '%s'. |
| None |
| '%s' is not valid permission in octal format. |
| Server requires unsupported end-of-line sequence (%s). |
| Unknown file type (%d) |
| Invalid handle. |
| The file path does not exist or is invalid. |
| File already exists. |
| The file is on read-only media, or the media is write protected. |
| There is no media available in the drive. |
| Error decoding UTF-8 string. |
| Error executing custom command '%s' on file '%s'. |
| Cannot load locale %d. |
| Received incomplete data packet before end of file. |
| Error calculating size of directory '%s'. |
| Received too large (%d B) SFTP packet. Max supported packet size is %d B. |
| Cannot execute SCP to start transfer. Please make sure that SCP is installed on the server and path to it is included in PATH. You may also try SFTP instead of SCP. |
| Location Profile with name '%s' already exists. |
| Error moving file '%s' to '%s'. |
| %s |
|
| The error is typically caused by message printed from startup script (like .profile). The message may start with %s. |
| **Upload of file '%s' was successful, but error occurred while setting the permissions and/or timestamp.** |
|
| If the problem persists, turn off setting permissions or preserving timestamp. Alternatively you can turn on 'Ignore permission errors' option. |
| Invalid access to memory. |
| There is insufficient free space on the filesystem. |
| Operation cannot be completed because it would exceed the user's storage quota. |
| Principal (%s) is unknown to the server. |
| Error copying file '%s' to '%s'. |
| Unterminated pattern '%s' starting at %d. |
| Unknown pattern '%s' starting at %d. |
| Cannot combine file name pattern (starting at %d) with file list pattern (starting at %d). |
| Unknown command '%s'. |
| Ambiguous command '%s'. Possible matches are: %s |
| Missing parameter for command '%s'. |
| Too many parameters for command '%s'. |
| No session. |
| Invalid session number '%s'. |
| Unknown option '%s'. |
| Unknown value '%s' of option '%s'. |
| Cannot determine status of socket (%d). |
| Error deleting file '%s'. After resumable file upload the existing destination file must be deleted. If you do not have permissions to delete the destination file, you need to disable resumable file transfers. |
| Error decoding SFTP packet (%d, %d, %d). |
| Invalid name '%s'. Name cannot contain '%s'. |
| The file could not be opened because it is locked by another process. |
| The directory is not empty. |
| The specified file is not a directory. |
| The filename is not valid. |
| Too many symbolic links encountered. |
| The file cannot be deleted. |
| One of the parameters was out of range, or the parameters specified cannot be used together. |
| The specified file was a directory in a context where a directory cannot be used. |
| Byte range lock conflict. |
| Byte range lock refused. |
| An operation was attempted on a file for which a delete operation is pending. |
| The file is corrupt; an filesystem integrity check should be run. |
| File '%s' does not contain private key in known format. |
| **Private key file '%s' contains key in %s format. WinSCP supports only PuTTY format.** |
| Private key file '%s' contains key in deprecated SSH-1 format. |
| Cannot overwrite remote file '%s'.$$ |
|
| Press 'Delete' to delete the file and create new one instead of overwriting it.$$ |
| &Delete |
| Error checking space available for path '%s'. |
| Cannot find free local listening port number for tunnel in range %d to %d. |
| Cannot setup network event (error %d). |
| Server unexpectedly closed network connection. |
| Error while tunneling the connection. |
|
| %s |
| Error calculating checksum for file '%s'. |
| Internal error %s (%s). |
| Operation not supported. |
| Access denied. |
| Prompting for credentials... |
| Invalid response to %s command '%s'. |
| Unknown switch '%s'. |
| Error transferring file '%s'. |
| Cannot execute '%s'. |
| File '%s' not found. |
| Error waiting for document to close. |
| '%s' is not a valid speed limit. |
| Certificate chain too long. |
| Certificate has expired. |
| Certificate is not yet valid. |
| Certificate rejected. |
| Certificate signature failure. |
| Certificate not trusted. |
| Self-signed certificate. |
| Format error in certificate's valid until field. |
| Format error in certificate's valid from field. |
| Invalid CA certificate. |
| Unsupported certificate purpose. |
| Key usage does not include certificate signing. |
| Path length constraint exceeded. |
| Self-signed certificate in certificate chain. |
| Unable to decode issuer public key. |
| Unable to decrypt certificate signature. |
| Unable to get issuer certificate. |
| Unable to get local issuer certificate. |
| Unable to verify the first certificate. |
| Unknown certificate verification error. |
| The error occurred at a depth of %d in the certificate chain. |
| Mask is invalid near '%s'. |
| The server cannot open connection in active mode. If you are behind a NAT router, you may need to specify an external IP address. Alternatively, consider switching to passive mode. |
| Error deleting file '%s'. |
| Invalid switch value '%s'. Valid values are 'on' and 'off'. |
| Cannot open site folder or workspace. |
| Network error: No route to host "%HOST%". |
| Network error: Software caused connection abort |
| Host "%HOST%" does not exist. |
| Incoming packet was garbled on decryption |
| %s |
|
| Please help us improving WinSCP by reporting the error on WinSCP support forum. |
| Error decoding TLS/SSL certificate (%s). |
| CORE_CONFIRMATION |
| Host is not communicating for %d seconds. |
|
| Wait for another %0:d seconds? |
| &Passphrase for key '%s': |
| File '%s' already exists. Overwrite? |
| Directory '%s' already exists. Overwrite? |
| cipher |
| client-to-server cipher |
| server-to-client cipher |
| **Do you want to resume file transfer?** |
|
| Target directory contains partially transferred file '%s'. |
|
| Note: Answering 'No' would delete partially transferred file and restart transfer. |
| Target directory contains partially transferred file '%s', which is bigger than a source file. The file will be deleted. |
| **Do you want to append file '%s' at the end of existing file?** |
|
| Press 'No' to resume file transfer instead. |
| %s |
|
| New: %s bytes, %s |
| Existing: %s bytes, %s |
| File '%s' is read-only. Overwrite? |
| **Overwrite local file '%s'?** |
|
| Destination directory already contains file '%s'. |
| Choose, if you want to overwrite the file or skip this transfer and keep existing file. |
| **Overwrite remote file '%s'?** |
|
| Destination directory already contains file '%s'. |
| Choose, if you want to overwrite the file or skip this transfer and keep existing file. |
| Host is not communicating for more than %d seconds. |
| Still waiting... |
|
| Note: If the problem repeats, try turning off 'Optimize connection buffer size'. |
| &Reconnect |
| New na&me |
| Tunnel for %s |
| Password |
| Key passphrase |
| Server prompt |
| Username |
| &Username: |
| Server prompt: %s |
| New password |
| &Response: |
| Using TIS authentication.%s |
| Using CryptoCard authentication.%s |
| &Password: |
| Using keyboard-interactive authentication.%s |
| &Current password: |
| &New password: |
| Confirm new &password: |
| Authenticating tunnel through %s |
| Transfer under different name |
| &New name: |
| **The server's certificate is not known. You have no guarantee that the server is the computer you think it is.** |
|
| Server's certificate details follow: |
|
| %s |
|
| If you trust this certificate, press Yes. To connect without storing certificate, press No. To abandon the connection press Cancel. |
|
| Continue connecting and store the certificate? |
| - Organization: %s |
| |- Location: %s |
| |- Other: %s |
|
| %s, %s |
| Issuer: |
| %s |
| Subject: |
| %s |
| Valid: %s – %s |
|
| Fingerprints: |
| - SHA-256: %s |
| - SHA-1: %s |
|
| Summary: %s |
| &Passphrase for client certificate: |
| Client certificate passphrase |
| **Do you want to convert %s private key to PuTTY format?** |
|
| %s |
| **Are you sure you want to transfer multiple files to a single file '%s' in a directory '%s'?** |
|
| The files will overwrite one another. |
|
| If you actually want to transfer all files to a directory '%s', keeping their name, make sure you terminate the path with a slash. |
| key-exchange algorithm |
| host key type |
| Access key ID |
| A&ccess key ID: |
| Secret access key |
| Secret access &key: |
| Direct duplication of folders is not supported. Use a duplication via a local temporary copy. |
| Specify target bucket. |
| Timeout waiting for server to respond. |
| Proxy authentication |
| Proxy &username: |
| Proxy &password: |
| All files in the target directory will be deleted! |
| Continue connecting to an unknown server and add its host key to a cache? |
| %s (port %d) |
| The host key is not cached for this server: |
| You have no guarantee that the server is the computer you think it is. |
| Warning – Potential security breach! |
| This means that either %s, or %s. |
| the server administrator has changed the host key |
| you have actually connected to another computer pretending to be the server |
| The %s key fingerprint is: |
| The host key does not match the one WinSCP has cached for this server: |
| If you trust this host, select %s to add the key to WinSCP's cache and carry on connecting. |
| &Accept |
| If you want to carry on connecting just once, without adding the key to the cache, select %s. |
| Connect &Once |
| If you do not trust this host, select %s to abandon the connection. |
| If you were expecting this change, trust the new key and want to continue connecting to the server, either select %s to update cache, or select %s to add the new key to the cache while keeping the old one(s). |
| If you want to carry on connecting but without updating the cache, select %s. |
| If you want to abandon the connection completely, select %s to cancel. Selecting %s is the ONLY guaranteed safe choice. |
| This server presented a certified host key: |
| which was signed by a different certification authority from the one(s) WinSCP is configured to trust for this server. |
| Also, that key does not match the key WinSCP had previously cached for this server. |
| another certification authority is operating in this realm |
| which does not match the certified key WinSCP had previously cached for this server. |
| (Storing this certified key in the cache will NOT cause its certification authority to be trusted for any other key or host.) |
| Security Alert |
| Do you want to accept the risk and continue with this session? |
| The first %s supported by the server is %s, which is below the configured warning threshold. |
| The %s selected for this session is %s, which, with this server, is vulnerable to the 'Terrapin' attack CVE-2023-48795, potentially allowing an attacker to modify the encrypted session. |
|
| Upgrading, patching, or reconfiguring this SSH server is the best way to avoid this vulnerability, if possible. |
| You can also avoid this vulnerability by abandoning this session, moving %s to below the 'warn below here' line in WinSCP's SSH cipher configuration (so that an algorithm without the vulnerability will be selected), and starting a new session. |
| CORE_INFORMATION |
| Yes |
| No |
| Host: %s |
| User name: %s |
| Private key file: %s |
| Transfer protocol: %s |
| Version %s (%s) |
| Operation was successfully completed. Connection was closed. |
| SFTP-%d |
| The version of SFTP protocol does not allow file renaming. |
| The server does not support any SFTP extension. |
| The server supports these SFTP extensions: |
| A&ppend |
| Ne&wer only |
| Displays help |
| Closes all sessions and terminates the program |
| Connects to server |
| Closes session |
| Lists connected sessions or selects active session |
| Prints remote working directory |
| Changes remote working directory |
| Lists the contents of remote directory |
| Prints local working directory |
| Changes local working directory |
| Lists the contents of local directory |
| Removes remote file |
| Removes remote directory |
| Moves or renames remote file |
| Changes permissions of remote file |
| Creates remote symbolic link |
| Creates remote directory |
| Downloads file from remote directory to local directory |
| Uploads file from local directory to remote directory |
| Sets or shows value of script options |
| Synchronizes remote directory with local one |
| Continuously reflects changes in local directory on remote one |
| Host: |
| Active session: [%d] %s |
| Session '%s' closed. |
| Local '%s' %s Remote '%s' |
| '%s' deleted |
| Watching for changes, press Ctrl-C to abort... |
| Ski&p all |
| Executes arbitrary remote command |
| &Text |
| &Binary |
| Transfer type: %s|Binary|Text|Automatic (%s)|Automatic |
| Filename modification: %s|No change|Upper case|Lower case|First upper case|Lower case 8.3 |
| Set permissions: %s |
| Add X to directories |
| Preserve timestamp |
| File mask: %s |
| Clear 'Archive' attribute |
| Do not replace invalid characters |
| Do not preserve timestamp |
| Do not calculate transfer size |
| Default transfer settings |
| Hostname: %s |
| Username: %s |
| Remote directory: %s |
| Local directory: %s |
| Scanning '%s' for subdirectories... |
| Watching for changes in %d directories... |
| Change in '%s' detected. |
| File '%s' uploaded. |
| File '%s' deleted. |
| %s configured transfer settings cannot be used in current context|Some|All |
| Ignore permission errors |
| Using username "%s". |
| Using keyboard-interactive authentication. |
| Authenticating with public key "%s". |
| Wrong passphrase. |
| Access denied. |
| Authenticating with public key "%s" from agent. |
| Trying public key authentication. |
| Authenticating with pre-entered password. |
| Opening tunnel... |
| Connection terminated. |
| Searching for host... |
| Connecting to host... |
| Authenticating... |
| Authenticated. |
| Starting the session... |
| Reading remote directory... |
| Session started. |
| Connecting through tunnel... |
| Server refused our key. |
| Administratively prohibited (%s). |
| Connect failed (%s). |
| Network error: Connection to "%HOST%" refused. |
| Network error: Connection reset by peer. |
| Network error: Connection to "%HOST%" timed out. |
| Host: %s |
| User name: %s |
| Transfer protocol: %s |
| &Resume |
| The server does not support any additional FTP feature. |
| The server supports these FTP additional features: |
| Transfer speed limit: %u KB/s |
| &Copy Key |
| &Update |
| &Add |
| Preserve read-only |
| Comparing... |
| Synchronizing... |
| Nothing to synchronize. |
| Unlimited |
| TLS/SSL Implicit encryption |
| TLS/SSL Explicit encryption |
| Displays its arguments as message |
| Retrieves attributes of remote file |
| Host key fingerprint is %s. |
| Switch -filemask overrides obsolete options include/exclude. |
| &New and updated files only |
| The server rejected SFTP connection, but it listens for FTP connections. |
|
| Did you want to use FTP protocol instead of SFTP? Prefer using encryption. |
| Opening session using command-line parameter in scripting is deprecated. Use 'open' command instead. |
| WARNING! Giving up security and accepting any host key as configured! |
| WARNING! Giving up security and accepting any certificate as configured! |
| New local file %s |
| New remote file %s |
| Local file %s newer than remote file %s |
| Remote file %s newer than local file %s |
| Orphan remote file %s |
| Orphan local file %s |
| Differences found: |
| Remove EOF mark |
| Remove BOM |
| Using configured transfer settings different from factory defaults. |
| Using configured synchronization options different from factory defaults. |
| Build |
| Dev Build |
| Debug Build |
| – Do NOT distribute |
| The server supports these WebDAV extensions: |
| Exclude &directories |
| Calculates checksum of remote file |
| Loading client certificate... |
| Server asks for authentication with a client certificate. |
| Locked |
| Executable |
| Scripting does not use standalone parameters. The parameters you have specified on command-line will not be used. Your command-line syntax is probably wrong. |
| In scripting, you should use a -hostkey switch to configure the expected host key. |
| In scripting you should not rely on saved sites, use this command instead: |
| Set up session options |
| Connect |
| Load WinSCP .NET assembly |
| %s (including directories) |
| The file must be in UTF-8 or UTF-16 encoding. |
| %s and %s |
| Changing password. |
| &Paste key |
| Duplicates remote file |
| Unknown |
| &Copy key fingerprints to clipboard |
| &Copy certificate fingerprint to clipboard |
| Do not encrypt new files |
| Exclude hidden files |
| Exclude empty directories |
| **Public key "%s" was installed.** |
|
| You can now login to the server using the key pair. |
| Though potentially wrong permissions of "%s" file and/or its parent folder were detected. Please check them. |
| just now|today|yesterday|tomorrow|one second ago|%d seconds ago|one minute ago|%d minutes ago|one hour ago|%d hours ago|one day ago|%d days ago|one week ago|%d weeks ago|one month ago|%d months ago|one year ago|%d years ago |
| %d days |
| Browse for INI file to import sites from. |
| Adding public key line to "%s" file: |
| Downloading current "%s" file... |
| "%s" file already contains public key line: |
| "%s" file does not contain the public key line yet. |
| Creating new "%s" file... |
| Uploading updated "%s" file... |
| CORE_VARIABLE |
| SSH and SCP code based on PuTTY %s |
| Copyright © 1997–2025 Simon Tatham |
| https://www.chiark.greenend.org.uk/~sgtatham/putty/ |
| FTP code based on FileZilla |
| Copyright © Tim Kosse |
| https://filezilla-project.org/ |
| This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s. |
| Copyright © 1998–%s The OpenSSL Project |
| https://openssl-library.org/ |
| WebDAV/HTTP code based on neon library %s |
| Copyright © 1999–2025 Joe Orton |
| https://notroj.github.io/neon/ |
| eXpat library %s |
| https://libexpat.github.io/ |
| https://www.chiark.greenend.org.uk/~sgtatham/putty/licence.html |
| ** |
| $$ |
| S3 code based on libs3 library %s |
| Copyright © Bryan Ischo |
| https://github.com/bji/libs3 |
| https://github.com/bji/libs3/blob/master/LICENSE |
| Error retrieving file list for "%s". |
| Certificate was not issued for this server. You might be connecting to a server that is pretending to be "%s". |
| No file matching '%s' found. |
| Some certificates in certificate chain are invalid. |
| Certificate is valid. |
| WebDAV resource moved to '%s'. |
| Too many redirects. |
| Redirect loop detected. |
| Invalid URL "%s". |
| Proxy authentication failed. |
| Host key does not match configured key fingerprint "%s"! |
| The name specified can not be assigned as an owner of a file. |
| The name specified can not be assigned as the primary group of a file. |
| The requested operation could not be completed because the specified byte range lock has not been granted. |
| Private key file '%s' does not exist or cannot be opened. |
| Checksum algorithm '%s' is not supported. |
| The %s %s was not verified! |
| Common reasons for the Error code 4 are: |
| - Renaming a file to a name of already existing file. |
| - Creating a directory that already exists. |
| - Moving a remote file to a different filesystem (HDD). |
| - Uploading a file to a full filesystem (HDD). |
| - Exceeding a user disk quota. |
| Cannot open certificate "%s". |
| Cannot read certificate "%s". |
| Error decoding certificate. |
| Error decoding certificate "%s". |
| Certificate file "%s" does not contain a public key and no corresponding .crt/.cer file was found. |
| Error locking file '%s'. |
| Error unlocking file '%s'. |
| File '%s' is not locked. |
| Error saving key to file "%s". |
| Neon HTTP library initialization failed, cannot open session. |
| Selecting files using a path ending with slash is ambiguous. Remove the slash to select the folder. Append * mask to select all files in the folder. |
| When connecting using an IP address, it is not possible to verify if the certificate was issued for the server. Use a hostname instead of the IP address. |
| Expected host key was not configured, use -hostkey switch. |
| Redirected to an unencrypted URL. |
| Received response %d "%s" from %s. |
| FileZilla site manager file not found (%s). |
| No sites found in FileZilla site manager file (%s). |
| FileZilla site "%s" was not found. |
| You cannot connect to an SFTP server using an FTP protocol. Please select the correct protocol. |
| Error occurred during logging. Cannot continue. |
| '%s' is not a valid size. |
| OpenSSH known_hosts file not found. |
| No host keys found in known_hosts. |
| Contents of the clipboard does not match the host key nor its fingerprint. |
| Resource: %s |
| Further details: %s |
| Extra Details: |
| Access denied. |
| File is not encrypted using a known encryption. |
| **Invalid encryption key.** |
|
| Encryption key for %s encryption must have %d bytes. It must be entered in hexadecimal representation (i.e. %d characters). |
| Server sent a file that was not requested. |
| Failed to store new host key. |
| When uploading streamed data, only one source can be specified and the target must specify a filename. |
| Error reading input stream. |
| Error reading AWS configuration parameter %s. |
| Cannot create temporary directory '%s'. You may change root directory to store temporary files in Preferences. |
| OpenSSH config file not found. |
| No Host directives for specific hosts found in OpenSSH config file. |
| FTP server returned invalid response '%s'. |
| S3 profile "%s" does not exist or does not contain any relevant options. |
| Certificate file "%s" does not exist or cannot be opened. |
| Unable to load certificate file "%s". |
| Unknown public key algorithm "%s". |
| Certificate in "%s" does not match public key in the key file. |
| Unable to combine certificate in "%s" with private key. |
| File "%s" is not a public key in a known format. |
| File part "%s" size is %s, but %s was expected. |
| Credentials were not specified. |
| Cannot decode key: %s |
| Invalid key (no key type). |
| CA key may not be a certificate (type is '%s'). |
| Invalid '%s' key data. |
| Error assuming role '%s'. |
| Unexpected response to AWS request (%s). |
| No sites found in "%s". |
| The server is using unsupported protocol. Your WinSCP session is configured to use %s through %s. It can be configured to use %s through %s. Though, avoid using old insecure protocols, whenever possible. |
| OpenSSL initialization failed |
| No private key found in %s file. |
| WIN_ERROR |
| %s |
|
| Warning: Aborting this operation will close connection! |
| Cannot create shortcut. |
| Cannot overwrite special site '%s'. |
| Cannot explore directory '%s'. |
| No upload file list specified. |
| Can't create folder '%s'. |
| Cannot remove temporary directory '%s'. |
| Cannot open or execute file '%s' |
| Cannot launch editor '%s'. |
| Cannot open corresponding directory in the opposite panel. Directory browsing synchronisation failed. It has been turned off. |
| Cannot resolve shortcut '%s'. |
| '%s' is not valid Location Profile name. |
| '%s' is not valid Location Profile folder name. |
| Location Profile folder with name '%s' already exists. |
| Custom command description cannot contain '%s'. |
| Custom command with description '%s' already exists. |
| Cannot query application homepage for updates information. |
| Error checking for application updates. |
| Cannot register application to handle URL addresses. |
| Mutex was not released in required interval. |
| Shell drag extension mutex was not released in required interval. |
| **WinSCP was not able to detect folder, where the dragged file(s) was dropped.** Either you have not dropped the file(s) to regular folder (e.g. Windows File Explorer) or you have not restarted your computer yet after installation to load drag&drop shell extension. |
|
| Alternatively you can switch to compatible drag&drop mode (from Preferences window), which uses temporary folder for downloads. It allows you to drop files to any destination. |
| File '%s' does not contain translation for this product version. |
| File '%s' contains translation for %s version %s. |
| GSSAPI/SSPI with Kerberos is not supported on this system. |
| Error watching for changes. |
| Error watching for changes in directory '%s'. |
| Error watching for changes of file '%s'. |
| **Cannot upload edited file '%s'** |
|
| The session '%s' has been already closed. |
|
| Open a new session on the same site and try saving file again. |
| There are too many opened files already. Please close some first. |
| %s Please remove the file. Otherwise the application will not work correctly. |
| WinSCP was not able to determine application that was started to open the file. WinSCP cannot watch for changes in the file and thus it will not upload the changed file back. |
|
| One possible reason for the problem is that the file was opened in some already running application. |
|
| If you want to use the application to open files from WinSCP, consider configuring it as an external editor. |
|
| Note that the file will remain in temporary folder. |
| Some of the temporary folders have not been deleted. If you have some files stored in them still opened, close them and try again. |
| To use selected custom command only one file must be selected in one panel to execute the command with the file for each selected file in an opposite panel. Alternatively same number of files can be selected in both panels to execute the command for file pairs. |
| To use selected custom command only one file must be selected in local panel. |
| Some of the selected remote files were not downloaded. The selected custom command must be executed for pairs of files, which is currently not possible. |
| Cannot initialize external console. |
| Cannot open mapping object to start communication with external console. |
| Timeout waiting for external console to complete the command. |
| Incompatible external console protocol version %d. |
| Error adding path '%s' to search path (%%PATH%%). |
| Error removing path '%s' from search path (%%PATH%%). |
| The file '%s' is already opened in external editor (application) or is being uploaded. |
| You have not specified any autoselection rule mask. |
| Transfer settings preset with description '%s' already exists. |
| **Custom command '%s' cannot be executed right now.** You may need to select files for the command or open a session first. |
| Cannot reload file '%s', the session '%s' has been already closed. |
| The password cannot be decrypted. |
| You did not enter the correct current master password. |
| New and re-entered master passwords are not the same. |
| External console output is redirected to a pipe. Make sure the pipe is being read from. |
| '%s' is workspace, not site folder. |
| '%s' is site folder, not workspace. |
| Cannot add new path to %PATH%, %PATH% is already too long. |
| Stack trace: |
| No sites found in %s sites registry key (%s). |
| No site mask specified. |
| No site settings specified. |
| Not changed |
| Changed |
| Found %d sites, Changed %d sites |
| You have to specify input key file. |
| No action specified. |
| Editing SSH-1 keys is not supported. |
| Passphrases do not match. |
| You have to specify output key file. |
| Error downloading update. Please try again later. |
| The downloaded update could not be verified. Please try again later. |
| Your email address is not authorized to automatic updates. |
| Your email address authorization to automatic updates has expired. |
| Your email address was blocked to automatic updates due to an excessive use. |
| To enable automatic updates for your e-mail address, please fill in a donation form (including your postal address). |
|
| You will find a link to the form in a receipt, you have received after your donation. |
| Your donation is below the limit required to enable automatic updates. |
| No tips. |
| Converting public keys is not supported. |
| Secure session (SSH or TLS/SSL) not specified. |
| The extension requires %s. |
| Invalid value "%s" of extension directive %s. |
| Missing mandatory extension directive %s. |
| No extension found in the document. |
| There is already an extension with the name "%s". |
| The extension is installed already. |
| Error loading an extension from "%s". |
| **No session is opened** |
| The selected command has site-specific options, but no session is opened. |
| **WinSCP was not able to detect a folder, where the dragged file(s) was dropped.** In the default drag&drop mode, WinSCP allows dropping files only to local drives and mapped network drives. |
|
| You can allow dropping files to other targets in preferences. Press Help button for details. |
| Error updating jump list. |
| Too many parameters. |
| Search the %s inbox for "%s" message. |
| Identity/key file was not specified. |
| Keys must be unique. |
| Character "%s" is not allowed in tags. |
| WIN_CONFIRMATION |
| Site with name '%s' already exists. Overwrite? |
| Directory '%s' doesn't exist. Create? |
| **Cancel file transfer?** |
|
| Operation can't be canceled in the middle of file transfer. |
| Press 'Yes' to cancel file transfer and to close connection. |
| Press 'No' to finish current file transfer. |
| Press 'Cancel' to continue operation. |
| Are you sure you want to delete file '%s'? |
| Are you sure you want to delete %d selected files? |
| Terminate session '%s' and close application? |
| Never ask me a&gain |
| Too little space on temporary drive! |
|
| When dragging files from remote directory, files are downloaded first to temporary directory '%s'. There are %s free on the drive. Total size of dragged files is %s. |
|
| Note: Temporary directory can be changed from Preferences window. |
|
| Do you still want to download files? |
| Add directory '%s' to bookmarks? |
| Create desktop shortcut for site '%s'? |
| Set current session settings as default? |
| &Skip |
| File was modified. Save changes? |
| Create Explorer's 'send to' shortcut for site '%s'? |
| Create selected icon/shortcut? |
| Terminate all sessions and close application? |
| Delete selected Location Profile folder? |
| &Previous |
| &Next |
| Do you want to register WinSCP to handle URL addresses? |
| Do you want to cleanup data stored by the application on this computer? |
| %s |
|
| Do you want to close application? |
| %%s |
|
| Do you want to terminate %d remaining session(s) and close the application? |
| **There are still some background transfers in queue. Do you want to disconnect anyway?** |
|
| Warning: Pressing 'OK' will terminate all transfers immediately. |
| **Do you want to open a separate shell session?** |
|
| Current %s session does not support command you request. A separate shell session may be opened to process the command. |
|
| Note: The server must provide Unix-like shell and the shell must use same path syntax as current %s session. |
| There are some opened files. Please close them before exiting application. |
|
| Beware: If you ignore this message, opened files may remain in temporary directory. |
| **Do you want to delete past temporary folders?** |
|
| WinSCP has found %d temporary folders, which it has probably created in past. These folders may contain files previously edited or downloaded. |
|
| You may also open the folders to review their content and to delete them yourself. |
| &Open |
| Never show this message a&gain |
| **Do you want to create desktop icon for all users?** |
|
| You must have administrator privileges for this. |
| Do you want to add application path '%s' to system search path (%%PATH%%)? |
| Editor (application) launched to open file '%s' was closed too early. If it was not closed by you, it may have happened because your external editor opens multiple files in one window (process). Additional launched instances of the editor then just sends the new file to existing instance of editor and closes itself immediately. To support this kind of editors, WinSCP must adapt its behavior, not to remove temporary file when the process exits, but to keep it as long as WinSCP is running. The behavior can be turned on by unsetting editor preference option 'External editor opens each file in separate window (process)'. If your editor is not of this kind, ignore this message and let the file be removed from temporary directory now. |
|
| Do you want to remove the opened file now? (By pressing 'No' you will enable the special behavior and keep the file in temporary folder.) |
| **Do you want to make direction you have selected the default?** |
|
| You have overridden pre-selected synchronisation direction. By default the direction is determined from file panel that was active before you run the synchronise function. |
| **Do you want to perform full synchronisation of the remote directory first?** |
|
| Function 'Keep remote directory up to date' works correctly only, if the remote directory is synchronised with the local one before it starts. |
|
| Are you sure you want to delete site '%s'? |
| More than %d directories and subdirectories found. Watching for changes in large number of directories can significantly degrade performance of the computer. |
|
| Do you want to scan for another up to %d directories? |
| %s (%d s) |
| Are you sure you want to move file '%s' to recycle bin? |
| Are you sure you want to move %d selected files to recycle bin? |
| File was modified. Changes will be lost, if file is reloaded. Continue? |
| &Configure... |
| **Do you want to try to create directory '%s'?** |
|
| Cannot open corresponding directory in the opposite panel. |
| Add to &shared bookmarks |
| **Do you want to send the message to WinSCP site?** |
|
| There is no help page associated with the message. WinSCP can search its documentation site for the message text for you. |
|
| Note: WinSCP will send the message as is over unsecure Internet connection. Please check that the message does not contain any data you want to protect, such as names of files, accounts or hosts. |
| **Your password is too simple and may not provide enough security against dictionary or brute force attacks. |
| Are you sure you want to use it?** |
|
| Note: good passwords have at least six characters and contain both lowercase and uppercase letters, numbers and special characters, such as delimiters, symbols, letters with accent, etc. |
| Create desktop shortcut for site folder '%s'? |
| Create desktop shortcut for workspace '%s'? |
| Do you want to reconnect session '%s' to upload edited file '%s'? |
| Terminate all sessions and close application without saving a workspace? |
| **Do you want to use '%s' instead of default internal editor?** |
|
| WinSCP has detected that you have custom text editor '%s' associated with text files. |
| **You have stored sessions/sites in %s. |
|
| Do you want to import them into WinSCP?** |
|
| (You can import them anytime later from Login dialog)|PuTTY SSH client|FileZilla FTP client|%s and %s |
| **Restore configuration from a backup?** |
|
| Importing configuration will overwrite all your preferences and sites. WinSCP will be restarted with the new configuration. Consider saving your work and creating backup of your current configuration. |
| A&ll |
| Yes to A&ll |
| Re&port |
| There is other instance of WinSCP running. |
|
| Setting or clearing master password, while another instance of WinSCP is running, can cause loss of your stored passwords. |
|
| Please quit other instances of WinSCP before continuing. |
| **Do you want to attach edited file '%s' to session '%s'?** |
|
| Original session used to download file '%s' to editor was closed already. |
| Do you want to unregister WinSCP from handling all URL addresses? |
| **Try to open large file?** |
|
| The file you are trying to open in an internal editor is too large (%s). WinSCP internal editor is not designed for editing large files. Consider using an external editor capable of editing large files. |
|
| You may try to open the file anyway, but WinSCP may fail. |
| Close |
| The extension does not come from a trusted source. Are you sure you want to install it? |
| **Using the last compatible and trusted version of the extension.** |
|
| The latest version of the extension is either not reviewed yet or is not compatible with this version of WinSCP. |
| **Do you want to overwrite an existing INI file '%s'?** |
|
| Choose 'Overwrite' to overwrite the selected INI file with the current configuration. |
|
| Choose 'Use' to restart WinSCP with a configuration loaded from the selected INI file. Your current configuration will be preserved and you can revert to it, if needed.|&Overwrite|&Use |
| **Do you want to overwrite a read-only INI file '%s' to save your current configuration?**This question is asked, when you hold down Shift key while closing WinSCP and your INI file is set read-only. Normally read-only INI files are not overwritten and any changes to configuration are lost when closing WinSCP. |
| Terminate session '%s' and close application without saving a workspace? |
| Close application without saving a workspace? |
| **Do you really want to open another tab?** |
| You have %d tabs opened already. Please consider closing some tabs first to free resources of your computer. |
| The remote file has been changed while you were editing it. Do you want to overwrite it anyway? |
| WIN_INFORMATION |
| No differences found. |
| Opens site '%s' |
| %s |
| Waiting for the document to close... |
| %s (upload using %s) |
| %s (for upload) |
| Local: %s |
| Remote: %s |
| &Touch |
| &Execute |
| %d error(s) occurred during last operation. Do you want to see it/them? |
| Error %d of %d: |
| %s |
| You have the latest version. |
| New version %s was released. |
| &Parameter value: |
| '%s' command parameters |
| URL: %s Protocol |
| Connecting... |
| Query |
| Error |
| Prompt |
| Waiting... |
| Ta&r/GZip... |
| &Archive Name: |
| &UnTar/GZip... |
| &Extract to directory: |
| &Grep... |
| &Search for pattern: |
| %d Reading directory |
| Listing... |
| &Upgrade |
| Transfer settings preset '%s' was automatically selected. |
| Returned back to transfer settings preset '%s'. |
| Returned back to default transfer settings. |
| Autoselection rule: |
| %s |
| Ad Hoc |
| Suspended |
| &Internal editor |
| Application launched to open file '%s' was closed too early. If it was not closed by you, it may have happened because the application opens multiple files in one window (process). Additional launched instances of the application then just sends the new file to existing instance of application and closes itself immediately. WinSCP can support this kind of applications as external editor only. |
|
| If you want to use the application to open files from WinSCP, consider configuring it as an external editor. |
| Edit (external)|Edit selected file(s) using external editor '%s' |
| * matches any number of characters. |
| ? matches exactly one character. |
| [abc] matches one character from the set. |
| [a-z] matches one character from the range. |
| Example: *.html; photo??.png |
| Mask can be extended with path mask. |
| Example: */public_html/*.html |
| Patterns: |
| !! expands to exclamation mark |
| ! expands to file name |
| !& expands to list of selected files (quoted, space-delimited) |
| !/ expands to current remote path |
| !S expands to current session URL |
| !@ expands to current session hostname |
| !U expands to current session username |
| !P expands to current session password |
| !# expands to current session port number |
| !N expands to current session name |
| !?prompt[\]?default! expands to user-entered value with given prompt and default (optional \ avoids escaping) |
| !`command` expands to output of local command |
|
| Local command patterns: |
| !^! expands to file name from local panel |
|
| Example: |
| grep "!?Pattern:?!" !& |
| All background transfers were finished. Connection was closed. |
| Reading of remote directory was cancelled. |
| Synchronized browsing was turned %s.|on|off |
| Showing of hidden files was turned %s.|on|off |
| Automatic refresh of remote directory after operation was turned %s.|on|off |
| Background transfer requires your attention. |
| Transfer queue is empty. |
| !Y year |
| !M month |
| !D day |
| !T time |
| !P process ID |
| !@ hostname |
| !S session name |
| Example: C:\!S!T.log |
| Passive mode must be enabled when FTP connection through proxy is selected. |
| Check for application updates is temporarily disabled. Please try again later. |
| &Go To |
| What's New |
| Operation was completed |
| &Print |
| &Associated application |
| On |
| Off |
| Auto |
| **Master password successfully set.** |
|
| Your stored passwords are secured by AES cipher now. |
| Master password successfully changed. |
| **You have deleted your master password.** |
|
| Your stored passwords are not secured now. |
| Master password: |
| Will check again on: %s |
| Recent Sites |
| Masks are separated by semicolon or comma. |
| Place exclude masks after pipe. |
| Mask ending with slash selects directories. |
| >size matches file larger than size |
| <size matches file smaller than size |
| >yyyy-mm-dd matches file modified after the date |
| <yyyy-mm-dd matches file modified before the date |
| Example: *.zip>1G; <2012-01-21 |
| See help for more options. |
| UTF-8 |
| Following usage statistics data is anonymously sent to WinSCP team. |
|
| Over the time other metrics can be collected, please come back later to check or consult Help. |
| There is no matching usage statistics data collected yet. Please try again later or consult Help. |
| Opens site folder '%s' |
| Opens workspace '%s' |
| Recent Workspaces |
| My Workspace |
| Workspace '%s' will be automatically saved. |
| Workspace: %s |
| **Transfer confirmation turned off** |
|
| You have opted not to see the Transfer options dialog the next time. Click here to undo. |
| Presets |
| Completed |
| %s |
|
| There were some errors when encrypting passwords using new master password or decrypting passwords. |
| WinSCP is a popular free SFTP and FTP client for Windows, a powerful file manager that will improve your productivity. It supports also local-local mode and FTPS, S3, SCP and WebDAV protocols. Power users can automate WinSCP using .NET assembly. |
| Loading... |
| %s |
|
| Click here, to see what is new. |
| %d Resolving links and Reading directory |
| Cannot display |
| Usage: |
| Name of site or direct session specification. |
| Open session in new window, even if %APP% is running already. |
| Opens remote file in internal editor. |
| Synchronizes content of two directories. |
| Starts Keep remote directory up to date function. |
| Starts operation without showing options dialog. |
| Console (text) mode. Default mode, when invoked using %APP%.com. |
| Executes batch script file. If the script does not end with 'exit' command, normal interactive mode follows. |
| Executes list of script commands. |
| Passes list of parameters to script. |
| Path to configuration INI-file. |
| Configures any settings using a raw format as in an INI file. |
| Updates settings of sites matching a mask using a raw format as in an INI file. |
| Turns on session logging to file. |
| Logging level (0..2), add * to enable password logging. |
| Turns on XML logging to file. |
| Group all XML log elements belonging to the same command. |
| SSH private key file. |
| Fingerprint of server SSH host key. |
| TLS/SSL client certificate file. |
| Passive mode (FTP protocol only). |
| Implicit TLS/SSL (FTP protocol only). |
| Explicit TLS/SSL (FTP protocol only). |
| Server response timeout. |
| Configures any session settings using a raw format as in an INI file. |
| Queries application homepage for updates. |
| Prints this usage. |
| Converts private key to .ppk format or edits key. Use %s to specify output file. Use %s to change or set passphrase. Use %s to change or set comment. Use %s to add certificate. |
| Enter passphrase to save key: |
| Re-enter passphrase to verify: |
| Key saved to "%s". |
| Fingerprint of server TLS/SSL certificate (FTPS protocol only). |
| Gives a name to the session |
| Reloads remote panel of all running instances of WinSCP. If session (and optionally a path) is specified, refreshes only the instances with that session (and path). |
| Enables log rotation and optionally deleting of old logs. |
| Password has been changed. |
| Open &Target Folder |
| Open &Downloaded File |
| **Encryption key was generated.** |
|
| You should safely backup the generated encryption key. If you lose it, you won't be able to read your encrypted files. |
| Open location profile "%s".|Local directory: |
| %s|Remote directory: |
| %s |
| Prints list of supported ciphers and algorithms. |
| Configures any transfer settings using a raw format as in an INI file. |
| !E expands to serialized connection data of current session |
| A passphrase for an encrypted private key or a client certificate |
| Press 'No' to enable automatic saving of the workspace. |
| Selects the specified file in file panel(s). |
| **Edit terminal settings in PuTTY.** |
|
| PuTTY will be started. Edit terminal settings of a temporary site %s. WinSCP will remember these settings after you close PuTTY. |
| Terminal settings for %s |
| An alternative way to provide a username |
| An alternative way to provide a password |
| All prompts are automatically cancelled |
| Allows streaming files to stdout (and redirects status output to stderr) |
| Allows streaming files from stdin |
| Deleting... |
| Thanks for buying WinSCP. |
| Learn about transitioning from classic installation. |
| Dismiss |
| Read all passwords from files |
| Your version: %s |
| WIN_FORMS_STRINGS |
| %s file '%s' to %s: |
| %s %d files to %s: |
| local directory |
| remote directory |
| Move |
| drop target |
| Deleting |
| Setting properties |
| Temporary directory |
| New folder |
| Deselect |
| Select |
| %d file |
| %d files |
| %d folder |
| %d folders |
| %d symbolic link |
| %d symbolic links |
| %s Properties |
| %s, ... Properties |
| Enter valid group name. |
| Enter valid owner name. |
| Back to %s |
| Forward to %s |
| Connection time |
| Compression (%s) |
| File selection info |
| Open site '%s' (hold down Shift to open site in new window) |
| %s license |
| Open directory |
| Manage bookmarks |
| Line: %d/%d |
| Column: %d |
| Character: %d (0x%.2x) |
| Modified |
| Could not find the string '%s'. |
| Total replacements performed: %d |
| Go to line |
| Line number: |
| Invalid line number. |
| Edit link/shortcut |
| Add link/shortcut |
| Not connected |
| Connecting... |
| Select tab '%s' |
| Add Location Profile |
| Location Profile name: |
| Move Location Profile |
| New folder name: |
| Save session as site |
| &Site name: |
| Save &password (not recommended) |
| Executing custom command |
| %s, %d pt |
| The Quick Brown Fox Jumps Over The Lazy Dog |
| Unknown |
| Calculating directory size |
| General configuration |
| Sites |
| Caches |
| Configuration INI file |
| Random seed file |
| Select local directory. |
| Moving |
| Move |
| Keep remote directory up to date |
| Keeping remote directory up to date ... |
| Temporary folders |
| New file |
| Edit file |
| &Enter file name: |
| Duplicate file '%s' to remote directory: |
| Duplicate %d files to remote directory: |
| Duplicate |
| Copying |
| Add Custom Command |
| Edit Custom Command |
| L |
| R |
| Get &More... |
| Select editor application. |
| Executable files (*.exe)|*.exe|All files (*.*)|*.* |
| %s of %s in %s of %s |
| Add transfer settings preset |
| Edit transfer settings preset |
| &Default |
| &Configure... |
| Custo&m... |
| Custom Command |
| Add editor |
| Edit editor |
| %s, Based on %s version %s |
| &Open |
| Same si&ze only |
| Number of Licenses: %s|Unlimited |
| Product ID: %s |
| %s (Expiration on %s) |
| %s Educational License |
| Getting properties |
| SSH implementation |
| Encryption algorithm |
| Compression |
| File transfer protocol |
| Can change permissions |
| Can change owner/group |
| Can execute arbitrary command |
| Can create symbolic/hard link |
| Can lookup user groups |
| Can duplicate remote files |
| Native text (ASCII) mode transfers |
| Can check available space |
| Total bytes on device |
| Free bytes on device |
| Total bytes for user |
| Free bytes for user |
| Bytes per allocation unit |
| Unknown |
| Find PuTTY/Terminal client executable. |
| PuTTY/Terminal client executable|%s|Executable files (*.exe)|*.exe|All files (*.*)|*.* |
| %s of %s|N/A |
| Comparing |
| Synchronizing |
| Authentication Banner |
| INI files (*.ini)|*.ini|All files (*.*)|*.* |
| Select file to export configuration to |
| &Last: %s |
| &Last |
| Calculating file checksum |
| Can calculate file checksum |
| Unknown |
| Protocol in use |
| Insecure connection |
| Secure connection (%s) |
| Protocol commands only |
| Remote system |
| Cryptographic protocol |
| My documents |
| Desktop |
| Command |
| &Set as Default |
| Select local proxy application |
| Patterns: |
| \n for new line |
| \r for carriage return |
| \t for tab |
| \xXX for any hex ascii code |
| \\ for backslash |
| %host expands to hostname |
| %port expands to port number |
| %user expands to proxy username |
| %pass expands to proxy password |
| %% for percent sign |
| Site folder or workspace with name '%s' already exists. |
| Are you sure you want to delete site folder '%s' with %d site(s)? |
| Cannot delete special site '%s'. |
| Create Site Folder |
| New folder name: |
| How to purchase a license... |
| Target remote &path: |
| **Do you want to open a separate shell session to duplicate the %s?** |
|
| Current session does not support direct duplication of remote %s. A separate shell session may be opened to process the duplication. Alternatively you may duplicate the %s via local temporary copy. |
| file(s)|directory(ies) |
| Editor |
| %s hidden |
| %s filtered |
| Filter |
| Current session allows changing ownership by UID only. It was not possible to resolve UID from account name "%s". Specify UID explicitly instead. |
| Transfer in &background |
| %s (add to transfer queue) |
| None |
| Select keyboard shortcut |
| &Keyboard shortcut: |
| Unlimited |
| Master password |
| &Current master password: |
| &New master password: |
| &Re-enter master password: |
| Save &password (protected by master password) |
| Searching in %s |
| Find |
| Finding ... |
| Done. |
| Aborted. |
| &Start |
| &Stop |
| Save &password |
| Cancelling... |
| Encoding: %s |
| File was modified. Changes will be lost, if file is reloaded using different encoding. Continue? |
| Are you sure you want to delete workspace '%s' with %d session(s)? |
| Save workspace as |
| &Save workspace as: |
| Save &passwords (not recommended) |
| Save &passwords (protected by master password) |
| Save &passwords |
| Open workspace '%s' (hold down Shift to open workspace in new window) |
| &Open This Folder |
| Open site folder '%s' (hold down Shift to open folder in new window) |
| &Create desktop shortcut |
| Enable &automatic saving of this workspace |
| Download |
| Upload |
| Download |
| Upload |
| %s file '%s' to %s and delete original: |
| %s %d files to %s and delete originals: |
| Download and Delete |
| Upload and Delete |
| Queue |
| Import sites |
| Error loading file '%s' using '%s' encoding. |
| Error loading file '%s'. |
| Falling back to '%s' encoding. |
| Select file to import configuration from |
| Search: %s |
| (press Tab for next) |
| Uploading |
| Downloading |
| %d in Queue |
| Patterns: |
| !! expands to exclamation mark |
| !/ expands to current remote path |
| !@ expands to current session hostname |
| !U expands to current session username |
| !P expands to current session password |
| !# expands to current session port number |
| !N expands to current session name |
| !?prompt[\]?default! expands to user-entered value with given prompt and default (optional \ avoids escaping) |
| !`command` expands to output of local command |
| New Site |
| Site Folder |
| Workspace |
| You are editing a site. Do you want to save your changes? |
| &Folder: |
| <none> |
| Shell |
| SCP/Shell |
| Editor |
| Reset session (panel) color to system default |
| &More Colors... |
| Choose any session (panel) color |
| Remo&ve BOM and EOF marks |
| Remo&ve BOM mark |
| License agreements of all following programs (libraries) are part of application license agreement. |
| Display license |
| Toolbar2000 library %s |
| Copyright © Jordan Russell |
| https://jrsoftware.org/tb2kdl.php |
| TBX library %s |
| Copyright © Alex A. Denisov and contributors |
| https://github.com/plashenkov/TBX |
| Filemanager Toolset library Version 2.6 |
| Copyright © Ingo Eckel |
| JEDI Code Library (JCL) %s |
| https://jcl.delphi-jedi.org/ |
| PngComponents 1.9 |
| Copyright © Uwe Raabe and Martijn Saly |
| https://github.com/UweRaabe/PngComponents |
| Saving... |
| {language} translation: |
| Copyright %s |
| File: |
| Path: |
| Locking |
| Unlocking |
| &Default |
| Reset editor color to default |
| Choose any editor color |
| Save converted private key |
| PuTTY Private Key Files (*.ppk)|*.ppk|All files (*.*)|*.* |
| Private key was converted and saved to '%s'. |
| Generate file URL |
| Generate session URL/code |
| URL |
| Script |
| Code |
| Your command %d |
| Tip %d of %d |
| Tips |
| Execute custom command '%s' as '%s' |
| Command-line arguments |
| Command-line arguments for %s |
| A server host key is not known. Please connect at least once, before generating the code. |
| C:\writable\path\to\log\ |
| Generate &Code... |
| Generate transfer code |
| Execute the script using a command like: |
| C:\path\to\script\script.txt |
| Your code |
| Set up transfer options |
| Transfer files |
| A sample file list is used only, consider using a file mask to select files for the transfer. |
| Check for Updates |
| Add Extension |
| Enter URL or path to the &extension: |
| Browse... |
| Select '%s' |
| &Pause at the end |
| &Session log file: |
| Select file for session log |
| Session log files (*.log)|*.log|All files (*.*)|*.* |
| Usage Statistics |
| &Filter: |
| &Copy to Clipboard |
| Host: %s |
| Host key: %s |
| &Copy |
| Select &All |
| &Keyboard shortcut: |
| General |
| Connected |
| Connected with %s. Waiting for welcome message... |
| Connected with %s, negotiating TLS connection... |
| Connecting to %s ... |
| Directory listing successful |
| Disconnected from server |
| Starting download of %s |
| Download successful |
| Trying to access %s through ftp proxy... |
| Retrieving directory listing... |
| TLS connection established. Waiting for welcome message... |
| TLS connection established |
| Starting upload of %s |
| Upload successful |
| Retrieving file information successful |
| Retrieving file information... |
| Could not retrieve file information |
| Could not create socket in the specified port range. |
| Can't establish TLS connection. |
| Could not retrieve directory listing. |
| Can't initialize TLS library. |
| Transfer channel can't be opened. Reason: %s |
| Can't resolve host name "%s". |
| Resume command not supported by server, overwriting file. |
| Resume command not supported by server, but local and remote filesize are equal. |
| Unable to send command. Disconnected. |
| Peer certificate rejected. |
| Download aborted |
| File already exists |
| Proxy requires authentication |
| Required authtype reported by proxy server is unknown or not supported. |
| Can't resolve host of proxy server. |
| Can't connect to proxy server. |
| Proxy request failed, can't connect through proxy server. |
| Timeout detected. |
| Upload aborted |
| Could not set file pointer |
| Unknown error in TLS layer |
| Could not verify TLS certificate |
| 100 |
| Connection with proxy established, performing handshake... |
| control connection |
| data connection |
| WIN_VARIABLE |
| Copyright © 2000–2025 Martin Prikryl |
| https://winscp.net/ |
| https://winscp.net/eng/docs/history |
| https://winscp.net/forum/ |
| https://winscp.net/updates.php |
| https://winscp.net/eng/download.php |
| https://winscp.net/eng/donate.php |
| https://winscp.net/eng/docs/?ver=%s&lang=%s |
| https://winscp.net/eng/docs/%s?ver=%s&lang=%s |
| https://winscp.net/eng/translations.php |
| https://winscp.net/eng/docs/search.php?ver=%s&lang=%s&q=%s |
| https://winscp.net/forum/posting.php?mode=newtopic&ver=%s&lang=%s&report=%s |
| https://winscp.net/eng/upgrade.php |
| https://www.microsoft.com/store/apps/9p0pq8b65n8x?cid=%s |
| https://winscp.net/eng/docs/microsoft_store |
| https://winscp.net/updatenews.php?store_get_img=1 |
| Shell extension is not installed. |
| Shell extension is installed, but is not loaded. |
| Shell extension is installed and loaded. |
| **Public key for pasting into OpenSSH authorized_keys file:** |
| **Install public key to non-OpenSSH server?** |
|
| Installing public key is supported for OpenSSH server only (authorized_keys file). |
|
| Your server is %s. |
| Installing public key "%s"... |
| Select key to install into server |
| PuTTY Private Key Files (*.ppk)|*.ppk|All Private Key Files (*.ppk;*.pem;*.key;id_*)|*.ppk;*.pem;*.key;id_*|All Files (*.*)|*.* |
| Synchronization checklist |
| Read-only |
| Calculating |
| Save as &Preset... |
| Rename tab |
| &New tab name: |
| Synchronization was completed. |
| Files uploaded: %s (%s)|Files downloaded: %s (%s)|Local files deleted: %s|Remote files deleted: %s|Comparison time: %s|Synchronization time: %s |
| Shell extension cannot work on this system. |
| File color |
| To enable automatic updates, please <a href="%DONATE_URL%">donate to WinSCP development</a> or %GET_IMG% WinSCP from <a href="%STORE_URL%">Microsoft Store</a>. |
| New |
| Statistics |
| Raw Site Settings |
| &Add... |
| Add Raw Site Setting |
| &Site Setting: |
| Upload new local file |
| Download new remote file |
| Upload updated local file |
| Download updated remote file |
| Delete obsolete remote file |
| Delete obsolete local file |
| Click to reverse |
| &Local |
| &Remote |
| &Left |
| &Right |
| Copy |
| Move |
| Open |
| Login |
| Click to open new local tab. |
| Hold down Ctrl key to open new remote tab. |
| Click to open new session in new remote tab. |
| Hold down Shift Key to open new session in new window. |
| %s |
| Hold down Ctrl key to open new local tab. |
| %d key file(s) in %d imported session(s) were converted or replaced with existing key(s) in supported format. |
| Can change ACL |
| ACL: |
| &Users |
| &Everyone |
| Read ACL |
| Write ACL |
| General |
| Needed for PowerShell 7.3 and newer |
| -- warn below here -- |
| 3DES |
| Blowfish |
| AES |
| DES |
| Arcfour |
| ChaCha20 |
| AES-GCM |
| -- warn below here -- |
| Diffie-Hellman group 1 (1024-bit) |
| Diffie-Hellman group 14 (2048-bit) |
| Diffie-Hellman group 15 (3072-bit) |
| Diffie-Hellman group 16 (4096-bit) |
| Diffie-Hellman group 17 (6144-bit) |
| Diffie-Hellman group 18 (8192-bit) |
| Diffie-Hellman group exchange |
| RSA-based key exchange |
| ECDH key exchange |
| NTRU Prime / Curve25519 hybrid kex |
| ML-KEM / Curve25519 hybrid kex |
| ML-KEM / NIST ECDH hybrid kex |
| **This key contains an OpenSSH certificate.** |
| It is not supposed to be added to OpenSSH authorized_keys file. |
| Matching certificate was detected in '%s' and added to the converted key file. |
| Edit trusted host certificate authority |
| Add trusted host certificate authority |
| &Name: |
| Public &key: |
| Valid &hosts this key is trusted to certify: |
| B&rowse... |
| No public key specified. |
| Select public key file of certification authority |
| Public key files (*.pub)|*.pub|All Files (*.*)|*.* |
| Unable to load public key from '%s' |
| Signature types (RSA keys only): |
| SHA-&1|SHA-&256|SHA-&512 |
| No validity expression configured. |
| Error in validity expression. |
| **Stop showing Login dialog automatically?** Please confirm if you really want to WinSCP stop showing Login dialog automatically on startup and when the last session is closed. |
|
| If you change your mind later, you can revert this in Preferences on Environment > Window page. |
|
| To open the Login dialog manually, go to Tabs > New Tab [> Remote Tab] or use corresponding toolbar button. |
| Select file to import sites from |
| (start typing) |
| Search |
| No search results found. |
| Edit tag |
| Add tag |
| &Key: |
| &Value (optional): |
| !K expands to current session private key path |
| !\ expands to current local path |
| Installs your public key in a server's authorized_keys. |
| an unnamed file |
| An unsupported operation was attempted. |
| A required resource was unavailable. |
| Out of memory. |
| An unknown error has occurred. |
| No error occurred. |
| An unknown error occurred while accessing %1. |
| %1 was not found. |
| %1 contains an invalid path. |
| %1 could not be opened because there are too many open files. |
| Access to %1 was denied. |
| An invalid file handle was associated with %1. |
| %1 could not be removed because it is the current directory. |
| %1 could not be created because the directory is full. |
| Seek failed on %1 |
| A hardware I/O error was reported while accessing %1. |
| A sharing violation occurred while accessing %1. |
| A locking violation occurred while accessing %1. |
| Disk full while accessing %1. |
| An attempt was made to access %1 past its end. |
| Invalid hour offset: %d |
| Invalid duration string: %s |
| Hour Offset portion of time invalid |
| Invalid decimal string: ''%s'' |
| Cannot convert scientific notation to TBcd value |
| Cannot convert NAN to TBcd value |
| Invalid Bcd Precision (%d) or Scale (%d) |
| Cannot convert to TBcd: string has more than 64 digits: %s |
| %s is not a valid hex string |
| Unsuppported variant type %d |
| varDispatch type not supported |
| varError type not supported |
| BCD overflow |
| %s is not a valid BCD value |
| %s only supports sinking of method calls! |
| Attempting to hook child windows twice |
| Save the current file? |
| Operation not supported by Edge WebView2 control |
| Failed to create Edge browser control |
| The underlying WebView2 control is not initialized |
| Internal error: data type kind %s cannot be converted to and from text |
| Invokable Class %s implements no interfaces |
| Type cannot be cast as Variant |
| Interface %s has no RTTI |
| Parameter %s on Method %s of Interface %s has no RTTI |
| Invalid date string: %s |
| Invalid time string: %s |
| Invalid minute: %d |
| Invalid millisecond: %d |
| Invalid fractional second: %f |
| 3rd-level cache: 4 MByte, 16-way set associative, 64 byte line size |
| 3rd-level cache: 8 MByte, 16-way set associative, 64 byte line size |
| 3rd-level cache: 12 MByte, 24-way set associative, 64 byte line size |
| 3rd-level cache: 18 MByte, 24-way set associative, 64 byte line size |
| 3rd-level cache: 24 MByte, 24-way set associative, 64 byte line size |
| 64-Byte Prefetching |
| 128-Byte Prefetching |
| CPUID leaf 2 does not report cache descriptor information, use CPUID leaf 4 to query cache parameters |
| Invalid MMF name "%s" |
| The MMF named "%s" cannot be created empty |
| Win32 error: %s (%u)%s%s |
| Library not found: %s |
| Function not found: %s.%s |
| No page loaded |
| Cannot register a nil provider |
| Invalid service provider GUID |
| Instruction TLB: 4 KByte pages, 4-way set associative, 64 entries |
| Data TLB: 4 KByte pages, 4-way set associative, 128 entries |
| Data TLB1: 4 KByte pages, 4-way set associative, 256 entries |
| Data TLB1: 4 KByte pages, 4-way set associative, 64 entries |
| Data TLB: 4 KByte and 4 MByte pages, 4-way set associative, 8 entries |
| Shared 2nd-Level TLB: 4 KByte pages, 4-way associative, 512 entries |
| 3rd-level cache: 512 KByte, 4-way set associative, 64 byte line size |
| 3rd-level cache: 1 MByte, 4-way set associative, 64 byte line size |
| 3rd-level cache: 2 MByte, 4-way set associative, 64 byte line size |
| 3rd-level cache: 1 MByte, 8-way set associative, 64 byte line size |
| 3rd-level cache: 2 MByte, 8-way set associative, 64 byte line size |
| 3rd-level cache: 4 MByte, 8-way set associative, 64 byte line size |
| 3rd-level cache: 1.5 MByte, 12-way set associative, 64 byte line size |
| 3rd-level cache: 3 MByte, 12-way set associative, 64 byte line size |
| 3rd-level cache: 6 MByte, 12-way set associative, 64 byte line size |
| 3rd-level cache: 2 MByte, 16-way set associative, 64 byte line size |
| 2nd-level cache: 1 MBytes, 4-way set associative, 64 bytes line size |
| 2nd-level cache: 128 KBytes, 8-way set associative, 64 bytes line size, 2 lines per sector |
| 2nd-level cache: 256 KBytes, 8-way set associative, 64 bytes line size, 2 lines per sector |
| 2nd-level cache: 512 KBytes, 8-way set associative, 64 bytes line size, 2 lines per sector |
| 2nd-level cache: 1 MBytes, 8-way set associative, 64 bytes line size, 2 lines per sector |
| 2nd-level cache: 2 MBytes, 8-way set associative, 64 byte line size |
| 2nd-level cache: 512 KBytes, 2-way set associative, 64 byte line size |
| 2nd-level cache: 512 KBytes, 8-way set associative, 64 byte line size |
| 2nd-level cache: 256 KBytes, 8-way associative, 32 byte line size |
| 2nd-level cache: 512 KBytes, 8-way associative, 32 byte line size |
| 2nd-level cache: 1 MBytes, 8-way associative, 32 byte line size |
| 2nd-level cache: 2 MBytes, 8-way associative, 32 byte line size |
| 2nd-level cache: 512 KByte, 4-way set associative, 64 byte line size |
| 2nd-level cache: 1 MByte, 8-way set associative, 64 byte line size |
| Instruction TLB: 4 KByte pages, 4-way set associative, 128 entries |
| Instruction TLB: 2 MByte pages, 4-way, 8 entries or 4 MByte pages, 4-way, 4 entries |
| Data TLB0: 4 MByte pages, 4-way set associative, 16 entries |
| Data TLB0: 4 KByte pages, 4-way associative, 16 entries |
| Data TLB0: 4 KByte pages, fully associative, 16 entries |
| Data TLB0: 2 MByte or 4 MByte pages, 4-way set associative, 32 entries |
| Data TLB: 4 KByte and 4 MByte pages, 64 Entries |
| Data TLB: 4 KByte and 4 MByte pages, 128 Entries |
| Data TLB: 4 KByte and 4 MByte pages, 256 Entries |
| 1st-level data cache: 16 KByte, 8-way set associative, 64 byte line size |
| 1st-level data cache: 8 KBytes, 4-way set associative, 64 byte line size |
| 1st-level data cache: 16 KBytes, 4-way set associative, 64 byte line size |
| 1st-level data cache: 32 KBytes, 4-way set associative, 64 byte line size |
| Trace cache: 12 K-Ops, 8-way set associative |
| Trace cache: 16 K-Ops, 8-way set associative |
| Trace cache: 32 K-Ops, 8-way set associative |
| Trace cache: 64 K-Ops, 8-way set associative |
| Instruction TLB: 2M/4M pages, fully associative, 8 entries |
| 2nd-level cache: 1 MBytes, 4-way set associative, 32 byte line size |
| 2nd-level cache: 2 MBytes, 4-way set associative, 32 byte line size |
| 3rd-level cache: 4 MBytes, 4-way set associative, 64 byte line size |
| 3rd-level cache: 8 MBytes, 4-way set associative, 64 byte line size |
| 3rd-level cache: 8 MByte, 8-way set associative, 64 byte line size |
| 2nd-level cache: 4 MBytes, 16-way set associative, 64 byte line size |
| 3rd-level cache: 6MByte, 12-way set associative, 64 byte line size |
| 3rd-level cache: 8MByte, 16-way set associative, 64 byte line size |
| 3rd-level cache: 12MByte, 12-way set associative, 64 byte line size |
| 3rd-level cache: 16MByte, 16-way set associative, 64 byte line size |
| 2nd-level cache: 6MByte, 24-way set associative, 64 byte line size |
| Instruction TLB: 4 KByte pages, 32 Entries |
| Instruction TLB: 4 KByte and 2 MByte or 4 MByte pages, 64 Entries |
| Instruction TLB: 4 KByte and 2 MByte or 4 MByte pages, 128 Entries |
| Instruction TLB: 4 KByte and 2 MByte or 4 MByte pages, 256 Entries |
| Instruction TLB: 2-MByte or 4-MByte pages, fully associative, 7 entries |
| 3rd level cache: 512 KBytes, 4-way set associative, 64 byte line size, 2 lines per sector |
| 3rd level cache: 1 MBytes, 8-way set associative, 64 byte line size, 2 lines per sector |
| 3rd level cache: 2 MBytes, 8-way set associative, 64 byte line size, 2 lines per sector |
| 3rd level cache: 4 MBytes, 8-way set associative, 64 byte line size, 2 lines per sector |
| 1st level data cache: 32 KBytes, 8-way set associative, 64 byte line size |
| 1st level instruction cache: 32 KBytes, 8-way set associative, 64 byte line size |
| 2nd-level cache: 128 KBytes, 4-way set associative, sectored cache, 64-byte line size |
| 2nd-level cache: 192 KBytes, 6-way set associative, sectored cache, 64-byte line size |
| 2nd-level cache: 128 KBytes, 2-way set associative, sectored cache, 64-byte line size |
| 2nd-level cache: 256 KBytes, 4-way set associative, sectored cache, 64-byte line size |
| 2nd-level cache: 384 KBytes, 6-way set associative, sectored cache, 64-byte line size |
| 2nd-level cache: 512 KBytes, 4-way set associative, sectored cache, 64-byte line size |
| No 2nd-level cache or, if processor contains a valid 2nd-level cache, no 3rd-level cache |
| 2nd-level cache: 128 KBytes, 4-way set associative, 32 byte line size |
| 2nd-level cache: 256 KBytes, 4-way set associative, 32 byte line size |
| 2nd-level cache: 512 KBytes, 4-way set associative, 32 byte line size |
| Failed to open mutex |
| Null descriptor |
| Instruction TLB: 4 KByte pages, 4-way set associative, 32 entries |
| Instruction TLB: 4 MByte pages, 4-way set associative, 2 entries |
| Data TLB: 4 KByte pages, 4-way set associative, 64 entries |
| Data TLB: 4 MByte pages, 4-way set associative, 8 entries |
| Data TLB1: 4 MByte pages, 4-way set associative, 32 entries |
| 1st level instruction cache: 8 KBytes, 4-way set associative, 32 byte line size |
| 1st level instruction cache: 16 KBytes, 4-way set associative, 32 byte line size |
| 1st level instruction cache: 32 KBytes, 4-way set associative, 64 byte line size |
| 1st level data cache: 8 KBytes, 2-way set associative, 32 byte line size |
| Instruction TLB: 4 MByte pages, 4-way set associative, 4 entries |
| 1st level data cache: 16 KBytes, 4-way set associative, 32 byte line size |
| 1st level data cache: 16 KBytes, 4-way set associative, 64 byte line size |
| 1st level data cache: 24 KBytes, 6-way set associative, 64 byte line size |
| 2nd level cache: 256 KBytes, 8-way set associative, 64 byte line size |
| Executable |
| Package |
| Library |
| NeverBuild |
| DesignOnly |
| RunOnly |
| IgnoreDupUnits |
| Delphi 3 or C++ Builder 3 |
| Undefined |
| C++ Builder 4 or later |
| Delphi 4 or later |
| Main |
| Weak |
| OrgWeak |
| Implicit |
| Failed to create mutex |
| Unknown |
| Native |
| GUI |
| Console |
| OS/2 |
| Posix |
| Reserved 8 |
| UNKNOWN |
| COFF |
| CODEVIEW |
| FPO |
| MISC |
| EXCEPTION |
| FIXUP |
| OMAP_TO_SRC |
| OMAP_FROM_SRC |
| ARM Little-Endian |
| THUMB |
| AM33 |
| IBM PowerPC Little-Endian |
| IBM PowerPC FP |
| Intel 64 |
| MIPS16 |
| ALPHA64 |
| MIPSFPU |
| MIPSFPU16 |
| Infineon |
| CEF |
| EFI Byte Code |
| AMD64 (K8) |
| M32R little-endian |
| CEE |
| ProcessAffinityMask |
| CSDVersion |
| Reserved |
| EditList |
| Unknown |
| Intel 386 |
| MIPS little-endian R3000 |
| MIPS little-endian R4000 |
| MIPS little-endian R10000 |
| MIPS little-endian WCE v2 |
| Alpha_AXP |
| SH3 little-endian |
| SH3 DSP |
| SH3E little-endian |
| SH4 little-endian |
| SH5 |
| Size of Stack Reserve |
| Size of Stack Commit |
| Size of Heap Reserve |
| Size of Heap Commit |
| Loader Flags |
| Number of RVA |
| Version |
| GlobalFlagsClear |
| GlobalFlagsSet |
| CriticalSectionDefaultTimeout |
| DeCommitFreeBlockThreshold |
| DeCommitTotalFreeThreshold |
| LockPrefixTable |
| MaximumAllocationSize |
| VirtualMemoryThreshold |
| ProcessHeapFlags |
| Size of Uninitialized Data |
| Address of Entry Point |
| Base of Code |
| Base of Data |
| Image Base |
| Section Alignment |
| File Alignment |
| Operating System Version |
| Image Version |
| Subsystem Version |
| Win32 Version |
| Size of Image |
| Size of Headers |
| CheckSum |
| Subsystem |
| Dll Characteristics |
| IAT |
| Delay load import |
| COM run-time |
| reserved [%.2d] |
| Signature |
| Machine |
| Number of Sections |
| Time Date Stamp |
| Symbols Pointer |
| Number of Symbols |
| Size of Optional Header |
| Characteristics |
| Magic |
| Linker Version |
| Size of Code |
| Size of Initialized Data |
| Unknown PE target |
| Not a resource directory |
| Feature is not available for attached images |
| Section "%s" not found |
| Exports |
| Imports |
| Resources |
| Exceptions |
| Security |
| Base Relocations |
| Debug |
| Description |
| Machine Value |
| TLS |
| Load configuration |
| Bound Import |
| Failed to get ANSI replacement character |
| This Windows version is not supported |
| The window with handle %d is not valid |
| The process with ID %d is not valid |
| The module with handle %d is not valid |
| File contains no version information |
| The file %s does not exist |
| Illegal language index |
| No value was supplied |
| The value %s was not found. |
| Failed to create FileMapping |
| Failed to create FileMappingView |
| Failed to obtain size of file |
| Stream is read-only |
| Cannot open file "%s" |
| This is not a PE format |
| This "Portable Network Graphics" image contains an unknown critical part which could not be decoded. |
| This "Portable Network Graphics" image is encoded with an unknown compression scheme which could not be decoded. |
| This "Portable Network Graphics" image uses an unknown interlace scheme which could not be decoded. |
| This "Portable Network Graphics" image uses an unknown color type which could not be decoded. |
| The chunks must be compatible to be assigned. |
| This "Portable Network Graphics" image is invalid because the decoder found an unexpected end of the file. |
| This "Portable Network Graphics" image contains no data. |
| The program tried to add a existent critical chunk to the current image which is not allowed. |
| It's not allowed to add a new chunk because the current image is invalid. |
| The png image could not be loaded from the resource ID. |
| Some operation could not be performed because the system is out of resources. Close some windows and try again. |
| Setting bit transparency color is not allowed for png images containing alpha value for each pixel (COLOR_RGBALPHA and COLOR_GRAYSCALEALPHA) |
| This operation is not valid because the current image contains no valid header. |
| The new size provided for image resizing is invalid. |
| The "Portable Network Graphics" could not be created because invalid image type parameters have being provided. |
| The "Portable Network Graphics" image could not be loaded because it uses an invalid image bit depth. |
| Element "%s" does not contain a single text node |
| DOM Implementation does not support IDOMParseOptions |
| ItemTag property is not initialized |
| Node is readonly |
| Refresh is only supported if the FileName or XML properties are set |
| FileName cannot be blank |
| Line |
| This "Portable Network Graphics" image is not valid because it contains invalid pieces of data (crc error) |
| The "Portable Network Graphics" image could not be loaded because one of its main piece of data (ihdr) might be corrupted |
| This "Portable Network Graphics" image is invalid because it has missing image parts. |
| Could not decompress the image because it contains invalid compressed data. |
| Description: |
| The "Portable Network Graphics" image contains an invalid palette. |
| The file being read is not a valid "Portable Network Graphics" image because it contains an invalid header. This file may be corrupted, try obtaining it again |
| This "Portable Network Graphics" image is not supported or it might be invalid. |
| (IHDR chunk is not the first) |
| This "Portable Network Graphics" image is not supported because either its width or height exceeds the maximum size of 65535 pixels. |
| There is no such palette entry. |
| Cannot change Position of a TTBDock if it already contains controls |
| Cannot save dockable window's position because Name property is not set |
| Cannot save dockable window's position because DockedTo's Name property not set |
| "%s" DOMImplementation already registered |
| No matching DOM Vendor: "%s" |
| Selected DOM Vendor does not support this property or method |
| Property or Method "%s" is not supported by DOM Vendor "%s" |
| No selected DOM Vendor |
| Node cannot be null |
| Microsoft MSXML is not installed |
| No active document |
| Node "%s" not found |
| IDOMNode required |
| Attributes are not supported on this node type |
| Invalid node type |
| Mismatched paramaters to RegisterChildNodes |
| Ext |
| %s is a invalid drive letter. |
| Rights |
| Owner |
| Group |
| Link target |
| Type |
| &Copy Here |
| &Move Here |
| &Shortcut(s) Create Here |
| &Abort |
| Toolbar item index out of range |
| Toolbar item already inserted |
| An item viewer associated the specified item could not be found |
| More Buttons| |
| A TTBDock control cannot be placed inside a tool window or another TTBDock |
| Can't rename file or directory: |
| File already exists: |
| Filename contains invalid characters: |
| File %s |
| %u Files |
| %u Directories |
| Parent directory |
| DragDrop Error: %d |
| Drive '%s:' is not ready. |
| Directory '%s' doesn't exist. |
| / <root> |
| Name |
| Size |
| Type |
| Changed |
| Attr |
| Failed to set calendar min/max range |
| Failed to set calendar selected range |
| '%s' is not a valid property value |
| OLE control activation failed |
| Could not obtain OLE control window handle |
| License information for %s is invalid |
| License information for %s not found. You cannot use this control in design mode |
| Unable to retrieve a pointer to a running object registered with OLE for %s/%s |
| Browse |
| All files (*.*)|*.* |
| Invalid file name - %s |
| Can't find any valid path. |
| B |
| KB |
| MB |
| GB |
| Invalid item level assignment |
| Invalid level (%d) for item "%s" |
| Invalid index |
| Unable to insert an item |
| Invalid owner |
| RichEdit line insertion error |
| Failed to Load Stream |
| Failed to Save Stream |
| %s is already associated with %s |
| %d is an invalid PageIndex value. PageIndex must be between 0 and %d |
| This control requires version 4.70 or greater of COMCTL32.DLL |
| Date exceeds maximum of %s |
| Date is less than minimum of %s |
| You must be in ShowCheckbox mode to set to this date |
| Failed to set calendar date or time |
| Failed to set maximum selection range |
| Invalid style format |
| Class '%s' is already registered for '%s' |
| Class '%s' is not registered for '%s' |
| %s parameter cannot be nil |
| Feature not supported by this style |
| Style '%s' is not registered |
| Cannot unregister the system style |
| Style not registered |
| Cannot call BeginInvoke on a control with no parent or window handle |
| Failed to clear tab control |
| Failed to delete tab at index %d |
| Failed to retrieve tab at index %d |
| Failed to get object at index %d |
| Failed to set tab "%s" at index %d |
| Failed to set object at index %d |
| MultiLine must be True when TabPosition is tpLeft or tpRight |
| Cannot remove shell notification icon |
| PageControl must first be assigned |
| %s requires Windows Vista or later |
| Button%d |
| RadioButton%d |
| Caption cannot be empty |
| CategoryPanel must have a CategoryPanelGroup as its parent |
| Only CategoryPanels can be inserted into a CategoryPanelGroup |
| No help keyword specified. |
| Unable to load style '%s' |
| Unable to load styles: %s |
| Style '%s' already registered |
| Style class '%s' already registered |
| Style '%s' not found |
| Style class '%s' not found |
| Invalid style handle |
| Prompt array must not be empty |
| &Username |
| &Password |
| &Domain |
| Login |
| Separator |
| Error setting %s.Count |
| Listbox (%s) style must be virtual in order to set Count |
| No OnGetItem event handler assigned |
| "%s" is an invalid path |
| ANSI |
| ASCII |
| Unicode |
| Big Endian Unicode |
| UTF-8 |
| UTF-7 |
| Clipboard does not support Icons |
| Cannot open clipboard: %s |
| Text exceeds memo capacity |
| Operation not supported on selected printer |
| There is no default printer currently selected |
| Menu '%s' is already being used by another form |
| Picture: |
| (%dx%d) |
| Preview |
| Docked control must have a name |
| Error removing control from dock tree |
| - Dock zone not found |
| - Dock zone has no control |
| Error loading dock zone from the stream. Expecting version %d, but found %d. |
| Multiselect mode must be on for this feature |
| Length of value array must be >= length of prompt array |
| End |
| Home |
| Left |
| Up |
| Right |
| Down |
| Ins |
| Del |
| Shift+ |
| Ctrl+ |
| Alt+ |
| (None) |
| Value must be between %d and %d |
| All |
| Unable to insert a line |
| Invalid clipboard format |
| Cancel |
| &Help |
| &Abort |
| &Retry |
| &Ignore |
| &All |
| N&o to All |
| Yes to &All |
| &Close |
| BkSp |
| Tab |
| Esc |
| Enter |
| Space |
| PgUp |
| PgDn |
| TIFF Images |
| Grid too large for operation |
| Too many rows or columns deleted |
| Grid index out of range |
| Fixed column count must be less than column count |
| Fixed row count must be less than row count |
| Cannot insert or delete rows from grid |
| Invalid input value |
| Invalid input value. Use escape key to abandon changes |
| Warning |
| Error |
| Information |
| Confirm |
| &Yes |
| &No |
| OK |
| Control '%s' is used on a not main thread |
| OK |
| Cancel |
| &Yes |
| &No |
| &Help |
| &Close |
| &Ignore |
| &Retry |
| Abort |
| &All |
| Cannot drag a form |
| Metafiles |
| Enhanced Metafiles |
| Icons |
| Bitmaps |
| %s property out of range |
| Check state can only be set when CheckBoxes is True |
| Check state incompatible with treeview's CheckStyles |
| Menu index out of range |
| Menu inserted twice |
| Sub-menu is not in menu |
| Not enough timers available |
| Printer is not currently printing |
| Printing in progress |
| Printer index out of range |
| Printer selected is not valid |
| %s on %s |
| GroupIndex cannot be less than a previous menu item's GroupIndex |
| Cannot create form. No MDI forms are currently active |
| Can only modify an image if it contains a bitmap |
| A control cannot have itself as its parent |
| Invalid ImageList |
| Unable to Replace Image |
| Unable to Insert Image |
| Invalid ImageList Index |
| Failed to read ImageList data from stream |
| Failed to write ImageList data to stream |
| Error creating window device context |
| Error creating window class |
| Cannot focus a disabled or invisible window |
| Control '%s' has no parent window |
| . Path: |
| %s |
| Parent given is not a parent of '%s' |
| Cannot hide an MDI Child Form |
| Cannot change Visible in OnShow or OnHide |
| Cannot make a visible window modal |
| Scrollbar property out of range |
| Icon image is not valid |
| Metafile is not valid |
| Invalid pixel format |
| Invalid image |
| Scan line index out of range |
| Cannot change the size of an icon |
| Cannot change the size of a WIC Image |
| Invalid operation on TOleGraphic |
| Unknown picture file extension (.%s) |
| Unsupported clipboard format |
| Unsupported stream format |
| Out of system resources |
| Canvas does not allow drawing |
| Text format flag '%s' not supported |
| Invalid image frame index %d: there are %d frames (0-%d) |
| Invalid image size |
| Error reading data: (%d) %s |
| Error setting timeout for the request: (%d) %s |
| Error opening certificate file: (%d) %s |
| Certificate is not found in file: (%d) %s |
| Pair of extension and mime type already exists |
| Mime type cannot be empty |
| Value name cannot be empty |
| Quality weight is out of range |
| OLE error %.8x |
| Method '%s' not supported by automation object |
| Variant does not reference an automation object |
| Dispatch methods do not support more than 64 parameters |
| DCOM not installed |
| Tab position incompatible with current tab style |
| Tab style incompatible with current tab position |
| Bitmap image is not valid |
| Maximum number of redirections (%d) exceeded |
| Error getting Server Certificate |
| Server Certificate Invalid or not present |
| Server Certificate not accepted |
| Empty certificate list |
| Unspecified certificate from client |
| Client rejected the certificate |
| Execution of request terminated with unknown error |
| Error querying headers: (%d) %s |
| Error obtaining session handle |
| Error sending data: (%d) %s |
| Error receiving data: (%d) %s |
| Error connecting to server: %s |
| Error opening request: (%d) %s |
| Error adding header: (%d) %s |
| Error removing header: (%d) %s |
| Path ended with an open bracket |
| Path ended with an open string |
| Invalid index for array: %s |
| Unexpected character while parsing indexer: %s |
| Empty name not allowed in dot notation, use [''] |
| Scheme "%s" already registered for %s |
| Scheme "%s" is not registered |
| Credential without user and password |
| Platform-dependant function not implemented |
| Scheme-dependant function not implemented |
| Method already assigned |
| URL already assigned |
| Parameter index (%d) out of range (%d..%d) |
| Invalid URL: "%s" |
| Parameter "%s" not found |
| Invalid relative URL path: "%s" |
| No token to close. |
| The reader's MaxDepth of %s has been exceeded. |
| Token %s in state %s would result in an invalid JSON object. |
| Unexpected end when reading bytes. |
| Unexpected end when reading date constructor |
| Error reading date. Unexpected token: %s |
| Unexpected token when reading date constructor. Expected EndConstructor, got %s |
| Unexpected token when reading date constructor. Expected Integer, got %s |
| Error reading double. Unexpected token: %s |
| Error reading integer. Unexpected token: %s |
| Unexpected token when reading bytes: %s |
| Error reading string. Unexpected token: %s |
| Unexpected type when writing end: %s |
| Unknown JsonType: %s |
| Unsupported type: %s |
| Unexpected char for root element: . |
| UTF8: Type cannot be determined out of header byte |
| The input value is not a valid JSON |
| . Path '%s', line %d, position %d (offset %d) |
| The nesting level of JSON arrays / objects is greater than %d |
| Value '%s' not found |
| Value %s cannot be added to %s |
| Could not convert string to DateTime: %s |
| Could not convert string to double: %s |
| Could not convert string to integer: %s |
| , line %d, position %d |
| Path '%s' |
| Not a valid close JsonToken: %s |
| An ObjectId must be 12 bytes |
| Invalid state: %s |
| JsonToken %s is not valid for closing JsonType %s. |
| No close token for type %s |
| At least one task in array nil |
| Cannot start a task that has already completed |
| One or more tasks were cancelled |
| One or more errors occurred |
| Must wait on at least one event |
| Cannot call BeginInvoke on a TComponent in the process of destruction |
| A regular expression specified in RegEx is required |
| Error in regular expression at offset %d: %s |
| Error studying the regex: %s |
| Successful match required |
| Strings parameter cannot be nil |
| Invalid index type |
| Index out of bounds (%d) |
| Invalid group name (%s) |
| UTF8: A start byte not followed by enough continuation bytes |
| UTF8: An unexpected continuation byte in %d-byte UTF8 |
| Windows 10 |
| Windows 11 |
| Cannot create instance of class %s |
| Observer is not supported |
| Cannot have multiple single cast observers added to the observers collection |
| The object does not implement the observer interface |
| No single cast observer with ID %d was added to the observer collection |
| No multi cast observer with ID %d was added to the observer collection |
| Observer is not available |
| Invalid date string: %s |
| Invalid time string: %s |
| Invalid time Offset string: %s |
| Error decoding URL style (%%XX) encoded string at position %d |
| Invalid URL encoded character (%s) at position %d |
| Cannot construct an ITask in this manner |
| List of tasks to Join method empty |
| Windows |
| Windows Vista |
| Windows Server 2008 |
| Windows 7 |
| Windows Server 2008 R2 |
| Windows 2000 |
| Windows XP |
| Windows Server 2003 |
| Windows Server 2003 R2 |
| Windows Server 2012 |
| Windows Server 2012 R2 |
| Windows Server 2016 |
| Windows Server 2019 |
| Windows Server 2022 |
| Windows 8 |
| Windows 8.1 |
| Argument must not be nil |
| Unbalanced stack or queue operation |
| Item not found |
| Duplicates not allowed |
| Thread tracking isn't enabled |
| SpinLock has been re-entered on the same thread |
| SpinLock not owned by the current thread |
| Insufficient RTTI available to support this operation |
| Parameter count mismatch |
| Type '%s' is not declared in the interface section of a unit |
| VAR and OUT arguments must match parameter type exactly |
| Specified Login Credential Service not found |
| %s (Version %d.%d, Build %d, %5:s) |
| %s Service Pack %4:d (Version %1:d.%2:d, Build %3:d, %5:s) |
| 32-bit Edition |
| 64-bit Edition |
| Count already max: Amount: %d, CurCount: %d |
| Countdown already reached zero (0) |
| Timespan too long |
| The duration cannot be returned because the absolute value exceeds the value of TTimeSpan.MaxValue |
| Value cannot be NaN |
| Negating the minimum value of a Timespan is invalid |
| Invalid Timespan format |
| Timespan element too long |
| No context-sensitive help installed |
| No help found for context %d |
| Unable to open Index |
| Unable to open Search |
| Unable to find a Table of Contents |
| No topic-based help system installed |
| No help found for %s |
| Argument out of range |
| (%d, %d, %d) is not a valid DateWeek triplet |
| ? |
| The given "%s" local time is invalid (situated within the missing period prior to DST). |
| No help viewer that supports filters |
| Invalid argument |
| Index out of range (%d). Must be >= 0 and < %d |
| Length of Strings and Objects arrays must be equal |
| Source and Destination arrays must not be the same |
| Class %s is not intended to be constructed |
| Invalid Timeout value: %s |
| SpinCount out of range. Must be between 0 and %d |
| Invalid Reset Count: %d |
| Invalid Count: %d |
| Invalid Decrement Count: %d |
| Invalid Increment Count: %d |
| Decrement amount will cause invalid results: Count: %d, CurCount: %d |
| Cannot call SetReturnValue on an externally create thread |
| Parameter %s cannot be nil |
| Parameter %s cannot be a negative value |
| Input buffer exceeded for %s = %d, %s = %d |
| Invalid characters in path |
| Invalid characters in file name |
| Path is empty |
| File name is empty |
| The specified path is too long |
| The specified path was not found |
| The path format is not supported |
| The drive cannot be found |
| The specified file was not found |
| The specified file already exists |
| The specified file is too long. |
| (%d, %d) is not a valid DateDay pair |
| Failed to create key %s |
| Failed to get data for '%s' |
| Invalid component registration |
| Failed to set data for '%s' |
| Resource %s not found |
| %s.Seek not implemented |
| Operation not allowed on sorted list |
| %s not in a class registration group |
| Property %s does not exist |
| Stream write error |
| Thread creation error: %s |
| Thread Error: %s (%d) |
| Cannot terminate an externally created thread |
| Cannot wait for an externally created thread |
| Cannot call Start on a running or suspended thread |
| Cannot call CheckTerminated on an externally created thread |
| '%s' is an invalid mask at (%d) |
| ''%s'' is not a valid component name |
| Invalid property value |
| Invalid property element: %s |
| Invalid property path |
| Invalid property type: %s |
| Invalid property value |
| Invalid data type for '%s' |
| List capacity out of bounds (%d) |
| List count out of bounds (%d) |
| List index out of bounds (%d) |
| Out of memory while expanding memory stream |
| %s has not been registered as a COM class |
| Error reading %s%s%s: %s |
| Stream read error |
| Property is read-only |
| Invalid StringBaseIndex |
| Operation Cancelled |
| Ancestor for '%s' not found |
| Cannot assign a %s to a %s |
| Bits index out of range |
| Can't write to a read-only resource stream |
| CheckSynchronize called from thread $%x, which is NOT the main thread |
| Class %s not found |
| A class named %s already exists |
| List does not allow duplicates ($0%x) |
| A component named %s already exists |
| String list does not allow duplicates |
| Cannot create file "%s". %s |
| Cannot open file "%s". %s |
| Unable to write to %s |
| Invalid stream format |
| Monday |
| Tuesday |
| Wednesday |
| Thursday |
| Friday |
| Saturday |
| Unable to create directory |
| Invalid source array |
| Invalid destination array |
| Character index out of bounds (%d) |
| Start index out of bounds (%d) |
| Invalid count (%d) |
| Invalid destination index (%d) |
| Invalid code page |
| Invalid encoding name |
| No mapping for the Unicode character exists in the target multi-byte code page |
| May |
| June |
| July |
| August |
| September |
| October |
| November |
| December |
| Sun |
| Mon |
| Tue |
| Wed |
| Thu |
| Fri |
| Sat |
| Sunday |
| Jan |
| Feb |
| Mar |
| Apr |
| May |
| Jun |
| Jul |
| Aug |
| Sep |
| Oct |
| Nov |
| Dec |
| January |
| February |
| March |
| April |
| External exception %x |
| Assertion failed |
| Interface not supported |
| Exception in safecall method |
| Object lock not owned |
| Monitor support function not initialized |
| %d exception(s): |
| Feature not implemented |
| Method called on disposed object |
| %s (%s, line %d) |
| Abstract Error |
| Access violation at address %p in module '%s'. %s of address %p |
| Cannot access package information for package '%s' |
| Can't load package %s. |
| %s |
| System Error. Code: %d. |
| %s%s |
| A call to an OS function failed |
| Variant or safe array is locked |
| Invalid variant type conversion |
| Invalid variant operation |
| Invalid NULL variant operation |
| Invalid variant operation (%s%.8x) |
| %s |
| Custom variant type (%s%.4x) is out of range |
| Custom variant type (%s%.4x) already used by %s |
| Custom variant type (%s%.4x) is not usable |
| Too many custom variant types have been registered |
| Could not convert variant of type (%s) into type (%s) |
| Overflow while converting variant of type (%s) into type (%s) |
| Variant overflow |
| Invalid argument |
| Invalid variant type |
| Operation not supported |
| Unexpected variant error |
| Stack overflow |
| Control-C hit |
| Privileged instruction |
| Operation aborted |
| Exception %s in module %s at %p. |
| %s%s |
|
| Application Error |
| Format '%s' invalid or incompatible with argument |
| No argument for format '%s' |
| Variant method calls not supported |
| Read |
| Write |
| Execution |
| Invalid access |
| Format string too long |
| Error creating variant or safe array |
| Variant or safe array index out of bounds |
| Too many open files |
| File access denied |
| Read beyond end of file |
| Disk full |
| Invalid numeric input |
| Division by zero |
| Range check error |
| Integer overflow |
| Invalid floating point operation |
| Floating point division by zero |
| Floating point overflow |
| Floating point underflow |
| Invalid pointer operation |
| Invalid class typecast |
| Access violation at address %p. %s of address %p |
| Access violation |
| <unknown> |
| '%s' is not a valid integer value |
| '%s' is not a valid integer value for %s type |
| '%s' is not a valid floating point value |
| '%s' is not a valid date |
| '%s' is not a valid time |
| '%s' is not a valid date and time |
| '%d.%d' is not a valid timestamp |
| '%s' is not a valid GUID value |
| '%s' is not a valid boolean value |
| Invalid argument to time encode |
| Invalid argument to date encode |
| Out of memory |
| I/O error %d |
| File not found |
| Invalid filename |