Skip to content
Snippets Groups Projects
cmucl-unix.pot 32.1 KiB
Newer Older
#@ 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"
Raymond Toy's avatar
Raymond Toy committed
"  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 ""

rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Syscall ~A failed: ~A"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Test for read permission"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Class not yet defined: ~S"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Test for write permission"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Test for execute permission"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Test for presence of file"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid ""
"Given a file path string, unix-chdir changes the current working \n"
"   directory to the one specified."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Set user ID on execution"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Set group ID on execution"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Save text image after execution"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Read by owner"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Write by owner"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Execute (search directory) by owner"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Read by group"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Write by group"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Execute (search directory) by group"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Read by others"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Write by others"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Execute (search directory) by others"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "set the file pointer"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "increment the file pointer"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "extend the file size"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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"
Raymond Toy's avatar
Raymond Toy committed
#: 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 ""

rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid ""
"Unix-unlink removes the directory entry for the named file.\n"
"   NIL and an error code is returned if the call fails."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Read-only flag."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Write-only flag."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Read-write flag."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Non-blocking I/O"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Append flag."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Create if nonexistant flag."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Truncate flag."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Error if already exists."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Don't assign controlling tty"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Non-blocking mode"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Synchronous writes (on ext2)"
Raymond Toy's avatar
Raymond Toy committed
#: src/code/unix.lisp
msgid "Asynchronous I/O"
msgstr ""

rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
Raymond Toy's avatar
Raymond Toy committed
#: 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 ""

rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Duplicate a file descriptor"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Get file desc. flags"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Set file desc. flags"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Get file flags"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Set file flags"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Get owner"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Get lock"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Set owner"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Set lock"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Set lock, wait for release"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Non-blocking reads"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Append on each write"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Signal pgrp when data ready"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Create if nonexistant"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Truncate to zero length"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Error if already created"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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"
"   "
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
Raymond Toy's avatar
Raymond Toy committed
#: 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 ""

rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid ""
"Unix-rmdir attempts to remove the directory name.  NIL and\n"
"   an error number is returned if an error occured."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
Raymond Toy's avatar
Raymond Toy committed
#: 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 ""

rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid ""
"Unix-ioctl performs a variety of operations on open i/o\n"
"   descriptors.  See the UNIX Programmer's Manual for more\n"
"   information."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Get terminal attributes."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Set terminal attributes."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Get terminal output speed."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
"Unix-getuid returns the real user-id associated with the\n"
"   current process."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Unix-gethostname returns the name of the host machine as a string."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid ""
"Unix-gethostid returns a 32-bit integer which provides unique\n"
"   identification for the host machine."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Size of control character vector."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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"
""
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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"
""
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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"
""
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "The calling process."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Terminated child processes."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid ""
"Like call getrusage, but return only the system and user time, and returns\n"
"   the seconds and microseconds as separate values."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
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."
Raymond Toy's avatar
Raymond Toy committed
#: 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 ""

rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Returns either :file, :directory, :link, :special, or NIL."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Returns the pathname with all symbolic links resolved."
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Error reading link ~S: ~S"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Successful"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Operation not permitted"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "No such file or directory"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "No such process"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Interrupted system call"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "I/O error"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Device not configured"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Arg list too long"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Exec format error"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Bad file descriptor"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "No child process"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Resource deadlock avoided"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "No more processes"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Try again"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Out of memory"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Permission denied"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Bad address"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Block device required"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Device or resource busy"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "File exists"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Cross-device link"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "No such device"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Not a director"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Is a directory"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Invalid argument"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "File table overflow"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Too many open files"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Inappropriate ioctl for device"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Text file busy"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "File too large"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "No space left on device"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Illegal seek"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Read-only file system"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Too many links"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Broken pipe"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Numerical argument out of domain"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Result too large"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Math result not representable"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Operation would block"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Resource temporarily unavailable"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Operation now in progress"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Operation already in progress"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Socket operation on non-socket"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Destination address required"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Message too long"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Protocol wrong type for socket"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Protocol not available"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Protocol not supported"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Socket type not supported"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Operation not supported on socket"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Protocol family not supported"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Address family not supported by protocol family"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Address already in use"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Can't assign requested address"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Network is down"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Network is unreachable"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Network dropped connection on reset"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Software caused connection abort"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Connection reset by peer"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "No buffer space available"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Socket is already connected"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Socket is not connected"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Can't send after socket shutdown"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Too many references: can't splice"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Connection timed out"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Connection refused"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Too many levels of symbolic links"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "File name too long"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Host is down"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "No route to host"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Directory not empty"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Too many processes"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Too many users"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Disc quota exceeded"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "namei should continue locally"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "namei was handled remotely"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Remote file system error _N"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "syscall was handled by Vice"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "No message of desired type"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Identifier removed"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Channel number out of range"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Level 2 not synchronized"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Level 3 halted"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Level 3 reset"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Link number out of range"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Protocol driver not attached"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "No CSI structure available"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Level 2 halted"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Deadlock situation detected/avoided"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "No record locks available"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Error 47"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Error 48"
rtoy's avatar
rtoy committed
#: src/code/unix.lisp
Raymond Toy's avatar
Raymond Toy committed
msgid "Bad exchange descriptor"