TextsCore1.rc 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. #include "TextsCore.h"
  2. STRINGTABLE
  3. BEGIN
  4. CORE_ERROR_STRINGS, "CORE_ERROR"
  5. KEY_NOT_VERIFIED, "Host key wasn't verified!"
  6. CONNECTION_FAILED, "Connection failed."
  7. USER_TERMINATED, "Terminated by user."
  8. LOST_CONNECTION, "Lost connection."
  9. CANT_DETECT_RETURN_CODE, "Can't detect command return code."
  10. COMMAND_FAILED, "Command '%s'\nfailed with return code %d and error message\n%s."
  11. COMMAND_FAILED_CODEONLY, "Command failed with return code %d."
  12. INVALID_OUTPUT_ERROR, "Command '%s' failed with invalid output '%s'."
  13. READ_CURRENT_DIR_ERROR, "Error getting name of current remote directory."
  14. SKIP_STARTUP_MESSAGE_ERROR, "Error skipping startup message. Your shell is probably incompatible with the application (BASH is recommended)."
  15. CHANGE_DIR_ERROR, "Error changing directory to '%s'."
  16. LIST_DIR_ERROR, "Error listing directory '%s'."
  17. LIST_LINE_ERROR, "Unexpected directory listing line '%s'."
  18. RIGHTS_ERROR, "Invalid rights description '%s'"
  19. CLEANUP_CONFIG_ERROR, "Error cleaning up general configuration."
  20. CLEANUP_HOSTKEYS_ERROR, "Error cleaning up sites."
  21. CLEANUP_SEEDFILE_ERROR, "Error cleaning up random seed file."
  22. CLEANUP_SESSIONS_ERROR, "Error cleaning up cached host keys."
  23. DETECT_RETURNVAR_ERROR, "Error detecting variable containing return code of last command."
  24. LOOKUP_GROUPS_ERROR, "Error looking up user groups."
  25. FILE_NOT_EXISTS, "File or folder '%s' does not exist."
  26. CANT_GET_ATTRS, "Can't get attributes of file '%s'."
  27. OPENFILE_ERROR, "Can't open file '%s'."
  28. READ_ERROR, "Error reading file '%s'."
  29. COPY_FATAL, "Copying file '%s' fatally failed."
  30. TOREMOTE_COPY_ERROR, "Copying files to remote side failed."
  31. TOLOCAL_COPY_ERROR, "Copying files from remote side failed."
  32. SCP_EMPTY_LINE, "SCP protocol error: Unexpected newline"
  33. SCP_ILLEGAL_TIME_FORMAT, "SCP protocol error: Illegal time format"
  34. SCP_INVALID_CONTROL_RECORD, "SCP protocol error: Invalid control record (%s; %s)"
  35. COPY_ERROR, "Copying file '%s' failed."
  36. SCP_ILLEGAL_FILE_DESCRIPTOR, "SCP protocol error: Illegal file descriptor format"
  37. NOT_DIRECTORY_ERROR, "'%s' is not folder!"
  38. CREATE_DIR_ERROR, "Error creating folder '%s'."
  39. CREATE_FILE_ERROR, "Can't create file '%s'."
  40. WRITE_ERROR, "Error writing to file '%s'"
  41. CANT_SET_ATTRS, "Can't set attributes of file '%s'."
  42. REMOTE_ERROR, "Received error message from remote side: '%s'"
  43. DELETE_FILE_ERROR, "Error deleting file '%s'."
  44. LOG_GEN_ERROR, "Error occurred during logging. It's been turned off."
  45. LOG_OPENERROR, "Can't open log file '%s'."
  46. RENAME_FILE_ERROR, "Error renaming file '%s' to '%s'."
  47. RENAME_CREATE_FILE_EXISTS, "File with name '%s' already exists."
  48. RENAME_CREATE_DIR_EXISTS, "Directory with name '%s' already exists."
  49. CHANGE_HOMEDIR_ERROR, "Error changing directory to home directory."
  50. UNALIAS_ALL_ERROR, "Error clearing all aliases."
  51. UNSET_NATIONAL_ERROR, "Error clearing national user variables."
  52. FIRST_LINE_EXPECTED, "Unexpected input from server: %s"
  53. CLEANUP_INIFILE_ERROR, "Error cleaning up INI file."
  54. AUTHENTICATION_LOG, "Authentication log (see session log for details):\n%s\n"
  55. AUTHENTICATION_FAILED, "Authentication failed."
  56. NOT_CONNECTED, "Connection has been unexpectedly closed."
  57. SAVE_KEY_ERROR, "Error saving key to file '%s'."
  58. SSH_EXITCODE, "Server sent command exit status %d."
  59. SFTP_INVALID_TYPE, "SFTP protocol violation: Invalid response message type (%d)."
  60. SFTP_VERSION_NOT_SUPPORTED, "Version of SFTP server (%d) is not supported. Supported versions are %d to %d."
  61. SFTP_MESSAGE_NUMBER, "SFTP protocol violation: Invalid message number %d (expected %d)."
  62. SFTP_STATUS_OK, "Unexpected OK response."
  63. SFTP_STATUS_EOF, "Unexpected EOF response."
  64. SFTP_STATUS_NO_SUCH_FILE, "No such file or directory."
  65. SFTP_STATUS_PERMISSION_DENIED, "Permission denied."
  66. SFTP_STATUS_FAILURE, "General failure (server should provide error description)."
  67. SFTP_STATUS_BAD_MESSAGE, "Bad message (badly formatted packet or protocol incompatibility)."
  68. SFTP_STATUS_NO_CONNECTION, "No connection."
  69. SFTP_STATUS_CONNECTION_LOST, "Connection lost."
  70. SFTP_STATUS_OP_UNSUPPORTED, "The server does not support the operation."
  71. SFTP_ERROR_FORMAT3, "%s\nError code: %d\nError message from server%s: %s"
  72. SFTP_STATUS_UNKNOWN, "Unknown status code."
  73. READ_SYMLINK_ERROR, "Error reading symbolic link '%s'."
  74. EMPTY_DIRECTORY, "Server returned empty listing for directory '%s'."
  75. SFTP_NON_ONE_FXP_NAME_PACKET, "Received SSH_FXP_NAME packet with zero or multiple records."
  76. SFTP_REALPATH_ERROR, "Cannot get real path for '%s'."
  77. CHANGE_PROPERTIES_ERROR, "Cannot change properties of file '%s'."
  78. SFTP_INITIALIZE_ERROR, "Cannot initialize SFTP protocol. Is the host running an SFTP server?"
  79. TIMEZONE_ERROR, "Cannot read time zone information"
  80. SFTP_CREATE_FILE_ERROR, "Cannot create remote file '%s'."
  81. SFTP_OPEN_FILE_ERROR, "Cannot open remote file '%s'."
  82. SFTP_CLOSE_FILE_ERROR, "Cannot close remote file '%s'."
  83. NOT_FILE_ERROR, "'%s' is not file!"
  84. RENAME_AFTER_RESUME_ERROR, "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."
  85. CREATE_LINK_ERROR, "Cannot create link '%s'."
  86. INVALID_SHELL_COMMAND, "Invalid command '%s'."
  87. SFTP_SERVER_MESSAGE_UNSUPPORTED, "None"
  88. INVALID_OCTAL_PERMISSIONS, "'%s' is not valid permission in octal format."
  89. SFTP_INVALID_EOL, "Server requires unsupported end-of-line sequence (%s)."
  90. SFTP_UNKNOWN_FILE_TYPE, "Unknown file type (%d)"
  91. SFTP_STATUS_INVALID_HANDLE, "Invalid handle."
  92. SFTP_STATUS_NO_SUCH_PATH, "The file path does not exist or is invalid."
  93. SFTP_STATUS_FILE_ALREADY_EXISTS, "File already exists."
  94. SFTP_STATUS_WRITE_PROTECT, "The file is on read-only media, or the media is write protected."
  95. SFTP_STATUS_NO_MEDIA, "There is no media available in the drive."
  96. DECODE_UTF_ERROR, "Error decoding UTF-8 string."
  97. CUSTOM_COMMAND_ERROR, "Error executing custom command '%s' on file '%s'."
  98. LOCALE_LOAD_ERROR, "Cannot load locale %d."
  99. SFTP_INCOMPLETE_BEFORE_EOF, "Received incomplete data packet before end of file."
  100. CALCULATE_SIZE_ERROR, "Error calculating size of directory '%s'."
  101. SFTP_PACKET_TOO_BIG, "Received too large (%d B) SFTP packet. Max supported packet size is %d B."
  102. SCP_INIT_ERROR, "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."
  103. DUPLICATE_BOOKMARK, "Location Profile with name '%s' already exists."
  104. MOVE_FILE_ERROR, "Error moving file '%s' to '%s'."
  105. SFTP_PACKET_TOO_BIG_INIT_EXPLAIN, "%s\n \nThe error is typically caused by message printed from startup script (like .profile). The message may start with %s."
  106. PRESERVE_TIME_PERM_ERROR3, "**Upload of file '%s' was successful, but error occurred while setting the permissions and/or timestamp.**\n\nIf the problem persists, turn off setting permissions or preserving timestamp. Alternatively you can turn on 'Ignore permission errors' option."
  107. ACCESS_VIOLATION_ERROR3, "Invalid access to memory."
  108. SFTP_STATUS_NO_SPACE_ON_FILESYSTEM, "There is insufficient free space on the filesystem."
  109. SFTP_STATUS_QUOTA_EXCEEDED, "Operation cannot be completed because it would exceed the user's storage quota."
  110. SFTP_STATUS_UNKNOWN_PRINCIPAL, "Principal (%s) is unknown to the server."
  111. COPY_FILE_ERROR, "Error copying file '%s' to '%s'."
  112. CUSTOM_COMMAND_UNTERMINATED, "Unterminated pattern '%s' starting at %d."
  113. CUSTOM_COMMAND_UNKNOWN, "Unknown pattern '%s' starting at %d."
  114. CUSTOM_COMMAND_FILELIST_ERROR, "Cannot combine file name pattern (starting at %d) with file list pattern (starting at %d)."
  115. SCRIPT_COMMAND_UNKNOWN, "Unknown command '%s'."
  116. SCRIPT_COMMAND_AMBIGUOUS, "Ambiguous command '%s'. Possible matches are: %s"
  117. SCRIPT_MISSING_PARAMS, "Missing parameter for command '%s'."
  118. SCRIPT_TOO_MANY_PARAMS, "Too many parameters for command '%s'."
  119. SCRIPT_NO_SESSION, "No session."
  120. SCRIPT_SESSION_INDEX_INVALID, "Invalid session number '%s'."
  121. SCRIPT_OPTION_UNKNOWN, "Unknown option '%s'."
  122. SCRIPT_VALUE_UNKNOWN, "Unknown value '%s' of option '%s'."
  123. UNKNOWN_SOCKET_STATUS, "Cannot determine status of socket (%d)."
  124. DELETE_ON_RESUME_ERROR, "Error deleting file '%s'. After resumable file upload the existing destination file must be deleted. If you do not have permissions to delete file destination file, you need to disable resumable file transfers."
  125. SFTP_PACKET_ERROR, "Error decoding SFTP packet (%d, %d, %d)."
  126. ITEM_NAME_INVALID, "Invalid name '%s'. Name cannot contain '%s'."
  127. SFTP_STATUS_LOCK_CONFLICT, "The file could not be opened because it is locked by another process."
  128. SFTP_STATUS_DIR_NOT_EMPTY, "The directory is not empty."
  129. SFTP_STATUS_NOT_A_DIRECTORY, "The specified file is not a directory."
  130. SFTP_STATUS_INVALID_FILENAME, "The filename is not valid."
  131. SFTP_STATUS_LINK_LOOP, "Too many symbolic links encountered."
  132. SFTP_STATUS_CANNOT_DELETE, "The file cannot be deleted."
  133. SFTP_STATUS_INVALID_PARAMETER, "One of the parameters was out of range, or the parameters specified cannot be used together."
  134. SFTP_STATUS_FILE_IS_A_DIRECTORY, "The specified file was a directory in a context where a directory cannot be used."
  135. SFTP_STATUS_BYTE_RANGE_LOCK_CONFLICT, "Byte range lock conflict."
  136. SFTP_STATUS_BYTE_RANGE_LOCK_REFUSED, "Byte range lock refused."
  137. SFTP_STATUS_DELETE_PENDING, "An operation was attempted on a file for which a delete operation is pending."
  138. SFTP_STATUS_FILE_CORRUPT, "The file is corrupt; an filesystem integrity check should be run."
  139. KEY_TYPE_UNKNOWN2, "File '%s' does not contain private key in known format."
  140. KEY_TYPE_UNSUPPORTED2, "**Private key file '%s' contains key in %s format. WinSCP supports only PuTTY format.**"
  141. KEY_TYPE_DIFFERENT_SSH, "Private key file '%s' contains key in %s format. It does not follow your preferred SSH protocol version."
  142. SFTP_OVERWRITE_FILE_ERROR2, "Cannot overwrite remote file '%s'.$$\n \nPress 'Delete' to delete the file and create new one instead of overwriting it.$$"
  143. SFTP_OVERWRITE_DELETE_BUTTON, "&Delete"
  144. SPACE_AVAILABLE_ERROR, "Error checking space available for path '%s'."
  145. TUNNEL_NO_FREE_PORT, "Cannot find free local listening port number for tunnel in range %d to %d."
  146. EVENT_SELECT_ERROR, "Cannot setup network event (error %d)."
  147. UNEXPECTED_CLOSE_ERROR, "Server unexpectedly closed network connection."
  148. TUNNEL_ERROR, "Error while tunneling the connection.\n \n%s"
  149. CHECKSUM_ERROR, "Error calculating checksum for file '%s'."
  150. INTERNAL_ERROR, "Internal error %s (%s)."
  151. NOTSUPPORTED, "Operation not supported."
  152. FTP_ACCESS_DENIED, "Access denied."
  153. FTP_CREDENTIAL_PROMPT, "Prompting for credentials..."
  154. FTP_RESPONSE_ERROR, "Invalid response to %s command '%s'."
  155. SCRIPT_UNKNOWN_SWITCH, "Unknown switch '%s'."
  156. TRANSFER_ERROR, "Error transferring file '%s'."
  157. EXECUTE_APP_ERROR, "Cannot execute '%s'."
  158. FILE_NOT_FOUND, "File '%s' not found."
  159. DOCUMENT_WAIT_ERROR, "Error waiting for document to close."
  160. SPEED_INVALID, "'%s' is not a valid speed limit."
  161. CERT_ERR_DEPTH_ZERO_SELF_SIGNED_CERT, "Self-signed certificate."
  162. CERT_ERR_ERROR_IN_CERT_NOT_AFTER_FIELD, "Format error in certificate's valid until field."
  163. CERT_ERR_ERROR_IN_CERT_NOT_BEFORE_FIELD, "Format error in certificate's valid from field."
  164. CERT_ERR_INVALID_CA, "Invalid CA certificate."
  165. CERT_ERR_INVALID_PURPOSE, "Unsupported certificate purpose."
  166. CERT_ERR_KEYUSAGE_NO_CERTSIGN, "Key usage does not include certificate signing."
  167. CERT_ERR_PATH_LENGTH_EXCEEDED, "Path length constraint exceeded."
  168. CERT_ERR_SELF_SIGNED_CERT_IN_CHAIN, "Self-signed certificate in certificate chain."
  169. CERT_ERR_UNABLE_TO_DECODE_ISSUER_PUBLIC_KEY, "Unable to decode issuer public key."
  170. CERT_ERR_UNABLE_TO_DECRYPT_CERT_SIGNATURE, "Unable to decrypt certificate signature."
  171. CERT_ERR_UNABLE_TO_GET_ISSUER_CERT, "Unable to get issuer certificate."
  172. CERT_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY, "Unable to get local issuer certificate."
  173. CERT_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE, "Unable to verify the first certificate."
  174. CERT_ERR_UNKNOWN, "Unknown certificate verification error."
  175. CERT_ERRDEPTH, "The error occurred at a depth of %d in the certificate chain."
  176. MASK_ERROR, "Mask is invalid near '%s'."
  177. FTP_CANNOT_OPEN_ACTIVE_CONNECTION2, "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."
  178. DELETE_LOCAL_FILE_ERROR, "Error deleting file '%s'."
  179. URL_OPTION_BOOL_VALUE_ERROR, "Invalid switch value '%s'. Valid values are 'on' and 'off'."
  180. CANNOT_OPEN_SESSION_FOLDER, "Cannot open site folder or workspace."
  181. NET_TRANSL_NO_ROUTE2, "Network error: No route to host \"%HOST%\"."
  182. NET_TRANSL_CONN_ABORTED, "Network error: Software caused connection abort"
  183. NET_TRANSL_HOST_NOT_EXIST2, "Host \"%HOST%\" does not exist."
  184. NET_TRANSL_PACKET_GARBLED, "Incoming packet was garbled on decryption"
  185. REPORT_ERROR, "%s\n\nPlease help us improving WinSCP by reporting the error on WinSCP support forum."
  186. TLS_CERT_DECODE_ERROR, "Error decoding TLS/SSL certificate (%s)."
  187. FIND_FILE_ERROR, "Error retrieving file list for \"%s\"."
  188. CERT_NAME_MISMATCH, "Certificate was not issued for this server. You might be connecting to a server that is pretending to be \"%s\"."
  189. SCRIPT_MATCH_NO_MATCH, "No file matching '%s' found."
  190. CERT_ERR_BAD_CHAIN, "Some certificates in certificate chain are invalid."
  191. CERT_OK, "Certificate is valid."
  192. CERT_ERR_CERT_CHAIN_TOO_LONG, "Certificate chain too long."
  193. CERT_ERR_CERT_HAS_EXPIRED, "Certificate has expired."
  194. CERT_ERR_CERT_NOT_YET_VALID, "Certificate is not yet valid."
  195. CERT_ERR_CERT_REJECTED, "Certificate rejected."
  196. CERT_ERR_CERT_SIGNATURE_FAILURE, "Certificate signature failure."
  197. CERT_ERR_CERT_UNTRUSTED, "Certificate not trusted."
  198. REQUEST_REDIRECTED, "WebDAV resource moved to '%s'."
  199. TOO_MANY_REDIRECTS, "Too many redirects."
  200. REDIRECT_LOOP, "Redirect loop detected."
  201. INVALID_URL, "Invalid URL \"%s\"."
  202. PROXY_AUTHENTICATION_FAILED, "Proxy authentication failed."
  203. CONFIGURED_KEY_NOT_MATCH, "Host key does not match configured key \"%s\"!"
  204. SFTP_STATUS_OWNER_INVALID, "The name specified can not be assigned as an owner of a file."
  205. SFTP_STATUS_GROUP_INVALID, "The name specified can not be assigned as the primary group of a file."
  206. SFTP_STATUS_NO_MATCHING_BYTE_RANGE_LOCK, "The requested operation could not be completed because the specified byte range lock has not been granted."
  207. KEY_TYPE_UNOPENABLE, "Private key file '%s' does not exist or cannot be opened."
  208. UNKNOWN_CHECKSUM, "Checksum algorithm '%s' is not supported."
  209. ALG_NOT_VERIFIED, "The %s %s was not verified!"
  210. SFTP_STATUS_4, "Common reasons for the Error code 4 are:\n- Renaming a file to a name of already existing file.\n- Creating a directory that already exists.\n- Moving a remote file to a different filesystem (HDD).\n- Uploading a file to a full filesystem (HDD).\n- Exceeding a user disk quota."
  211. CERTIFICATE_OPEN_ERROR, "Cannot open certificate \"%s\"."
  212. CERTIFICATE_READ_ERROR, "Cannot read certificate \"%s\"."
  213. CERTIFICATE_DECODE_ERROR_INFO, "Error decoding certificate."
  214. CERTIFICATE_DECODE_ERROR, "Error decoding certificate \"%s\"."
  215. CERTIFICATE_PUBLIC_KEY_NOT_FOUND, "Certificate file \"%s\" does not contain a public key and no corresponding .crt/.cer file was found."
  216. LOCK_FILE_ERROR, "Error locking file '%s'."
  217. UNLOCK_FILE_ERROR, "Error unlocking file '%s'."
  218. NOT_LOCKED, "File '%s' is not locked."
  219. KEY_SAVE_ERROR, "Error saving key to file \"%s\"."
  220. NEON_INIT_FAILED2, "Neon HTTP library initialization failed, cannot open session."
  221. SCRIPT_AMBIGUOUS_SLASH_IN_PATH, "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."
  222. CERT_IP_CANNOT_VERIFY, "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."
  223. HOSTKEY_NOT_CONFIGURED, "Expected host key was not configured, use -hostkey switch."
  224. UNENCRYPTED_REDIRECT, "Redirected to an unencrypted URL."
  225. HTTP_ERROR2, "Received response %d \"%s\" from %s."
  226. FILEZILLA_SITE_MANAGER_NOT_FOUND, "FileZilla site manager file not found (%s)."
  227. FILEZILLA_NO_SITES, "No sites found in FileZilla site manager file (%s)."
  228. FILEZILLA_SITE_NOT_EXIST, "FileZilla site \"%s\" was not found."
  229. SFTP_AS_FTP_ERROR, "You cannot connect to an SFTP server using an FTP protocol. Please select the correct protocol."
  230. LOG_FATAL_ERROR, "Error occurred during logging. Cannot continue."
  231. SIZE_INVALID, "'%s' is not a valid size."
  232. KNOWN_HOSTS_NOT_FOUND, "OpenSSH known_hosts file not found."
  233. KNOWN_HOSTS_NO_SITES, "No host keys found in known_hosts."
  234. HOSTKEY_NOT_MATCH_CLIPBOARD, "Contents of the clipboard does not match the host key nor its fingerprint."
  235. S3_ERROR_RESOURCE, "Resource: %s"
  236. S3_ERROR_FURTHER_DETAILS, "Further details: %s"
  237. S3_ERROR_EXTRA_DETAILS, "Extra Details: "
  238. S3_STATUS_ACCESS_DENIED, "Access denied."
  239. DUPLICATE_FOLDER_NOT_SUPPORTED, "Direct duplication of folders is not supported. Use a duplication via a local temporary copy."
  240. MISSING_TARGET_BUCKET, "Specify target bucket."
  241. UNKNOWN_FILE_ENCRYPTION, "File is not encrypted using a known encryption."
  242. INVALID_ENCRYPT_KEY, "**Invalid encryption key.**\n\nEncryption key for %s encryption must have %d bytes. It must be entered in hexadecimal representation (i.e. %d characters)."
  243. UNREQUESTED_FILE, "Server sent a file that was not requested."
  244. CORE_CONFIRMATION_STRINGS, "CORE_CONFIRMATION"
  245. CONFIRM_PROLONG_TIMEOUT3, "Host is not communicating for %d seconds.\n\nWait for another %0:d seconds?"
  246. PROMPT_KEY_PASSPHRASE, "&Passphrase for key '%s':"
  247. FILE_OVERWRITE, "File '%s' already exists. Overwrite?"
  248. DIRECTORY_OVERWRITE, "Directory '%s' already exists. Overwrite?"
  249. ALG_BELOW_TRESHOLD, "The first %s supported by the server is %s, which is below the configured warning threshold.\n\nDo you want to continue with this connection?"
  250. CIPHER_TYPE_BOTH2, "cipher"
  251. CIPHER_TYPE_CS2, "client-to-server cipher"
  252. CIPHER_TYPE_SC2, "server-to-client cipher"
  253. RESUME_TRANSFER2, "**Do you want to resume file transfer?**\n\nTarget directory contains partially transferred file '%s'.\n\nNote: Answering 'No' would delete partially transferred file and restart transfer."
  254. PARTIAL_BIGGER_THAN_SOURCE, "Target directory contains partially transferred file '%s', which is bigger than a source file. The file will be deleted."
  255. APPEND_OR_RESUME2, "**Do you want to append file '%s' at the end of existing file?**\n\nPress 'No' to resume file transfer instead."
  256. FILE_OVERWRITE_DETAILS, "%s\n \nNew: \t%s bytes, %s\nExisting: \t%s bytes, %s"
  257. READ_ONLY_OVERWRITE, "File '%s' is read-only. Overwrite?"
  258. LOCAL_FILE_OVERWRITE2, "**Overwrite local file '%s'?**\n\nDestination directory already contains file '%s'.\nChoose, if you want to overwrite the file or skip this transfer and keep existing file."
  259. REMOTE_FILE_OVERWRITE2, "**Overwrite remote file '%s'?**\n\nDestination directory already contains file '%s'.\nChoose, if you want to overwrite the file or skip this transfer and keep existing file."
  260. TIMEOUT_STILL_WAITING3, "Host is not communicating for more than %d seconds.\nStill waiting...\n\nNote: If the problem repeats, try turning off 'Optimize connection buffer size'."
  261. RECONNECT_BUTTON, "&Reconnect"
  262. RENAME_BUTTON, "New na&me"
  263. TUNNEL_SESSION_NAME, "Tunnel for %s"
  264. PASSWORD_TITLE, "Password"
  265. PASSPHRASE_TITLE, "Key passphrase"
  266. SERVER_PROMPT_TITLE, "Server prompt"
  267. USERNAME_TITLE, "Username"
  268. USERNAME_PROMPT2, "&Username:"
  269. SERVER_PROMPT_TITLE2, "Server prompt: %s"
  270. NEW_PASSWORD_TITLE, "New password"
  271. PROMPT_PROMPT, "&Response:"
  272. TIS_INSTRUCTION, "Using TIS authentication.%s"
  273. CRYPTOCARD_INSTRUCTION, "Using CryptoCard authentication.%s"
  274. PASSWORD_PROMPT, "&Password: "
  275. KEYBINTER_INSTRUCTION, "Using keyboard-interactive authentication.%s"
  276. NEW_PASSWORD_CURRENT_PROMPT, "&Current password:"
  277. NEW_PASSWORD_NEW_PROMPT, "&New password:"
  278. NEW_PASSWORD_CONFIRM_PROMPT, "Confirm new &password:"
  279. TUNNEL_INSTRUCTION2, "Authenticating tunnel through %s"
  280. RENAME_TITLE, "Transfer under different name"
  281. RENAME_PROMPT2, "&New name:"
  282. VERIFY_CERT_PROMPT3, "**The server's certificate is not known. You have no guarantee that the server is the computer you think it is.**\n\nServer's certificate details follow:\n\n%s\n\nIf you trust this certificate, press Yes. To connect without storing certificate, press No. To abandon the connection press Cancel.\n\nContinue connecting and store the certificate?"
  283. VERIFY_CERT_CONTACT, "- Organization: %s\n|- Location: %s\n|- Other: %s\n"
  284. VERIFY_CERT_CONTACT_LIST, "%s, %s"
  285. CERT_TEXT, "Issuer:\n%s\nSubject:\n%s\nValid: %s - %s\n\nFingerprint (SHA-1): %s\n\nSummary: %s"
  286. CERTIFICATE_PASSPHRASE_PROMPT, "&Passphrase for client certificate:"
  287. CERTIFICATE_PASSPHRASE_TITLE, "Client certificate passphrase"
  288. KEY_TYPE_CONVERT3, "**Do you want to convert this %s private key to PuTTY format?**\n\n%s"
  289. MULTI_FILES_TO_ONE, "**Are you sure you want to transfer multiple files to a single file '%s' in a directory '%s'?**\n\nThe files will overwrite one another.\n\nIf you actually want to transfer all files to a directory '%s', keeping their name, make sure you terminate the path with a slash."
  290. KEY_EXCHANGE_ALG, "key-exchange algorithm"
  291. KEYKEY_TYPE, "host key type"
  292. S3_ACCESS_KEY_ID_TITLE, "Access key ID"
  293. S3_ACCESS_KEY_ID_PROMPT, "A&ccess key ID:"
  294. S3_SECRET_ACCESS_KEY_TITLE, "Secret access key"
  295. S3_SECRET_ACCESS_KEY_PROMPT, "Secret access &key:"
  296. CORE_INFORMATION_STRINGS, "CORE_INFORMATION"
  297. YES_STR, "Yes"
  298. NO_STR, "No"
  299. SESSION_INFO_TIP2, "Host: %s\nUser name: %s\nPrivate key file: %s\nTransfer protocol: %s"
  300. VERSION2, "Version %s (%s)"
  301. CLOSED_ON_COMPLETION, "Operation was successfully completed. Connection was closed."
  302. SFTP_PROTOCOL_NAME2, "SFTP-%d"
  303. FS_RENAME_NOT_SUPPORTED, "The version of SFTP protocol does not allow file renaming."
  304. SFTP_NO_EXTENSION_INFO, "The server does not support any SFTP extension."
  305. SFTP_EXTENSION_INFO, "The server supports these SFTP extensions:"
  306. APPEND_BUTTON, "A&ppend"
  307. YES_TO_NEWER_BUTTON, "Ne&wer only"
  308. SCRIPT_HELP_DESC, "Displays help"
  309. SCRIPT_EXIT_DESC, "Closes all sessions and terminates the program"
  310. SCRIPT_OPEN_DESC, "Connects to server"
  311. SCRIPT_CLOSE_DESC, "Closes session"
  312. SCRIPT_SESSION_DESC, "Lists connected sessions or selects active session"
  313. SCRIPT_PWD_DESC, "Prints remote working directory"
  314. SCRIPT_CD_DESC, "Changes remote working directory"
  315. SCRIPT_LS_DESC, "Lists the contents of remote directory"
  316. SCRIPT_LPWD_DESC, "Prints local working directory"
  317. SCRIPT_LCD_DESC, "Changes local working directory"
  318. SCRIPT_LLS_DESC, "Lists the contents of local directory"
  319. SCRIPT_RM_DESC, "Removes remote file"
  320. SCRIPT_RMDIR_DESC, "Removes remote directory"
  321. SCRIPT_MV_DESC, "Moves or renames remote file"
  322. SCRIPT_CHMOD_DESC, "Changes permissions of remote file"
  323. SCRIPT_LN_DESC, "Creates remote symbolic link"
  324. SCRIPT_MKDIR_DESC, "Creates remote directory"
  325. SCRIPT_GET_DESC, "Downloads file from remote directory to local directory"
  326. SCRIPT_PUT_DESC, "Uploads file from local directory to remote directory"
  327. SCRIPT_OPTION_DESC, "Sets or shows value of script options"
  328. SCRIPT_SYNCHRONIZE_DESC, "Synchronizes remote directory with local one"
  329. SCRIPT_KEEPUPTODATE_DESC, "Continuously reflects changes in local directory on remote one"
  330. SCRIPT_HOST_PROMPT, "Host: "
  331. SCRIPT_ACTIVE_SESSION, "Active session: [%d] %s"
  332. SCRIPT_SESSION_CLOSED, "Session '%s' closed."
  333. SCRIPT_SYNCHRONIZE, "Local '%s' %s Remote '%s'"
  334. SCRIPT_SYNCHRONIZE_DELETED, "'%s' deleted"
  335. SCRIPT_KEEPING_UP_TO_DATE, "Watching for changes, press Ctrl-C to abort..."
  336. SKIP_ALL_BUTTON, "Ski&p all"
  337. SCRIPT_CALL_DESC2, "Executes arbitrary remote command"
  338. COPY_PARAM_PRESET_ASCII, "&Text"
  339. COPY_PARAM_PRESET_BINARY, "&Binary"
  340. COPY_INFO_TRANSFER_TYPE2, "Transfer type: %s|Binary|Text|Automatic (%s)|Automatic"
  341. COPY_INFO_FILENAME, "Filename modification: %s|No change|Upper case|Lower case|First upper case|Lower case 8.3"
  342. COPY_INFO_PERMISSIONS, "Set permissions: %s"
  343. COPY_INFO_ADD_X_TO_DIRS, "Add X to directories"
  344. COPY_INFO_TIMESTAMP, "Preserve timestamp"
  345. COPY_INFO_FILE_MASK, "File mask: %s"
  346. COPY_INFO_CLEAR_ARCHIVE, "Clear 'Archive' attribute"
  347. COPY_INFO_DONT_REPLACE_INV_CHARS, "Do not replace invalid characters"
  348. COPY_INFO_DONT_PRESERVE_TIME, "Do not preserve timestamp"
  349. COPY_INFO_DONT_CALCULATE_SIZE, "Do not calculate transfer size"
  350. COPY_INFO_DEFAULT, "Default transfer settings"
  351. COPY_RULE_HOSTNAME, "Hostname: %s"
  352. COPY_RULE_USERNAME, "Username: %s"
  353. COPY_RULE_REMOTE_DIR, "Remote directory: %s"
  354. COPY_RULE_LOCAL_DIR, "Local directory: %s"
  355. SYNCHRONIZE_SCAN, "Scanning '%s' for subdirectories..."
  356. SYNCHRONIZE_START, "Watching for changes in %d directories..."
  357. SYNCHRONIZE_CHANGE, "Change in '%s' detected."
  358. SYNCHRONIZE_UPLOADED, "File '%s' uploaded."
  359. SYNCHRONIZE_DELETED, "File '%s' deleted."
  360. COPY_INFO_NOT_USABLE, "%s configured transfer settings cannot be used in current context|Some|All"
  361. COPY_INFO_IGNORE_PERM_ERRORS, "Ignore permission errors"
  362. AUTH_TRANSL_USERNAME, "Using username \"%s\"."
  363. AUTH_TRANSL_KEYB_INTER, "Using keyboard-interactive authentication."
  364. AUTH_TRANSL_PUBLIC_KEY, "Authenticating with public key \"%s\"."
  365. AUTH_TRANSL_WRONG_PASSPHRASE, "Wrong passphrase."
  366. AUTH_TRANSL_ACCESS_DENIED, "Access denied."
  367. AUTH_TRANSL_PUBLIC_KEY_AGENT, "Authenticating with public key \"%s\" from agent."
  368. AUTH_TRANSL_TRY_PUBLIC_KEY, "Trying public key authentication."
  369. AUTH_PASSWORD, "Authenticating with pre-entered password."
  370. OPEN_TUNNEL, "Opening tunnel..."
  371. STATUS_CLOSED, "Connection terminated."
  372. STATUS_LOOKUPHOST, "Searching for host..."
  373. STATUS_CONNECT, "Connecting to host..."
  374. STATUS_AUTHENTICATE, "Authenticating..."
  375. STATUS_AUTHENTICATED, "Authenticated."
  376. STATUS_STARTUP, "Starting the session..."
  377. STATUS_READY, "Session started."
  378. STATUS_OPEN_DIRECTORY, "Reading remote directory..."
  379. USING_TUNNEL, "Connecting through tunnel..."
  380. AUTH_TRANSL_KEY_REFUSED, "Server refused our key."
  381. PFWD_TRANSL_ADMIN, "Administratively prohibited (%s)."
  382. PFWD_TRANSL_CONNECT, "Connect failed (%s)."
  383. NET_TRANSL_REFUSED2, "Network error: Connection to \"%HOST%\" refused."
  384. NET_TRANSL_RESET, "Network error: Connection reset by peer."
  385. NET_TRANSL_TIMEOUT2, "Network error: Connection to \"%HOST%\" timed out."
  386. SESSION_INFO_TIP_NO_SSH, "Host: %s\nUser name: %s\nTransfer protocol: %s"
  387. RESUME_BUTTON, "&Resume"
  388. FTP_NO_FEATURE_INFO, "The server does not support any additional FTP feature."
  389. FTP_FEATURE_INFO, "The server supports these FTP additional features:"
  390. COPY_INFO_CPS_LIMIT2, "Transfer speed limit: %u KB/s"
  391. COPY_KEY_BUTTON, "&Copy Key"
  392. UPDATE_KEY_BUTTON, "&Update"
  393. ADD_KEY_BUTTON, "&Add"
  394. COPY_INFO_PRESERVE_READONLY, "Preserve read-only"
  395. SCRIPT_SYNCHRONIZE_COLLECTING, "Comparing..."
  396. SCRIPT_SYNCHRONIZE_SYNCHRONIZING, "Synchronizing..."
  397. SCRIPT_SYNCHRONIZE_NODIFFERENCE, "Nothing to synchronize."
  398. SPEED_UNLIMITED, "Unlimited"
  399. FTPS_IMPLICIT, "TLS/SSL Implicit encryption"
  400. FTPS_EXPLICIT, "TLS/SSL Explicit encryption"
  401. SCRIPT_ECHO_DESC, "Displays its arguments as message"
  402. SCRIPT_STAT_DESC, "Retrieves attributes of remote file"
  403. HOSTKEY, "Host key fingerprint is %s."
  404. SCRIPT_FILEMASK_INCLUDE_EXCLUDE, "Switch -filemask overrides obsolete options include/exclude."
  405. COPY_PARAM_NEWER_ONLY, "&New and updated files only"
  406. FTP_SUGGESTION, "The server rejected SFTP connection, but it listens for FTP connections.\n\nDid you want to use FTP protocol instead of SFTP? Prefer using encryption."
  407. SCRIPT_CMDLINE_SESSION, "Opening session using command-line parameter in scripting is deprecated. Use 'open' command instead."
  408. ANY_HOSTKEY, "WARNING! Giving up security and accepting any host key as configured!"
  409. ANY_CERTIFICATE, "WARNING! Giving up security and accepting any certificate as configured!"
  410. SCRIPT_SYNC_UPLOAD_NEW, "New local file %s"
  411. SCRIPT_SYNC_DOWNLOAD_NEW, "New remote file %s"
  412. SCRIPT_SYNC_UPLOAD_UPDATE, "Local file %s newer than remote file %s"
  413. SCRIPT_SYNC_DOWNLOAD_UPDATE, "Remote file %s newer than local file %s"
  414. SCRIPT_SYNC_DELETE_REMOTE, "Orphan remote file %s"
  415. SCRIPT_SYNC_DELETE_LOCAL, "Orphan local file %s"
  416. SCRIPT_SYNCHRONIZE_CHECKLIST, "Differences found:"
  417. COPY_INFO_REMOVE_CTRLZ, "Remove EOF mark"
  418. COPY_INFO_REMOVE_BOM, "Remove BOM"
  419. SCRIPT_NON_DEFAULT_COPY_PARAM, "Using configured transfer settings different from factory defaults."
  420. SCRIPT_NON_DEFAULT_SYNC_PARAM, "Using configured synchronization options different from factory defaults."
  421. VERSION_BUILD, "Build"
  422. VERSION_DEV_BUILD, "Dev Build"
  423. VERSION_DEBUG_BUILD, "Debug Build"
  424. VERSION_DONT_DISTRIBUTE, "- Do NOT distribute"
  425. WEBDAV_EXTENSION_INFO, "The server supports these WebDAV extensions:"
  426. COPY_PARAM_PRESET_EXCLUDE_ALL_DIR, "Exclude &directories"
  427. SCRIPT_CHECKSUM_DESC, "Calculates checksum of remote file"
  428. CLIENT_CERTIFICATE_LOADING, "Loading client certificate..."
  429. NEED_CLIENT_CERTIFICATE, "Server asks for authentication with a client certificate."
  430. LOCKED, "Locked"
  431. EXECUTABLE, "Executable"
  432. SCRIPT_CMDLINE_PARAMETERS, "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."
  433. SCRIPTING_USE_HOSTKEY, "In scripting, you should use a -hostkey switch to configure the expected host key."
  434. SCRIPT_SITE_WARNING, "In scripting you should not rely on saved sites, use this command instead:"
  435. CODE_SESSION_OPTIONS, "Set up session options"
  436. CODE_CONNECT, "Connect"
  437. CODE_PS_ADD_TYPE, "Load WinSCP .NET assembly"
  438. COPY_INFO_PRESERVE_TIME_DIRS, "%s (including directories)"
  439. TEXT_FILE_ENCODING, "The file must be in UTF-8 or UTF-16 encoding."
  440. AND_STR, "%s and %s"
  441. AUTH_CHANGING_PASSWORD, "Changing password."
  442. PASTE_KEY_BUTTON, "&Paste key"
  443. SCRIPT_CP_DESC, "Duplicates remote file"
  444. TIME_UNKNOWN, "Unknown"
  445. KEY_DETAILS, " Algorithm:\t%s\n SHA-256:\t%s\n MD5:\t%s"
  446. COPY_KEY_ACTION, "&Copy key fingerprints to clipboard"
  447. COPY_CERTIFICATE_ACTION, "&Copy certificate fingerprint to clipboard"
  448. COPY_INFO_DONT_ENCRYPT_NEW_FILES, "Do not encrypt new files"
  449. COPY_INFO_EXCLUDE_HIDDEN_FILES, "Exclude hidden files"
  450. COPY_INFO_EXCLUDE_EMPTY_DIRS, "Exclude empty directories"
  451. CORE_VARIABLE_STRINGS, "CORE_VARIABLE"
  452. PUTTY_BASED_ON, "SSH and SCP code based on PuTTY %s"
  453. PUTTY_COPYRIGHT, "Copyright © 1997-2019 Simon Tatham"
  454. PUTTY_URL, "https://www.chiark.greenend.org.uk/~sgtatham/putty/"
  455. FILEZILLA_BASED_ON2, "FTP code based on FileZilla"
  456. FILEZILLA_COPYRIGHT2, "Copyright © Tim Kosse"
  457. FILEZILLA_URL, "https://filezilla-project.org/"
  458. OPENSSL_BASED_ON, "This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s."
  459. OPENSSL_COPYRIGHT2, "Copyright © 1998-%s The OpenSSL Project"
  460. OPENSSL_URL, "https://www.openssl.org/"
  461. NEON_BASED_ON2, "WebDAV/HTTP code based on neon library %s"
  462. NEON_COPYRIGHT, "Copyright © 1999-2016 Joe Orton"
  463. NEON_URL, "http://www.webdav.org/neon/"
  464. EXPAT_BASED_ON, "eXpat library %s"
  465. EXPAT_URL, "http://www.libexpat.org/"
  466. PUTTY_LICENSE_URL, "https://www.chiark.greenend.org.uk/~sgtatham/putty/licence.html"
  467. MAIN_MSG_TAG, "**"
  468. INTERACTIVE_MSG_TAG, "$$"
  469. S3_BASED_ON, "S3 code based on libs3 library %s"
  470. S3_COPYRIGHT, "Copyright © Bryan Ischo"
  471. S3_URL, "https://github.com/bji/libs3"
  472. S3_LICENSE_URL, "https://github.com/bji/libs3/blob/master/LICENSE"
  473. END