#@ cmucl-unix

# SOME DESCRIPTIVE TITLE
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: src/code/unix.lisp
msgid ""
"The encoding to use for converting a namestring to a string that can\n"
"  be used by the operations system.  It must be a valid\n"
"  external-format name or :NULL.  :NULL means the string\n"
"  is passed as is to the operating system.  The operating system will\n"
"  get the low 8 bits of each UTF-16 code unit of the string."
msgstr ""

#: src/code/unix.lisp
msgid "Syscall ~A failed: ~A"
msgstr ""

#: src/code/unix.lisp
msgid "Test for read permission"
msgstr ""

#: src/code/unix.lisp
msgid "Class not yet defined: ~S"
msgstr ""

#: src/code/unix.lisp
msgid "Test for write permission"
msgstr ""

#: src/code/unix.lisp
msgid "Test for execute permission"
msgstr ""

#: src/code/unix.lisp
msgid "Test for presence of file"
msgstr ""

#: src/code/unix.lisp
msgid ""
"Given a file path (a string) and one of four constant modes,\n"
"   unix-access returns T if the file is accessible with that\n"
"   mode and NIL if not.  It also returns an errno value with\n"
"   NIL which determines why the file was not accessible.\n"
"\n"
"   The access modes are:\n"
"	r_ok     Read permission.\n"
"	w_ok     Write permission.\n"
"	x_ok     Execute permission.\n"
"	f_ok     Presence of file."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Given a file path string, unix-chdir changes the current working \n"
"   directory to the one specified."
msgstr ""

#: src/code/unix.lisp
msgid "Set user ID on execution"
msgstr ""

#: src/code/unix.lisp
msgid "Set group ID on execution"
msgstr ""

#: src/code/unix.lisp
msgid "Save text image after execution"
msgstr ""

#: src/code/unix.lisp
msgid "Read by owner"
msgstr ""

#: src/code/unix.lisp
msgid "Write by owner"
msgstr ""

#: src/code/unix.lisp
msgid "Execute (search directory) by owner"
msgstr ""

#: src/code/unix.lisp
msgid "Read by group"
msgstr ""

#: src/code/unix.lisp
msgid "Write by group"
msgstr ""

#: src/code/unix.lisp
msgid "Execute (search directory) by group"
msgstr ""

#: src/code/unix.lisp
msgid "Read by others"
msgstr ""

#: src/code/unix.lisp
msgid "Write by others"
msgstr ""

#: src/code/unix.lisp
msgid "Execute (search directory) by others"
msgstr ""

#: src/code/unix.lisp
msgid ""
"Given a file path string and a constant mode, unix-chmod changes the\n"
"   permission mode for that file to the one specified. The new mode\n"
"   can be created by logically OR'ing the following:\n"
"\n"
"      setuidexec        Set user ID on execution.\n"
"      setgidexec        Set group ID on execution.\n"
"      savetext          Save text image after execution.\n"
"      readown           Read by owner.\n"
"      writeown          Write by owner.\n"
"      execown           Execute (search directory) by owner.\n"
"      readgrp           Read by group.\n"
"      writegrp          Write by group.\n"
"      execgrp           Execute (search directory) by group.\n"
"      readoth           Read by others.\n"
"      writeoth          Write by others.\n"
"      execoth           Execute (search directory) by others.\n"
"  \n"
"  Thus #o444 and (logior unix:readown unix:readgrp unix:readoth)\n"
"  are equivalent for 'mode.  The octal-base is familar to Unix users.\n"
"\n"
"  It returns T on successfully completion; NIL and an error number\n"
"  otherwise."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Given an integer file descriptor and a mode (the same as those\n"
"   used for unix-chmod), unix-fchmod changes the permission mode\n"
"   for that file to the one specified. T is returned if the call\n"
"   was successful."
msgstr ""

#: src/code/unix.lisp
msgid "set the file pointer"
msgstr ""

#: src/code/unix.lisp
msgid "increment the file pointer"
msgstr ""

#: src/code/unix.lisp
msgid "extend the file size"
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-lseek accepts a file descriptor and moves the file pointer ahead\n"
"   a certain offset for that file.  Whence can be any of the following:\n"
"\n"
"   l_set        Set the file pointer.\n"
"   l_incr       Increment the file pointer.\n"
"   l_xtnd       Extend the file size.\n"
"  _N"
msgstr ""

#: src/code/unix.lisp
msgid ""
"UNIX-LSEEK accepts a file descriptor and moves the file pointer ahead\n"
"   a certain OFFSET for that file.  WHENCE can be any of the following:\n"
"\n"
"   l_set        Set the file pointer.\n"
"   l_incr       Increment the file pointer.\n"
"   l_xtnd       Extend the file size.\n"
"  "
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-mkdir creates a new directory with the specified name and mode.\n"
"   (Same as those for unix-chmod.)  It returns T upon success, otherwise\n"
"   NIL and an error number."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-unlink removes the directory entry for the named file.\n"
"   NIL and an error code is returned if the call fails."
msgstr ""

#: src/code/unix.lisp
msgid "Read-only flag."
msgstr ""

#: src/code/unix.lisp
msgid "Write-only flag."
msgstr ""

#: src/code/unix.lisp
msgid "Read-write flag."
msgstr ""

#: src/code/unix.lisp
msgid "Non-blocking I/O"
msgstr ""

#: src/code/unix.lisp
msgid "Append flag."
msgstr ""

#: src/code/unix.lisp
msgid "Create if nonexistant flag."
msgstr ""

#: src/code/unix.lisp
msgid "Truncate flag."
msgstr ""

#: src/code/unix.lisp
msgid "Error if already exists."
msgstr ""

#: src/code/unix.lisp
msgid "Don't assign controlling tty"
msgstr ""

#: src/code/unix.lisp
msgid "Non-blocking mode"
msgstr ""

#: src/code/unix.lisp
msgid "Synchronous writes (on ext2)"
msgstr ""

#: src/code/unix.lisp
msgid "Asynchronous I/O"
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-open opens the file whose pathname is specified by path\n"
"   for reading and/or writing as specified by the flags argument.\n"
"   The flags argument can be:\n"
"\n"
"     o_rdonly        Read-only flag.\n"
"     o_wronly        Write-only flag.\n"
"     o_rdwr          Read-and-write flag.\n"
"     o_append        Append flag.\n"
"     o_creat         Create-if-nonexistant flag.\n"
"     o_trunc         Truncate-to-size-0 flag.\n"
"\n"
"   If the o_creat flag is specified, then the file is created with\n"
"   a permission of argument mode if the file doesn't exist.  An\n"
"   integer file descriptor is returned by unix-open."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-close takes an integer file descriptor as an argument and\n"
"   closes the file associated with it.  T is returned upon successful\n"
"   completion, otherwise NIL and an error number."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-creat accepts a file name and a mode (same as those for\n"
"   unix-chmod) and creates a file by that name with the specified\n"
"   permission mode.  It returns a file descriptor on success,\n"
"   or NIL and an error  number otherwise.\n"
"\n"
"   This interface is made obsolete by UNIX-OPEN."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-dup duplicates an existing file descriptor (given as the\n"
"   argument) and return it.  If FD is not a valid file descriptor, NIL\n"
"   and an error number are returned."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-dup2 duplicates an existing file descriptor just as unix-dup\n"
"   does only the new value of the duplicate descriptor may be requested\n"
"   through the second argument.  If a file already exists with the\n"
"   requested descriptor number, it will be closed and the number\n"
"   assigned to the duplicate."
msgstr ""

#: src/code/unix.lisp
msgid "Duplicate a file descriptor"
msgstr ""

#: src/code/unix.lisp
msgid "Get file desc. flags"
msgstr ""

#: src/code/unix.lisp
msgid "Set file desc. flags"
msgstr ""

#: src/code/unix.lisp
msgid "Get file flags"
msgstr ""

#: src/code/unix.lisp
msgid "Set file flags"
msgstr ""

#: src/code/unix.lisp
msgid "Get owner"
msgstr ""

#: src/code/unix.lisp
msgid "Get lock"
msgstr ""

#: src/code/unix.lisp
msgid "Set owner"
msgstr ""

#: src/code/unix.lisp
msgid "Set lock"
msgstr ""

#: src/code/unix.lisp
msgid "Set lock, wait for release"
msgstr ""

#: src/code/unix.lisp
msgid "Non-blocking reads"
msgstr ""

#: src/code/unix.lisp
msgid "Append on each write"
msgstr ""

#: src/code/unix.lisp
msgid "Signal pgrp when data ready"
msgstr ""

#: src/code/unix.lisp
msgid "Create if nonexistant"
msgstr ""

#: src/code/unix.lisp
msgid "Truncate to zero length"
msgstr ""

#: src/code/unix.lisp
msgid "Error if already created"
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-fcntl manipulates file descriptors according to the\n"
"   argument CMD which can be one of the following:\n"
"\n"
"   F-DUPFD         Duplicate a file descriptor.\n"
"   F-GETFD         Get file descriptor flags.\n"
"   F-SETFD         Set file descriptor flags.\n"
"   F-GETFL         Get file flags.\n"
"   F-SETFL         Set file flags.\n"
"   F-GETOWN        Get owner.\n"
"   F-SETOWN        Set owner.\n"
"\n"
"   The flags that can be specified for F-SETFL are:\n"
"\n"
"   FNDELAY         Non-blocking reads.\n"
"   FAPPEND         Append on each write.\n"
"   FASYNC          Signal pgrp when data ready.\n"
"   FCREAT          Create if nonexistant.\n"
"   FTRUNC          Truncate to zero length.\n"
"   FEXCL           Error if already created.\n"
"   "
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-pipe sets up a unix-piping mechanism consisting of\n"
"  an input pipe and an output pipe.  Unix-Pipe returns two\n"
"  values: if no error occurred the first value is the pipe\n"
"  to be read from and the second is can be written to.  If\n"
"  an error occurred the first value is NIL and the second\n"
"  the unix error code."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-read attempts to read from the file described by fd into\n"
"   the buffer buf until it is full.  Len is the length of the buffer.\n"
"   The number of bytes actually read is returned or NIL and an error\n"
"   number if an error occured."
msgstr ""

#: src/code/unix.lisp
msgid ""
"UNIX-READ attempts to read from the file described by fd into\n"
"   the buffer buf until it is full.  Len is the length of the buffer.\n"
"   The number of bytes actually read is returned or NIL and an error\n"
"   number if an error occured."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-readlink invokes the readlink system call on the file name\n"
"  specified by the simple string path.  It returns up to two values:\n"
"  the contents of the symbolic link if the call is successful, or\n"
"  NIL and the Unix error number."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-rename renames the file with string name1 to the string\n"
"   name2.  NIL and an error code is returned if an error occured."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-rmdir attempts to remove the directory name.  NIL and\n"
"   an error number is returned if an error occured."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-write attempts to write a character buffer (buf) of length\n"
"   len to the file described by the file descriptor fd.  NIL and an\n"
"   error is returned if the call is unsuccessful."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Define an ioctl command. If the optional ARG and PARM-TYPE are given\n"
"  then ioctl argument size and direction are included as for ioctls defined\n"
"  by _IO, _IOR, _IOW, or _IOWR. If DEV is a character then the ioctl type\n"
"  is the characters code, else DEV may be an integer giving the type."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-ioctl performs a variety of operations on open i/o\n"
"   descriptors.  See the UNIX Programmer's Manual for more\n"
"   information."
msgstr ""

#: src/code/unix.lisp
msgid "Get terminal attributes."
msgstr ""

#: src/code/unix.lisp
msgid "Set terminal attributes."
msgstr ""

#: src/code/unix.lisp
msgid "Get terminal output speed."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-getuid returns the real user-id associated with the\n"
"   current process."
msgstr ""

#: src/code/unix.lisp
msgid "Unix-gethostname returns the name of the host machine as a string."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-gethostid returns a 32-bit integer which provides unique\n"
"   identification for the host machine."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-exit terminates the current process with an optional\n"
"   error code.  If successful, the call doesn't return.  If\n"
"   unsuccessful, the call returns NIL and an error number."
msgstr ""

#: src/code/unix.lisp
msgid "Size of control character vector."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-stat retrieves information about the specified\n"
"   file returning them in the form of multiple values.  If the call\n"
"   fails, then NIL and an error number is returned.  If the call\n"
"   succeeds, then T is returned in addition to the following values\n"
"   from the stat struct st:\n"
"\n"
"     st_dev        Device ID\n"
"     st_ino        File serial number\n"
"     st_mode       Mode of file\n"
"     st_nlink      Number of hard links to the file\n"
"     st_uid        User ID\n"
"     st_gid        Group ID\n"
"     st_rdev       Device ID (if file is character or block special)\n"
"     st_atime      Last data access time, in sec\n"
"     st_mtime      Last data modification time, in sec\n"
"     st_ctime      Last file status change time, in sec\n"
"     st_blksize    Preferred I/O block size\n"
"     st_blocks     Number of blocks allocated. (Block size is implementation"
" dependent.)\n"
""
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-fstat is similar to unix-stat except the file is specified\n"
"   by the file descriptor fd.  If the call fails, then NIL and an\n"
"   error number is returned.  If the call succeeds, then T is returned\n"
"   in addition to the following values from the stat struct st:\n"
"\n"
"     st_dev        Device ID\n"
"     st_ino        File serial number\n"
"     st_mode       Mode of file\n"
"     st_nlink      Number of hard links to the file\n"
"     st_uid        User ID\n"
"     st_gid        Group ID\n"
"     st_rdev       Device ID (if file is character or block special)\n"
"     st_atime      Last data access time, in sec\n"
"     st_mtime      Last data modification time, in sec\n"
"     st_ctime      Last file status change time, in sec\n"
"     st_blksize    Preferred I/O block size\n"
"     st_blocks     Number of blocks allocated. (Block size is implementation"
" dependent.)\n"
""
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-lstat is similar to unix-stat except the specified\n"
"   file must be a symbolic link.  If the call fails, then NIL and an\n"
"   error number is returned.  If the call succeeds, then T is returned\n"
"   in addition to the following values from the stat struct st:\n"
"\n"
"     st_dev        Device ID\n"
"     st_ino        File serial number\n"
"     st_mode       Mode of file\n"
"     st_nlink      Number of hard links to the file\n"
"     st_uid        User ID\n"
"     st_gid        Group ID\n"
"     st_rdev       Device ID (if file is character or block special)\n"
"     st_atime      Last data access time, in sec\n"
"     st_mtime      Last data modification time, in sec\n"
"     st_ctime      Last file status change time, in sec\n"
"     st_blksize    Preferred I/O block size\n"
"     st_blocks     Number of blocks allocated. (Block size is implementation"
" dependent.)\n"
""
msgstr ""

#: src/code/unix.lisp
msgid "The calling process."
msgstr ""

#: src/code/unix.lisp
msgid "Terminated child processes."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Like call getrusage, but return only the system and user time, and returns\n"
"   the seconds and microseconds as separate values."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-getrusage returns information about the resource usage\n"
"   of the process specified by who.  Who can be either the\n"
"   current process (rusage_self) or all of the terminated\n"
"   child processes (rusage_children).  NIL and an error number\n"
"   is returned if the call fails."
msgstr ""

#: src/code/unix.lisp
msgid "These bits determine file type."
msgstr ""

#: src/code/unix.lisp
msgid "Directory"
msgstr ""

#: src/code/unix.lisp
msgid "Character device"
msgstr ""

#: src/code/unix.lisp
msgid "FIFO"
msgstr ""

#: src/code/unix.lisp
msgid "Block device"
msgstr ""

#: src/code/unix.lisp
msgid "Regular file"
msgstr ""

#: src/code/unix.lisp
msgid "Symbolic link."
msgstr ""

#: src/code/unix.lisp
msgid "Socket."
msgstr ""

#: src/code/unix.lisp
msgid "Returns either :file, :directory, :link, :special, or NIL."
msgstr ""

#: src/code/unix.lisp
msgid "Returns the pathname with all symbolic links resolved."
msgstr ""

#: src/code/unix.lisp
msgid "Error reading link ~S: ~S"
msgstr ""

#: src/code/unix.lisp
msgid "Successful"
msgstr ""

#: src/code/unix.lisp
msgid "Operation not permitted"
msgstr ""

#: src/code/unix.lisp
msgid "No such file or directory"
msgstr ""

#: src/code/unix.lisp
msgid "No such process"
msgstr ""

#: src/code/unix.lisp
msgid "Interrupted system call"
msgstr ""

#: src/code/unix.lisp
msgid "I/O error"
msgstr ""

#: src/code/unix.lisp
msgid "Device not configured"
msgstr ""

#: src/code/unix.lisp
msgid "Arg list too long"
msgstr ""

#: src/code/unix.lisp
msgid "Exec format error"
msgstr ""

#: src/code/unix.lisp
msgid "Bad file descriptor"
msgstr ""

#: src/code/unix.lisp
msgid "No child process"
msgstr ""

#: src/code/unix.lisp
msgid "Resource deadlock avoided"
msgstr ""

#: src/code/unix.lisp
msgid "No more processes"
msgstr ""

#: src/code/unix.lisp
msgid "Try again"
msgstr ""

#: src/code/unix.lisp
msgid "Out of memory"
msgstr ""

#: src/code/unix.lisp
msgid "Permission denied"
msgstr ""

#: src/code/unix.lisp
msgid "Bad address"
msgstr ""

#: src/code/unix.lisp
msgid "Block device required"
msgstr ""

#: src/code/unix.lisp
msgid "Device or resource busy"
msgstr ""

#: src/code/unix.lisp
msgid "File exists"
msgstr ""

#: src/code/unix.lisp
msgid "Cross-device link"
msgstr ""

#: src/code/unix.lisp
msgid "No such device"
msgstr ""

#: src/code/unix.lisp
msgid "Not a director"
msgstr ""

#: src/code/unix.lisp
msgid "Is a directory"
msgstr ""

#: src/code/unix.lisp
msgid "Invalid argument"
msgstr ""

#: src/code/unix.lisp
msgid "File table overflow"
msgstr ""

#: src/code/unix.lisp
msgid "Too many open files"
msgstr ""

#: src/code/unix.lisp
msgid "Inappropriate ioctl for device"
msgstr ""

#: src/code/unix.lisp
msgid "Text file busy"
msgstr ""

#: src/code/unix.lisp
msgid "File too large"
msgstr ""

#: src/code/unix.lisp
msgid "No space left on device"
msgstr ""

#: src/code/unix.lisp
msgid "Illegal seek"
msgstr ""

#: src/code/unix.lisp
msgid "Read-only file system"
msgstr ""

#: src/code/unix.lisp
msgid "Too many links"
msgstr ""

#: src/code/unix.lisp
msgid "Broken pipe"
msgstr ""

#: src/code/unix.lisp
msgid "Numerical argument out of domain"
msgstr ""

#: src/code/unix.lisp
msgid "Result too large"
msgstr ""

#: src/code/unix.lisp
msgid "Math result not representable"
msgstr ""

#: src/code/unix.lisp
msgid "Operation would block"
msgstr ""

#: src/code/unix.lisp
msgid "Resource temporarily unavailable"
msgstr ""

#: src/code/unix.lisp
msgid "Operation now in progress"
msgstr ""

#: src/code/unix.lisp
msgid "Operation already in progress"
msgstr ""

#: src/code/unix.lisp
msgid "Socket operation on non-socket"
msgstr ""

#: src/code/unix.lisp
msgid "Destination address required"
msgstr ""

#: src/code/unix.lisp
msgid "Message too long"
msgstr ""

#: src/code/unix.lisp
msgid "Protocol wrong type for socket"
msgstr ""

#: src/code/unix.lisp
msgid "Protocol not available"
msgstr ""

#: src/code/unix.lisp
msgid "Protocol not supported"
msgstr ""

#: src/code/unix.lisp
msgid "Socket type not supported"
msgstr ""

#: src/code/unix.lisp
msgid "Operation not supported on socket"
msgstr ""

#: src/code/unix.lisp
msgid "Protocol family not supported"
msgstr ""

#: src/code/unix.lisp
msgid "Address family not supported by protocol family"
msgstr ""

#: src/code/unix.lisp
msgid "Address already in use"
msgstr ""

#: src/code/unix.lisp
msgid "Can't assign requested address"
msgstr ""

#: src/code/unix.lisp
msgid "Network is down"
msgstr ""

#: src/code/unix.lisp
msgid "Network is unreachable"
msgstr ""

#: src/code/unix.lisp
msgid "Network dropped connection on reset"
msgstr ""

#: src/code/unix.lisp
msgid "Software caused connection abort"
msgstr ""

#: src/code/unix.lisp
msgid "Connection reset by peer"
msgstr ""

#: src/code/unix.lisp
msgid "No buffer space available"
msgstr ""

#: src/code/unix.lisp
msgid "Socket is already connected"
msgstr ""

#: src/code/unix.lisp
msgid "Socket is not connected"
msgstr ""

#: src/code/unix.lisp
msgid "Can't send after socket shutdown"
msgstr ""

#: src/code/unix.lisp
msgid "Too many references: can't splice"
msgstr ""

#: src/code/unix.lisp
msgid "Connection timed out"
msgstr ""

#: src/code/unix.lisp
msgid "Connection refused"
msgstr ""

#: src/code/unix.lisp
msgid "Too many levels of symbolic links"
msgstr ""

#: src/code/unix.lisp
msgid "File name too long"
msgstr ""

#: src/code/unix.lisp
msgid "Host is down"
msgstr ""

#: src/code/unix.lisp
msgid "No route to host"
msgstr ""

#: src/code/unix.lisp
msgid "Directory not empty"
msgstr ""

#: src/code/unix.lisp
msgid "Too many processes"
msgstr ""

#: src/code/unix.lisp
msgid "Too many users"
msgstr ""

#: src/code/unix.lisp
msgid "Disc quota exceeded"
msgstr ""

#: src/code/unix.lisp
msgid "namei should continue locally"
msgstr ""

#: src/code/unix.lisp
msgid "namei was handled remotely"
msgstr ""

#: src/code/unix.lisp
msgid "Remote file system error _N"
msgstr ""

#: src/code/unix.lisp
msgid "syscall was handled by Vice"
msgstr ""

#: src/code/unix.lisp
msgid "No message of desired type"
msgstr ""

#: src/code/unix.lisp
msgid "Identifier removed"
msgstr ""

#: src/code/unix.lisp
msgid "Channel number out of range"
msgstr ""

#: src/code/unix.lisp
msgid "Level 2 not synchronized"
msgstr ""

#: src/code/unix.lisp
msgid "Level 3 halted"
msgstr ""

#: src/code/unix.lisp
msgid "Level 3 reset"
msgstr ""

#: src/code/unix.lisp
msgid "Link number out of range"
msgstr ""

#: src/code/unix.lisp
msgid "Protocol driver not attached"
msgstr ""

#: src/code/unix.lisp
msgid "No CSI structure available"
msgstr ""

#: src/code/unix.lisp
msgid "Level 2 halted"
msgstr ""

#: src/code/unix.lisp
msgid "Deadlock situation detected/avoided"
msgstr ""

#: src/code/unix.lisp
msgid "No record locks available"
msgstr ""

#: src/code/unix.lisp
msgid "Error 47"
msgstr ""

#: src/code/unix.lisp
msgid "Error 48"
msgstr ""

#: src/code/unix.lisp
msgid "Bad exchange descriptor"
msgstr ""

#: src/code/unix.lisp
msgid "Bad request descriptor"
msgstr ""

#: src/code/unix.lisp
msgid "Message tables full"
msgstr ""

#: src/code/unix.lisp
msgid "Anode table overflow"
msgstr ""

#: src/code/unix.lisp
msgid "Bad request code"
msgstr ""

#: src/code/unix.lisp
msgid "Invalid slot"
msgstr ""

#: src/code/unix.lisp
msgid "File locking deadlock"
msgstr ""

#: src/code/unix.lisp
msgid "Bad font file format"
msgstr ""

#: src/code/unix.lisp
msgid "Not a stream device"
msgstr ""

#: src/code/unix.lisp
msgid "No data available"
msgstr ""

#: src/code/unix.lisp
msgid "Timer expired"
msgstr ""

#: src/code/unix.lisp
msgid "Out of stream resources"
msgstr ""

#: src/code/unix.lisp
msgid "Machine is not on the network"
msgstr ""

#: src/code/unix.lisp
msgid "Package not installed"
msgstr ""

#: src/code/unix.lisp
msgid "Object is remote"
msgstr ""

#: src/code/unix.lisp
msgid "Link has been severed"
msgstr ""

#: src/code/unix.lisp
msgid "Advertise error"
msgstr ""

#: src/code/unix.lisp
msgid "Srmount error"
msgstr ""

#: src/code/unix.lisp
msgid "Communication error on send"
msgstr ""

#: src/code/unix.lisp
msgid "Protocol error"
msgstr ""

#: src/code/unix.lisp
msgid "Multihop attempted"
msgstr ""

#: src/code/unix.lisp
msgid "Not a data message"
msgstr ""

#: src/code/unix.lisp
msgid "Value too large for defined data type"
msgstr ""

#: src/code/unix.lisp
msgid "Name not unique on network"
msgstr ""

#: src/code/unix.lisp
msgid "File descriptor in bad state"
msgstr ""

#: src/code/unix.lisp
msgid "Remote address changed"
msgstr ""

#: src/code/unix.lisp
msgid "Can not access a needed shared library"
msgstr ""

#: src/code/unix.lisp
msgid "Accessing a corrupted shared library"
msgstr ""

#: src/code/unix.lisp
msgid ".lib section in a.out corrupted"
msgstr ""

#: src/code/unix.lisp
msgid "Attempting to link in more shared libraries than system limit"
msgstr ""

#: src/code/unix.lisp
msgid "Can not exec a shared library directly"
msgstr ""

#: src/code/unix.lisp
msgid "Error 88"
msgstr ""

#: src/code/unix.lisp
msgid "Operation not applicable"
msgstr ""

#: src/code/unix.lisp
msgid ""
"Number of symbolic links encountered during path name traversal exceeds "
"MAXSYMLINKS"
msgstr ""

#: src/code/unix.lisp
msgid "Error 91"
msgstr ""

#: src/code/unix.lisp
msgid "Error 92"
msgstr ""

#: src/code/unix.lisp
msgid "Option not supported by protocol"
msgstr ""

#: src/code/unix.lisp
msgid "Operation not supported on transport endpoint"
msgstr ""

#: src/code/unix.lisp
msgid "Cannot assign requested address"
msgstr ""

#: src/code/unix.lisp
msgid "Network dropped connection because of reset"
msgstr ""

#: src/code/unix.lisp
msgid "Transport endpoint is already connected"
msgstr ""

#: src/code/unix.lisp
msgid "Transport endpoint is not connected"
msgstr ""

#: src/code/unix.lisp
msgid "Cannot send after socket shutdown"
msgstr ""

#: src/code/unix.lisp
msgid "Too many references: cannot splice"
msgstr ""

#: src/code/unix.lisp
msgid "Stale NFS file handle"
msgstr ""

#: src/code/unix.lisp
msgid "Resource deadlock would occur"
msgstr ""

#: src/code/unix.lisp
msgid "Function not implemented"
msgstr ""

#: src/code/unix.lisp
msgid "Too many symbolic links encountered"
msgstr ""

#: src/code/unix.lisp
msgid "Invalid exchange"
msgstr ""

#: src/code/unix.lisp
msgid "Invalid request descriptor"
msgstr ""

#: src/code/unix.lisp
msgid "Exchange full"
msgstr ""

#: src/code/unix.lisp
msgid "No anode"
msgstr ""

#: src/code/unix.lisp
msgid "Invalid request code"
msgstr ""

#: src/code/unix.lisp
msgid "File locking deadlock error"
msgstr ""

#: src/code/unix.lisp
msgid "Device not a stream"
msgstr ""

#: src/code/unix.lisp
msgid "Out of streams resources"
msgstr ""

#: src/code/unix.lisp
msgid "RFS specific error"
msgstr ""

#: src/code/unix.lisp
msgid "Attempting to link in too many shared libraries"
msgstr ""

#: src/code/unix.lisp
msgid "Cannot exec a shared library directly"
msgstr ""

#: src/code/unix.lisp
msgid "Illegal byte sequence"
msgstr ""

#: src/code/unix.lisp
msgid "Interrupted system call should be restarted _N"
msgstr ""

#: src/code/unix.lisp
msgid "Streams pipe error"
msgstr ""

#: src/code/unix.lisp
msgid "Address family not supported by protocol"
msgstr ""

#: src/code/unix.lisp
msgid "Cannot send after transport endpoint shutdown"
msgstr ""

#: src/code/unix.lisp
msgid "Structure needs cleaning"
msgstr ""

#: src/code/unix.lisp
msgid "Not a XENIX named type file"
msgstr ""

#: src/code/unix.lisp
msgid "No XENIX semaphores available"
msgstr ""

#: src/code/unix.lisp
msgid "Is a named type file"
msgstr ""

#: src/code/unix.lisp
msgid "Remote I/O error"
msgstr ""

#: src/code/unix.lisp
msgid "Quota exceeded"
msgstr ""

#: src/code/unix.lisp
msgid ""
"Returns a string describing the error number which was returned by a\n"
"  UNIX system call."
msgstr ""

#: src/code/unix.lisp
msgid "Unknown error [~d]"
msgstr ""

#: src/code/unix.lisp
msgid ""
"Perform the UNIX select(2) system call.\n"
"  (declare (type (integer 0 #.FD-SETSIZE) num-descriptors)\n"
"	   (type (or (alien (* (struct fd-set))) null)\n"
"		 read-fds write-fds exception-fds)\n"
"	   (type (or null (unsigned-byte 31)) timeout-secs)\n"
"	   (type (unsigned-byte 31) timeout-usecs)\n"
"	   (optimize (speed 3) (safety 0) (inhibit-warnings 3)))"
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-select examines the sets of descriptors passed as arguments\n"
"   to see if they are ready for reading and writing.  See the UNIX\n"
"   Programmers Manual for more information."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-symlink creates a symbolic link named name2 to the file\n"
"   named name1.  NIL and an error number is returned if the call\n"
"   is unsuccessful."
msgstr ""

#: src/code/unix.lisp
msgid ""
"If it works, unix-gettimeofday returns 5 values: T, the seconds and\n"
"   microseconds of the current time of day, the timezone (in minutes west\n"
"   of Greenwich), and a daylight-savings flag.  If it doesn't work, it\n"
"   returns NIL and the errno."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-utimes sets the 'last-accessed' and 'last-updated'\n"
"   times on a specified file.  NIL and an error number is\n"
"   returned if the call is unsuccessful."
msgstr ""

#: src/code/unix.lisp
msgid "Unix-getpid returns the process-id of the current process."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Accepts a Unix file descriptor and returns T if the device\n"
"  associated with it is a terminal."
msgstr ""

#: src/code/unix.lisp
msgid ""
" Unix-setitimer sets the INTERVAL and VALUE slots of one of\n"
"   three system timers (:real :virtual or :profile). A SIGALRM signal\n"
"   will be delivered VALUE <seconds+microseconds> from now. INTERVAL,\n"
"   when non-zero, is <seconds+microseconds> to be loaded each time\n"
"   the timer expires. Setting INTERVAL and VALUE to zero disables\n"
"   the timer. See the Unix man page for more details. On success,\n"
"   unix-setitimer returns the old contents of the INTERVAL and VALUE\n"
"   slots as in unix-getitimer."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Return a USER-INFO structure for the user identified by UID, or NIL if not "
"found."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Return a USER-INFO structure for the user identified by UID.  If\n"
"  not found, NIL is returned with a second value indicating the cause\n"
"  of the failure.  In particular, if the second value is 0 (or\n"
"  ENONENT, ESRCH, EBADF, etc.), then the uid was not found."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-times returns information about the cpu time usage of the process\n"
"   and its children."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Unix-uname returns information from the uname(2) system call.\n"
"  The return values are\n"
"\n"
"    Name of the operating system\n"
"    Name of this node within some implementation-defined network, if any\n"
"    Release level of this operating system\n"
"    Version level of this operating system release\n"
"    Name of the hardware type on which the system is running"
msgstr ""

#: src/code/unix.lisp
msgid ""
"Get the value of the environment variable named Name.  If no such\n"
"  variable exists, Nil is returned."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Adds the environment variable named Name to the environment with\n"
"  the given Value if Name does not already exist. If Name does exist,\n"
"  the value is changed to Value if Overwrite is non-zero.  Otherwise,\n"
"  the value is not changed."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Adds or changes the environment.  Name-value must be a string of\n"
"  the form \"name=value\".  If the name does not exist, it is added.\n"
"  If name does exist, the value is updated to the given value."
msgstr ""

#: src/code/unix.lisp
msgid "Removes the variable Name from the environment"
msgstr ""

#: src/code/unix.lisp
msgid ""
"Executes the Unix execve system call.  If the system call suceeds, lisp\n"
"   will no longer be running in this process.  If the system call fails "
"this\n"
"   function returns two values: NIL and an error code.  Arg-list should be "
"a\n"
"   list of simple-strings which are passed as arguments to the exec'ed "
"program.\n"
"   Environment should be an a-list mapping symbols to simple-strings which "
"this\n"
"   function bashes together to form the environment for the exec'ed "
"program."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Executes the unix fork system call.  Returns 0 in the child and the pid\n"
"   of the child in the parent if it works, or NIL and an error number if it\n"
"   doesn't work."
msgstr ""

#: src/code/unix.lisp
msgid "Call setlocale(3c) with fixed args.  Returns 0 on success."
msgstr ""

#: src/code/unix.lisp
msgid ""
"Get LC_MESSAGES from the current locale.  If we can't, return\n"
"  NIL.  A call to UNIX-SETLOCALE must have been done previously before\n"
"  calling this so that the correct locale is returned."
msgstr ""

#: src/code/unix.lisp
msgid "Get the codeset from the locale"
msgstr ""