/** * Feathery FTP-Server * Copyright (C) 2005-2010 Andreas Martin (andreas.martin@linuxmail.org) * * ftpMessages.c - FTP-Server messages * * This Module defines all message-strings the servers sends to * clients. If someone needs to translate the server user interface * to a different language this is the only file to be touched. * * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ const char ftpMsg000[] = "Data connection error"; const char ftpMsg001[] = "File error"; const char ftpMsg002[] = "File send OK"; const char ftpMsg003[] = "File received OK"; const char ftpMsg004[] = "Please specify the password"; const char ftpMsg005[] = "Login successful"; const char ftpMsg006[] = "Login failed"; const char ftpMsg007[] = "PORT command successful. Consider using PASV."; const char ftpMsg008[] = "NOOP command successful"; const char ftpMsg009[] = "Goodby"; const char ftpMsg010[] = "Here comes the listing"; const char ftpMsg011[] = "Could not establish data connection."; const char ftpMsg012[] = "Could not establish passive data connection."; const char ftpMsg013[] = "Directory send OK"; const char ftpMsg014[] = "Sending file..."; const char ftpMsg015[] = "Could not open file."; const char ftpMsg016[] = "Receiving file..."; const char ftpMsg018[] = "Could not delete file"; const char ftpMsg019[] = "File deleted"; const char ftpMsg020[] = "Could create directory"; const char ftpMsg021[] = "Directory created"; const char ftpMsg022[] = "Could remove directory"; const char ftpMsg023[] = "Directory removed"; const char ftpMsg024[] = "Directory successfully changed"; const char ftpMsg025[] = "Failed to change directory"; const char ftpMsg026[] = "Switching to binary mode"; const char ftpMsg027[] = "Switching to ascii mode"; const char ftpMsg028[] = "Unknown type-code"; const char ftpMsg029[] = "Entering passive mode"; const char ftpMsg030[] = "Switching to file mode"; const char ftpMsg031[] = "Only file mode supported"; const char ftpMsg032[] = "Invalid path"; const char ftpMsg033[] = "Please login with USER and PASS."; const char ftpMsg034[] = "Permission denied."; const char ftpMsg035[] = "Line too long."; const char ftpMsg036[] = "Timeout."; const char ftpMsg037[] = "Hi"; const char ftpMsg038[] = "Could not open directory."; const char ftpMsg039[] = "Could not read directory."; const char ftpMsg040[] = "Aborted.";