if (!File_IsDirectory(srcName)) {
err = Err_Errno();
Msg_Append(MSGID(File.CopyTree.source.notDirectory)
- "The source path '%s' is not a directory.\n\n",
+ "Source path '%s' is not a directory.",
UTF8(srcName));
Err_SetErrno(err);
return FALSE;
if (!File_IsDirectory(dstName)) {
err = Err_Errno();
Msg_Append(MSGID(File.CopyTree.dest.notDirectory)
- "The destination path '%s' is not a directory.\n\n",
+ "Destination path '%s' is not a directory.",
UTF8(dstName));
Err_SetErrno(err);
return FALSE;
if (!File_IsDirectory(srcName)) {
Msg_Append(MSGID(File.MoveTree.source.notDirectory)
- "The source path '%s' is not a directory.\n\n",
+ "Source path '%s' is not a directory.",
UTF8(srcName));
return FALSE;
int err) // IN: errno
{
MsgList_Append(msgs, MSGID(fileLock.posix)
- "A file locking error (%d) has occurred: %s",
+ "A file locking error (%d) has occurred: %s.",
err, Err_Errno2String(err));
}