Skip to content
Snippets Groups Projects
Commit 6cc21d44 authored by Raymond Toy's avatar Raymond Toy
Browse files

Update with new docstrings and code changes.

parent 7b6eb217
No related branches found
No related tags found
No related merge requests found
Showing
with 10125 additions and 5980 deletions
......@@ -4771,6 +4771,10 @@ msgid ""
" otherwise."
msgstr ""
 
#: src/code/float-trap.lisp
msgid "SIGFPE with no exceptions currently enabled?"
msgstr ""
#: src/code/float-trap.lisp
msgid ""
"Execute BODY with the floating point exceptions listed in TRAPS\n"
......@@ -17397,8 +17401,8 @@ msgstr ""
msgid ""
"Similar to *BYTE-COMPILE-DEFAULT*, but controls the compilation of top-level"
"\n"
" forms (evaluated at load-time) when the :BYTE-COMPILE argument is :MAYBE\n"
" (the default.) When true, we decide to byte-compile."
" forms (evaluated at load-time) when the :BYTE-COMPILE argument is :MAYBE\n"
" (the default.) When true, we decide to byte-compile."
msgstr ""
 
#: src/compiler/main.lisp
......@@ -17436,9 +17440,9 @@ msgstr ""
#: src/compiler/main.lisp
msgid ""
"The user supplied source-info for the current compilation. \n"
"This is the :source-info argument to COMPILE-FROM-STREAM and will be\n"
"stored in the INFO slot of the DEBUG-SOURCE in code components and \n"
"in the user USER-INFO slot of STREAM-SOURCE-LOCATIONs."
" This is the :source-info argument to COMPILE-FROM-STREAM and will be\n"
" stored in the INFO slot of the DEBUG-SOURCE in code components and \n"
" in the user USER-INFO slot of STREAM-SOURCE-LOCATIONs."
msgstr ""
 
#: src/compiler/main.lisp
......@@ -17596,68 +17600,72 @@ msgstr ""
 
#: src/compiler/main.lisp
msgid ""
"Compiles Source, producing a corresponding .FASL file. Source may be a "
"list\n"
" of files, in which case the files are compiled as a unit, producing a "
"Compiles Source, producing a corresponding FASL file. Source may be a list\n"
" of files, in which case the files are compiled as a unit, producing a "
"single\n"
" .FASL file. The output file names are defaulted from the first (or only)"
" FASL file. The output file names are defaulted from the first (or only)\n"
" input file name. (The use of a list for Source is a CMUCL extension, not\n"
" specified in CLHS.)\n"
"\n"
" input file name. Other options available via keywords:\n"
" :Output-File\n"
" The name of the fasl to output, NIL for none, T for the default.\n"
" :Error-File\n"
" The name of the error listing file, NIL for none (the default), T for\n"
" .err.\n"
" :Trace-File\n"
" If specified, internal data structures are dumped to this file. T "
"for\n"
" the .trace default.\n"
" :Error-Output\n"
" If a stream, then error output is sent there as well as to the "
"listing\n"
" file. NIL suppresses this additional error output. The default is T,"
"\n"
" which means use *ERROR-OUTPUT*.\n"
" :Block-Compile {NIL | :SPECIFIED | T}\n"
" Determines whether multiple functions are compiled together as a unit,"
" These keywords are supported:\n"
"\n"
" resolving function references at compile time. NIL means that global\n"
" function names are never resolved at compilation time. :SPECIFIED "
" :Output-File\n"
" The name of the FASL to output, NIL for none, T for the default.\n"
" (Note the difference between the treatment of NIL :Output-File\n"
" here and in COMPILE-FILE-PATHNAME.) The returned pathname of the\n"
" output file may differ from the pathname of the :Output-File\n"
" parameter, e.g. when the latter is a designator for a directory.\n"
" :Load\n"
" Load the compiled file; T here requires :Output-File to be\n"
" non-NIL, as well. The default for :Load is NIL.\n"
" :Error-File\n"
" The name of the error listing file, NIL for none (the default), T for "
".err.\n"
" :Trace-File\n"
" If specified, internal data structures are dumped to this file. T for\n"
" the .trace default.\n"
" :Error-Output\n"
" If a stream, then error output is sent there as well as to the listing\n"
" file. NIL suppresses this additional error output. The default is T,\n"
" which means use *ERROR-OUTPUT*.\n"
" :Block-Compile {NIL | :SPECIFIED | T}\n"
" Determines whether multiple functions are compiled together as a unit,\n"
" resolving function references at compile time. NIL means that global\n"
" function names are never resolved at compilation time. :SPECIFIED "
"means\n"
" that names are resolved at compile-time when convenient (as in a\n"
" self-recursive call), but the compiler doesn't combine top-level "
" that names are resolved at compile-time when convenient (as in a\n"
" self-recursive call), but the compiler doesn't combine top-level "
"DEFUNs.\n"
" With :SPECIFIED, an explicit START-BLOCK declaration will enable "
"block\n"
" compilation. A value of T indicates that all forms in the file(s) "
" With :SPECIFIED, an explicit START-BLOCK declaration will enable block\n"
" compilation. A value of T indicates that all forms in the file(s) "
"should\n"
" be compiled as a unit. The default is the value of\n"
" EXT:*BLOCK-COMPILE-DEFAULT*, which is initially :SPECIFIED.\n"
" :Entry-Points\n"
" This specifies a list of function names for functions in the file(s) "
" be compiled as a unit. The default is the value of\n"
" EXT:*BLOCK-COMPILE-DEFAULT*, which is initially :SPECIFIED.\n"
" :Entry-Points\n"
" This specifies a list of function names for functions in the file(s) "
"that\n"
" must be given global definitions. This only applies to block\n"
" compilation, and is useful mainly when :BLOCK-COMPILE T is specified "
" must be given global definitions. This only applies to block\n"
" compilation, and is useful mainly when :BLOCK-COMPILE T is specified "
"on a\n"
" file that lacks START-BLOCK declarations. If the value is NIL (the\n"
" default) then all functions will be globally defined.\n"
" :Byte-Compile {T | NIL | :MAYBE}\n"
" Determines whether to compile into interpreted byte code instead of\n"
" machine instructions. Byte code is several times smaller, but much\n"
" slower. If :MAYBE, then only byte-compile when SPEED is 0 and\n"
" DEBUG <= 1. The default is the value of EXT:*BYTE-COMPILE-DEFAULT*,\n"
" which is initially :MAYBE.\n"
" :Xref\n"
" If non-NIL, enable recording of cross-reference information. The "
" file that lacks START-BLOCK declarations. If the value is NIL (the\n"
" default) then all functions will be globally defined.\n"
" :Byte-Compile {T | NIL | :MAYBE}\n"
" Determines whether to compile into interpreted byte code instead of\n"
" machine instructions. Byte code is several times smaller, but much\n"
" slower. If :MAYBE, then only byte-compile when SPEED is 0 and\n"
" DEBUG <= 1. The default is the value of EXT:*BYTE-COMPILE-DEFAULT*,\n"
" which is initially :MAYBE.\n"
" :Xref\n"
" If non-NIL, enable recording of cross-reference information. The "
"default\n"
" is the value of C:*RECORD-XREF-INFO*\n"
" :External-Format\n"
" The external format to use when opening the source file\n"
" :Decoding-Error\n"
" How to handle decoding errors in the external format when reading the\n"
" source file. Default (T) is to signal an error. Nil means silently\n"
" continue, replacing the invalid sequence with a suitable replacment\n"
" character."
" is the value of C:*RECORD-XREF-INFO*\n"
" :External-Format\n"
" The external format to use when opening the source file.\n"
" :Decoding-Error\n"
" How to handle decoding errors in the external format when reading the\n"
" source file. Default (T) is to signal an error. NIL means silently\n"
" continue, replacing the invalid sequence with a suitable replacment\n"
" character."
msgstr ""
 
#: src/compiler/main.lisp
......@@ -17683,7 +17691,7 @@ msgid ""
" be compiled. IF NAME names a macro, then the compiled expression\n"
" replaces the existing macro-function. If NAME names a function, the\n"
" compiled expression is placed in the function cell of NAME. If NAME\n"
" is Nil, the compiled code object is returned."
" is NIL, the compiled code object is returned."
msgstr ""
 
#: src/compiler/main.lisp
......@@ -17699,8 +17707,12 @@ msgstr ""
 
#: src/compiler/main.lisp
msgid ""
"Return a pathname describing what file COMPILE-FILE would write to given\n"
" these arguments."
"Return a pathname describing what file COMPILE-FILE would write to\n"
" given these arguments. The returned pathname of the output file may\n"
" differ from the pathname of the :Output-File parameter, e.g. when\n"
" the latter is a designator for a directory. The CMUCL caveat: NIL is\n"
" accepted for :Output-File there but not here, which is probably not\n"
" in line with CLHS."
msgstr ""
 
#: src/compiler/main.lisp
......
#@ cmucl-bsd-os
# @ cmucl-bsd-os
# SOME DESCRIPTIVE TITLE
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR
#
#, fuzzy
msgid ""
msgstr "Project-Id-Version: CMUCL 20B\n"
msgstr ""
"Project-Id-Version: CMUCL 20B\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
"Last-Translator: Automatic translation\n"
"Language-Team: Pig Latin (auto-translated)\n"
......@@ -20,7 +22,9 @@ msgstr "Ersionvay ingstray orfay upportingsay oftwaresay"
#: src/code/bsd-os.lisp
msgid "Returns a string describing version of the supporting software."
msgstr "Eturnsray away ingstray escribingday ersionvay ofway ethay upportingsay oftwaresay."
msgstr ""
"Eturnsray away ingstray escribingday ersionvay ofway ethay upportingsay "
"oftwaresay."
#: src/code/bsd-os.lisp
msgid "Unix system call getrusage failed: ~A."
......@@ -37,4 +41,3 @@ msgstr "Emtway instructionway"
#: src/code/signal.lisp
msgid "Bad argument to system call"
msgstr "Adbay argumentway otay ystemsay allcay"
#@ cmucl-linux-os
# @ cmucl-linux-os
# SOME DESCRIPTIVE TITLE
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR
#
#, fuzzy
msgid ""
msgstr "Project-Id-Version: CMUCL 20B\n"
msgstr ""
"Project-Id-Version: CMUCL 20B\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
"Last-Translator: Automatic translation\n"
"Language-Team: Pig Latin (auto-translated)\n"
......@@ -16,7 +18,9 @@ msgstr "Project-Id-Version: CMUCL 20B\n"
#: src/code/linux-os.lisp
msgid "Returns a string describing version of the supporting software."
msgstr "Eturnsray away ingstray escribingday ersionvay ofway ethay upportingsay oftwaresay."
msgstr ""
"Eturnsray away ingstray escribingday ersionvay ofway ethay upportingsay "
"oftwaresay."
#: src/code/linux-os.lisp
msgid "Unix system call getrusage failed: ~A."
......@@ -29,4 +33,3 @@ msgstr "Etpagesizegay ailedfay: ~Away"
#: src/code/signal.lisp
msgid "Stack fault on coprocessor"
msgstr "Tacksay aultfay onway oprocessorcay"
This diff is collapsed.
#@ cmucl-sparc-svr4
# @ cmucl-sparc-svr4
# SOME DESCRIPTIVE TITLE
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR
#
#, fuzzy
msgid ""
msgstr "Project-Id-Version: CMUCL 20B\n"
msgstr ""
"Project-Id-Version: CMUCL 20B\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
"Last-Translator: Automatic translation\n"
"Language-Team: Pig Latin (auto-translated)\n"
......@@ -16,11 +18,15 @@ msgstr "Project-Id-Version: CMUCL 20B\n"
#: src/code/sparc-svr4-vm.lisp
msgid "Returns a string describing the type of the local machine."
msgstr "Eturnsray away ingstray escribingday ethay ypetay ofway ethay ocallay achinemay."
msgstr ""
"Eturnsray away ingstray escribingday ethay ypetay ofway ethay ocallay "
"achinemay."
#: src/code/sparc-svr4-vm.lisp
msgid "Returns a string describing the version of the local machine."
msgstr "Eturnsray away ingstray escribingday ethay ersionvay ofway ethay ocallay achinemay."
msgstr ""
"Eturnsray away ingstray escribingday ethay ersionvay ofway ethay ocallay "
"achinemay."
#: src/code/sparc-svr4-vm.lisp
msgid "Unaligned instruction? offset=#x~X."
......@@ -32,7 +38,9 @@ msgstr "Ancay't ealday ithway CALL ixupsfay, etyay."
#: src/code/sparc-svr4-vm.lisp
msgid "XRS ID invalid but attempting to access double-float register ~d!"
msgstr "XRS ID invalidway utbay attemptingway otay accessway oubleday-oatflay egisterray ~d!"
msgstr ""
"XRS ID invalidway utbay attemptingway otay accessway oubleday-oatflay "
"egisterray ~d!"
#: src/code/signal.lisp
msgid "Emt instruction"
......@@ -69,4 +77,3 @@ msgstr "Eakpointbray atthay obodynay antsway?"
#: src/code/debug-int.lisp
msgid "BREAKPOINT-DO-DISPLACED-INST returned?"
msgstr "BREAKPOINT-DO-DISPLACED-INST eturnedray?"
#@ cmucl-sparc-vm
# @ cmucl-sparc-vm
# SOME DESCRIPTIVE TITLE
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR
#
#, fuzzy
msgid ""
msgstr "Project-Id-Version: CMUCL 20B\n"
msgstr ""
"Project-Id-Version: CMUCL 20B\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
"Last-Translator: Automatic translation\n"
"Language-Team: Pig Latin (auto-translated)\n"
......@@ -16,13 +18,16 @@ msgstr "Project-Id-Version: CMUCL 20B\n"
#: src/compiler/sparc/parms.lisp
msgid "Number of bits per word where a word holds one lisp descriptor."
msgstr "Umbernay ofway itsbay erpay ordway erewhay away ordway oldshay oneway isplay escriptorday."
msgstr ""
"Umbernay ofway itsbay erpay ordway erewhay away ordway oldshay oneway isplay "
"escriptorday."
#: src/compiler/sparc/parms.lisp
msgid ""
"Number of bits per byte where a byte is the smallest addressable object."
msgstr ""
"Umbernay ofway itsbay erpay ytebay erewhay away ytebay isway ethay mallestsay addressableway objectway."
"Umbernay ofway itsbay erpay ytebay erewhay away ytebay isway ethay "
"mallestsay addressableway objectway."
#: src/compiler/sparc/parms.lisp
msgid "Number of bits needed to represent a character"
......@@ -34,7 +39,9 @@ msgstr "Umbernay ofway ytesbay eedednay otay epresentray away aracterchay"
#: src/compiler/sparc/parms.lisp
msgid "Number of bits to shift between word addresses and byte addresses."
msgstr "Umbernay ofway itsbay otay iftshay etweenbay ordway addressesway andway ytebay addressesway."
msgstr ""
"Umbernay ofway itsbay otay iftshay etweenbay ordway addressesway andway "
"ytebay addressesway."
#: src/compiler/sparc/parms.lisp
msgid "Number of bytes in a word."
......@@ -42,7 +49,9 @@ msgstr "Umbernay ofway ytesbay inway away ordway."
#: src/compiler/sparc/parms.lisp
msgid "Number of bits at the low end of a pointer used for type information."
msgstr "Umbernay ofway itsbay atway ethay owlay endway ofway away ointerpay usedway orfay ypetay informationway."
msgstr ""
"Umbernay ofway itsbay atway ethay owlay endway ofway away ointerpay usedway "
"orfay ypetay informationway."
#: src/compiler/sparc/parms.lisp
msgid "Mask to extract the low tag bits from a pointer."
......@@ -53,7 +62,8 @@ msgid ""
"Exclusive upper bound on the value of the low tag bits from a\n"
" pointer."
msgstr ""
"Exclusiveway upperway oundbay onway ethay aluevay ofway ethay owlay agtay itsbay omfray away\n"
"Exclusiveway upperway oundbay onway ethay aluevay ofway ethay owlay agtay "
"itsbay omfray away\n"
" ointerpay."
#: src/compiler/sparc/parms.lisp
......@@ -81,7 +91,8 @@ msgid ""
"If non-NIL, print registers using the Lisp register names.\n"
"Otherwise, use the Sparc register names"
msgstr ""
"Ifway onnay-NIL, intpray egistersray usingway ethay Isplay egisterray amesnay.\n"
"Ifway onnay-NIL, intpray egistersray usingway ethay Isplay egisterray "
"amesnay.\n"
"Otherwiseway, useway ethay Arcspay egisterray amesnay"
#: src/compiler/sparc/array.lisp src/compiler/sparc/call.lisp
......@@ -108,8 +119,10 @@ msgid ""
"value used in a SETHI instruction. This is used to make annotations\n"
"about function addresses and register values."
msgstr ""
"Anway alistway orfay ethay isassemblerday indicatingway ethay argettay egisterray andway\n"
"aluevay usedway inway away SETHI instructionway. Isthay isway usedway otay akemay annotationsway\n"
"Anway alistway orfay ethay isassemblerday indicatingway ethay argettay "
"egisterray andway\n"
"aluevay usedway inway away SETHI instructionway. Isthay isway usedway otay "
"akemay annotationsway\n"
"aboutway unctionfay addressesway andway egisterray aluesvay."
#: src/compiler/sparc/insts.lisp
......@@ -185,7 +198,8 @@ msgid ""
"Immediate trap number ~A specified, but only trap numbers\n"
" 16 to 31 are available to the application"
msgstr ""
"Immediateway aptray umbernay ~Away ecifiedspay, utbay onlyway aptray umbersnay\n"
"Immediateway aptray umbernay ~Away ecifiedspay, utbay onlyway aptray "
"umbersnay\n"
" 16 otay 31 areway availableway otay ethay applicationway"
#: src/compiler/sparc/macros.lisp
......@@ -197,12 +211,15 @@ msgid ""
"Loads the type bits of a pointer into target independent of\n"
" byte-ordering issues."
msgstr ""
"Oadslay ethay ypetay itsbay ofway away ointerpay intoway argettay independentway ofway\n"
"Oadslay ethay ypetay itsbay ofway away ointerpay intoway argettay "
"independentway ofway\n"
" ytebay-orderingway issuesway."
#: src/compiler/sparc/macros.lisp
msgid "Jump to the lisp function FUNCTION. LIP is an interior-reg temporary."
msgstr "Umpjay otay ethay isplay unctionfay FUNCTION. LIP isway anway interiorway-egray emporarytay."
msgstr ""
"Umpjay otay ethay isplay unctionfay FUNCTION. LIP isway anway interiorway-"
"egray emporarytay."
#: src/compiler/sparc/macros.lisp
msgid "Return to RETURN-PC."
......@@ -210,15 +227,16 @@ msgstr "Eturnray otay RETURN-PC."
#: src/compiler/sparc/macros.lisp
msgid ""
"Emit a return-pc header word. LABEL is the label to use for this "
"return-pc."
"Emit a return-pc header word. LABEL is the label to use for this return-pc."
msgstr ""
"Emitway away eturnray-cpay eaderhay ordway. LABEL isway ethay abellay otay useway orfay isthay "
"eturnray-cpay."
"Emitway away eturnray-cpay eaderhay ordway. LABEL isway ethay abellay otay "
"useway orfay isthay eturnray-cpay."
#: src/compiler/sparc/macros.lisp
msgid "Move the TN Reg-Or-Stack into Reg if it isn't already there."
msgstr "Ovemay ethay TN Egray-Orway-Tacksay intoway Egray ifway itway isnway't alreadyway erethay."
msgstr ""
"Ovemay ethay TN Egray-Orway-Tacksay intoway Egray ifway itway isnway't "
"alreadyway erethay."
#: src/compiler/sparc/macros.lisp
msgid ""
......@@ -226,16 +244,18 @@ msgid ""
" word header having the specified Type-Code. The result is placed in\n"
" Result-TN, and Temp-TN is a non-descriptor temp (which may be randomly "
"used\n"
" by the body.) The body is placed inside the PSEUDO-ATOMIC, and presumably"
"\n"
" by the body.) The body is placed inside the PSEUDO-ATOMIC, and "
"presumably\n"
" initializes the object."
msgstr ""
"Oday tuffsay otay allocateway anway otherway-ointerpay objectway ofway ixedfay Izesay ithway away inglesay\n"
" ordway eaderhay avinghay ethay ecifiedspay Ypetay-Odecay. Ethay esultray isway acedplay inway\n"
" Esultray-TN, andway Emptay-TN isway away onnay-escriptorday emptay (ichwhay aymay ebay andomlyray "
"usedway\n"
" ybay ethay odybay.) Ethay odybay isway acedplay insideway ethay PSEUDO-ATOMIC, andway esumablypray"
"\n"
"Oday tuffsay otay allocateway anway otherway-ointerpay objectway ofway "
"ixedfay Izesay ithway away inglesay\n"
" ordway eaderhay avinghay ethay ecifiedspay Ypetay-Odecay. Ethay esultray "
"isway acedplay inway\n"
" Esultray-TN, andway Emptay-TN isway away onnay-escriptorday emptay "
"(ichwhay aymay ebay andomlyray usedway\n"
" ybay ethay odybay.) Ethay odybay isway acedplay insideway ethay PSEUDO-"
"ATOMIC, andway esumablypray\n"
" initializesway ethay objectway."
#: src/compiler/sparc/macros.lisp
......@@ -251,10 +271,12 @@ msgid "~S isn't an even multiple of ~S from ~S"
msgstr "~S isnway't anway evenway ultiplemay ofway ~S omfray ~S"
#: src/compiler/sparc/macros.lisp
msgid "The values ~S cover the entire range from ~\n"
" ~S to ~S [step ~S]."
msgstr "Ethay aluesvay ~S overcay ethay entireway angeray omfray ~\n"
" ~S otay ~S [tepsay ~S]."
msgid ""
"The values ~S cover the entire range from ~\n"
"\t\t\t ~S to ~S [step ~S]."
msgstr ""
"Ethay aluesvay ~S overcay ethay entireway angeray omfray ~\n"
"\t\t\t ~S otay ~S [tepsay ~S]."
#: src/compiler/sparc/macros.lisp
msgid "Must supply at least on type for test-type."
......@@ -269,10 +291,12 @@ msgid "OTHER-IMMEDIATE-n-TYPE supersedes the use of ~S"
msgstr "OTHER-IMMEDIATE-n-TYPE upersedessay ethay useway ofway ~S"
#: src/compiler/sparc/macros.lisp
msgid "Can't test for mix of function subtypes and normal ~\n"
" header types."
msgstr "Ancay't esttay orfay ixmay ofway unctionfay ubtypessay andway ormalnay ~\n"
" eaderhay ypestay."
msgid ""
"Can't test for mix of function subtypes and normal ~\n"
"\t\theader types."
msgstr ""
"Ancay't esttay orfay ixmay ofway unctionfay ubtypessay andway ormalnay ~\n"
"\t\teaderhay ypestay."
#: src/compiler/sparc/macros.lisp
msgid "Cause an error. ERROR-CODE is the error to cause."
......@@ -283,7 +307,8 @@ msgid ""
"Cause a continuable error. If the error is continued, execution resumes at\n"
" LABEL."
msgstr ""
"Ausecay away ontinuablecay errorway. Ifway ethay errorway isway ontinuedcay, executionway esumesray atway\n"
"Ausecay away ontinuablecay errorway. Ifway ethay errorway isway "
"ontinuedcay, executionway esumesray atway\n"
" LABEL."
#: src/compiler/sparc/macros.lisp
......@@ -292,7 +317,8 @@ msgid ""
" Emit code for an error with the specified Error-Code and context Values."
msgstr ""
"Enerategay-Errorway-Odecay Errorway-odecay Alue*Vay\n"
" Emitway odecay orfay anway errorway ithway ethay ecifiedspay Errorway-Odecay andway ontextcay Aluesvay."
" Emitway odecay orfay anway errorway ithway ethay ecifiedspay Errorway-"
"Odecay andway ontextcay Aluesvay."
#: src/compiler/sparc/macros.lisp
msgid ""
......@@ -302,8 +328,10 @@ msgid ""
" the GENERATE-CERROR-CODE form."
msgstr ""
"Enerategay-Errorcay-Odecay Errorway-odecay Alue*Vay\n"
" Emitway odecay orfay away ontinuablecay errorway ithway ethay ecifiedspay Errorway-Odecay andway\n"
" ontextcay Aluesvay. Ifway ethay errorway isway ontinuedcay, executionway esumesray afterway\n"
" Emitway odecay orfay away ontinuablecay errorway ithway ethay ecifiedspay "
"Errorway-Odecay andway\n"
" ontextcay Aluesvay. Ifway ethay errorway isway ontinuedcay, executionway "
"esumesray afterway\n"
" ethay GENERATE-CERROR-CODE ormfay."
#: src/compiler/sparc/move.lisp
......@@ -317,10 +345,11 @@ msgstr "onstantcay oadlay"
#: src/compiler/sparc/move.lisp
msgid ""
"Load TN allocated, but no move function?~@\n"
" VM definition inconsistent, recompile and try again."
"\t VM definition inconsistent, recompile and try again."
msgstr ""
"Oadlay TN allocatedway, utbay onay ovemay unctionfay?~@\n"
" VM efinitionday inconsistentway, ecompileray andway ytray againway."
"\t VM efinitionday inconsistentway, ecompileray andway ytray "
"againway."
#: src/compiler/sparc/move.lisp
msgid "integer to untagged word coercion"
......@@ -608,8 +637,10 @@ msgid ""
"64-bit counter is returned as two 32-bit unsigned integers. The low 32-bit\n"
"result is the first value."
msgstr ""
"Eadray ethay instructionway yclecay ountercay availableway onway Ultrasparcsway. Ethay\n"
"64-itbay ountercay isway eturnedray asway wotay 32-itbay unsignedway integersway. Ethay owlay 32-itbay\n"
"Eadray ethay instructionway yclecay ountercay availableway onway "
"Ultrasparcsway. Ethay\n"
"64-itbay ountercay isway eturnedray asway wotay 32-itbay unsignedway "
"integersway. Ethay owlay 32-itbay\n"
"esultray isway ethay irstfay aluevay."
#: src/compiler/sparc/char.lisp
......@@ -634,7 +665,9 @@ msgstr "inlineway omparisoncay"
#: src/compiler/sparc/static-fn.lisp
msgid "Either too many args (~D) or too many results (~D). Max = ~D"
msgstr "Eitherway ootay anymay argsway (~D) orway ootay anymay esultsray (~D). Axmay = ~D"
msgstr ""
"Eitherway ootay anymay argsway (~D) orway ootay anymay esultsray (~D). "
"Axmay = ~D"
#: src/compiler/sparc/arith.lisp
msgid "inline fixnum arithmetic"
......@@ -722,8 +755,10 @@ msgid ""
" in RESULT-HIGH and RESULT-LOW. KIND is either :signed or :unsigned.\n"
" Note: the lifetimes of MULTIPLICAND and RESULT-HIGH overlap."
msgstr ""
"Emitway odecay otay ultiplymay MULTIPLIER ithway MULTIPLICAND, uttingpay ethay esultray\n"
" inway RESULT-HIGH andway RESULT-LOW. KIND isway eitherway :ignedsay orway :unsignedway.\n"
"Emitway odecay otay ultiplymay MULTIPLIER ithway MULTIPLICAND, uttingpay "
"ethay esultray\n"
" inway RESULT-HIGH andway RESULT-LOW. KIND isway eitherway :ignedsay "
"orway :unsignedway.\n"
" Otenay: ethay ifetimeslay ofway MULTIPLICAND andway RESULT-HIGH overlapway."
#: src/compiler/sparc/arith.lisp
......@@ -763,7 +798,8 @@ msgid ""
"Cons up a piece of code which calls call-callback with INDEX and a\n"
"pointer to the arguments."
msgstr ""
"Onscay upway away iecepay ofway odecay ichwhay allscay allcay-allbackcay ithway INDEX andway away\n"
"Onscay upway away iecepay ofway odecay ichwhay allscay allcay-allbackcay "
"ithway INDEX andway away\n"
"ointerpay otay ethay argumentsway."
#: src/compiler/sparc/call.lisp
......@@ -785,4 +821,3 @@ msgstr "awray-itsbay VOP"
#: src/compiler/sparc/array.lisp
msgid "setf raw-bits VOP"
msgstr "etfsay awray-itsbay VOP"
#@ cmucl-sse2
# @ cmucl-sse2
# SOME DESCRIPTIVE TITLE
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR
#
#, fuzzy
msgid ""
msgstr "Project-Id-Version: CMUCL 20B\n"
msgstr ""
"Project-Id-Version: CMUCL 20B\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
"Last-Translator: Automatic translation\n"
"Language-Team: Pig Latin (auto-translated)\n"
......@@ -34,10 +36,11 @@ msgstr "oatflay otay ointerpay oercioncay"
#: src/compiler/x86/float-sse2.lisp
msgid ""
"Load TN allocated, but no move function?~@\n"
" VM definition inconsistent, recompile and try again."
"\t VM definition inconsistent, recompile and try again."
msgstr ""
"Oadlay TN allocatedway, utbay onay ovemay unctionfay?~@\n"
" VM efinitionday inconsistentway, ecompileray andway ytray againway."
"\t VM efinitionday inconsistentway, ecompileray andway ytray "
"againway."
#: src/compiler/x86/float-sse2.lisp
msgid "pointer to float coercion"
......@@ -142,4 +145,3 @@ msgstr "inlineway omplexcay oatflay arithmeticway"
#: src/compiler/x86/float-sse2.lisp
msgid "inline complex float/float arithmetic"
msgstr "inlineway omplexcay oatflay/oatflay arithmeticway"
#@ cmucl-sunos-os
# @ cmucl-sunos-os
# SOME DESCRIPTIVE TITLE
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR
#
#, fuzzy
msgid ""
msgstr "Project-Id-Version: CMUCL 20B\n"
msgstr ""
"Project-Id-Version: CMUCL 20B\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
"Last-Translator: Automatic translation\n"
"Language-Team: Pig Latin (auto-translated)\n"
......@@ -20,9 +22,10 @@ msgstr "Ersionvay ingstray orfay upportingsay oftwaresay"
#: src/code/sunos-os.lisp
msgid "Returns a string describing version of the supporting software."
msgstr "Eturnsray away ingstray escribingday ersionvay ofway ethay upportingsay oftwaresay."
msgstr ""
"Eturnsray away ingstray escribingday ersionvay ofway ethay upportingsay "
"oftwaresay."
#: src/code/sunos-os.lisp
msgid "Getpagesize failed: ~A"
msgstr "Etpagesizegay ailedfay: ~Away"
This diff is collapsed.
This diff is collapsed.
#@ cmucl-x86-vm
# @ cmucl-x86-vm
# SOME DESCRIPTIVE TITLE
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR
#
#, fuzzy
msgid ""
msgstr "Project-Id-Version: CMUCL 20B\n"
msgstr ""
"Project-Id-Version: CMUCL 20B\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
"Last-Translator: Automatic translation\n"
"Language-Team: Pig Latin (auto-translated)\n"
......@@ -16,11 +18,15 @@ msgstr "Project-Id-Version: CMUCL 20B\n"
#: src/code/x86-vm.lisp
msgid "Returns a string describing the type of the local machine."
msgstr "Eturnsray away ingstray escribingday ethay ypetay ofway ethay ocallay achinemay."
msgstr ""
"Eturnsray away ingstray escribingday ethay ypetay ofway ethay ocallay "
"achinemay."
#: src/code/x86-vm.lisp
msgid "Returns a string describing the version of the local machine."
msgstr "Eturnsray away ingstray escribingday ethay ersionvay ofway ethay ocallay achinemay."
msgstr ""
"Eturnsray away ingstray escribingday ethay ersionvay ofway ethay ocallay "
"achinemay."
#: src/code/x86-vm.lisp
msgid "Unknown code-object-fixup kind ~s."
......@@ -31,23 +37,28 @@ msgid ""
"Atomically compare object's slot value to test-value and if EQ store\n"
" new-value in the slot. The original value of the slot is returned."
msgstr ""
"Atomicallyway omparecay objectway's otslay aluevay otay esttay-aluevay andway ifway EQ toresay\n"
" ewnay-aluevay inway ethay otslay. Ethay originalway aluevay ofway ethay otslay isway eturnedray."
"Atomicallyway omparecay objectway's otslay aluevay otay esttay-aluevay "
"andway ifway EQ toresay\n"
" ewnay-aluevay inway ethay otslay. Ethay originalway aluevay ofway ethay "
"otslay isway eturnedray."
#: src/code/x86-vm.lisp
msgid ""
"Atomically compare symbol's value to test-value and if EQ store\n"
" new-value in symbol's value slot and return the original value."
msgstr ""
"Atomicallyway omparecay ymbolsay's aluevay otay esttay-aluevay andway ifway EQ toresay\n"
" ewnay-aluevay inway ymbolsay's aluevay otslay andway eturnray ethay originalway aluevay."
"Atomicallyway omparecay ymbolsay's aluevay otay esttay-aluevay andway ifway "
"EQ toresay\n"
" ewnay-aluevay inway ymbolsay's aluevay otslay andway eturnray ethay "
"originalway aluevay."
#: src/code/x86-vm.lisp
msgid ""
"Atomically compare the car of CONS to test-value and if EQ store\n"
" new-value its car and return the original value."
msgstr ""
"Atomicallyway omparecay ethay arcay ofway CONS otay esttay-aluevay andway ifway EQ toresay\n"
"Atomicallyway omparecay ethay arcay ofway CONS otay esttay-aluevay andway "
"ifway EQ toresay\n"
" ewnay-aluevay itsway arcay andway eturnray ethay originalway aluevay."
#: src/code/x86-vm.lisp
......@@ -55,7 +66,8 @@ msgid ""
"Atomically compare the cdr of CONS to test-value and if EQ store\n"
" new-value its cdr and return the original value."
msgstr ""
"Atomicallyway omparecay ethay drcay ofway CONS otay esttay-aluevay andway ifway EQ toresay\n"
"Atomicallyway omparecay ethay drcay ofway CONS otay esttay-aluevay andway "
"ifway EQ toresay\n"
" ewnay-aluevay itsway drcay andway eturnray ethay originalway aluevay."
#: src/code/x86-vm.lisp
......@@ -63,28 +75,39 @@ msgid ""
"Atomically compare an element of vector to test-value and if EQ store\n"
" new-value the element and return the original value."
msgstr ""
"Atomicallyway omparecay anway elementway ofway ectorvay otay esttay-aluevay andway ifway EQ toresay\n"
"Atomicallyway omparecay anway elementway ofway ectorvay otay esttay-aluevay "
"andway ifway EQ toresay\n"
" ewnay-aluevay ethay elementway andway eturnray ethay originalway aluevay."
#: src/code/x86-vm.lisp
msgid "Thread safe push of val onto the list in the symbol global value."
msgstr "Readthay afesay ushpay ofway alvay ontoway ethay istlay inway ethay ymbolsay obalglay aluevay."
msgstr ""
"Readthay afesay ushpay ofway alvay ontoway ethay istlay inway ethay ymbolsay "
"obalglay aluevay."
#: src/code/x86-vm.lisp
msgid "Thread safe pop from the list in the symbol global value."
msgstr "Readthay afesay oppay omfray ethay istlay inway ethay ymbolsay obalglay aluevay."
msgstr ""
"Readthay afesay oppay omfray ethay istlay inway ethay ymbolsay obalglay "
"aluevay."
#: src/code/x86-vm.lisp
msgid "Thread safe push of val onto the list in the car of cons."
msgstr "Readthay afesay ushpay ofway alvay ontoway ethay istlay inway ethay arcay ofway onscay."
msgstr ""
"Readthay afesay ushpay ofway alvay ontoway ethay istlay inway ethay arcay "
"ofway onscay."
#: src/code/x86-vm.lisp
msgid "Thread safe push of val onto the list in the cdr of cons."
msgstr "Readthay afesay ushpay ofway alvay ontoway ethay istlay inway ethay drcay ofway onscay."
msgstr ""
"Readthay afesay ushpay ofway alvay ontoway ethay istlay inway ethay drcay "
"ofway onscay."
#: src/code/x86-vm.lisp
msgid "Thread safe push of val onto the list in the vector element."
msgstr "Readthay afesay ushpay ofway alvay ontoway ethay istlay inway ethay ectorvay elementway."
msgstr ""
"Readthay afesay ushpay ofway alvay ontoway ethay istlay inway ethay ectorvay "
"elementway."
#: src/code/commandline.lisp
msgid ""
......@@ -95,12 +118,18 @@ msgid ""
" so, then SSE2 is used. If the SSE2 core file cannot be found,Lisp\n"
" will fallback to the x87 core, which can run on any machine."
msgstr ""
"Ecifiesspay atwhay indkay ofway oatingflay-ointpay upportsay ouldshay ebay usedway onway x86\n"
" ystemssay. Ifway 'x87', Isplay illway useway ethay x87 oatingflay-ointpay unitway; ifway\n"
" 'sesay2', Isplay usesway SSE2 oatingflay-ointpay unitway. Ethay efaultday isway\n"
" 'autoway',ichwhay ausescay Isplay otay eckchay otay eesay ifway SSE2 isway availableway. Ifway\n"
" osay, enthay SSE2 isway usedway. Ifway ethay SSE2 orecay ilefay annotcay ebay oundfay,Isplay\n"
" illway allbackfay otay ethay x87 orecay, ichwhay ancay unray onway anyway achinemay."
"Ecifiesspay atwhay indkay ofway oatingflay-ointpay upportsay ouldshay ebay "
"usedway onway x86\n"
" ystemssay. Ifway 'x87', Isplay illway useway ethay x87 oatingflay-ointpay "
"unitway; ifway\n"
" 'sesay2', Isplay usesway SSE2 oatingflay-ointpay unitway. Ethay efaultday "
"isway\n"
" 'autoway',ichwhay ausescay Isplay otay eckchay otay eesay ifway SSE2 isway "
"availableway. Ifway\n"
" osay, enthay SSE2 isway usedway. Ifway ethay SSE2 orecay ilefay annotcay "
"ebay oundfay,Isplay\n"
" illway allbackfay otay ethay x87 orecay, ichwhay ancay unray onway anyway "
"achinemay."
#: src/code/commandline.lisp
msgid "mode"
......@@ -120,13 +149,16 @@ msgstr "Eakpointbray atthay obodynay antsway?"
#: src/compiler/x86/parms.lisp
msgid "Number of bits per word where a word holds one lisp descriptor."
msgstr "Umbernay ofway itsbay erpay ordway erewhay away ordway oldshay oneway isplay escriptorday."
msgstr ""
"Umbernay ofway itsbay erpay ordway erewhay away ordway oldshay oneway isplay "
"escriptorday."
#: src/compiler/x86/parms.lisp
msgid ""
"Number of bits per byte where a byte is the smallest addressable object."
msgstr ""
"Umbernay ofway itsbay erpay ytebay erewhay away ytebay isway ethay mallestsay addressableway objectway."
"Umbernay ofway itsbay erpay ytebay erewhay away ytebay isway ethay "
"mallestsay addressableway objectway."
#: src/compiler/x86/parms.lisp
msgid "Number of bits needed to represent a character"
......@@ -138,7 +170,9 @@ msgstr "Umbernay ofway ytesbay eedednay otay epresentray away aracterchay"
#: src/compiler/x86/parms.lisp
msgid "Number of bits to shift between word addresses and byte addresses."
msgstr "Umbernay ofway itsbay otay iftshay etweenbay ordway addressesway andway ytebay addressesway."
msgstr ""
"Umbernay ofway itsbay otay iftshay etweenbay ordway addressesway andway "
"ytebay addressesway."
#: src/compiler/x86/parms.lisp
msgid "Number of bytes in a word."
......@@ -161,7 +195,8 @@ msgid ""
"Loads the type bits of a pointer into target independent of\n"
" byte-ordering issues."
msgstr ""
"Oadslay ethay ypetay itsbay ofway away ointerpay intoway argettay independentway ofway\n"
"Oadslay ethay ypetay itsbay ofway away ointerpay intoway argettay "
"independentway ofway\n"
" ytebay-orderingway issuesway."
#: src/compiler/x86/macros.lisp
......@@ -172,10 +207,13 @@ msgid ""
" speed vs size decision. If Dynamic-Extent is true, and otherwise\n"
" appropriate, allocate from the stack."
msgstr ""
"Allocateway anway objectway ithway away izesay inway ytesbay ivengay ybay Izesay.\n"
"Allocateway anway objectway ithway away izesay inway ytesbay ivengay ybay "
"Izesay.\n"
" Ethay izesay aymay ebay anway integerway orway away TN.\n"
" Ifway Inlineway isway away VOP odenay-arvay enthay itway isway usedway otay akemay anway appropriateway\n"
" eedspay svay izesay ecisionday. Ifway Ynamicday-Extentway isway uetray, andway otherwiseway\n"
" Ifway Inlineway isway away VOP odenay-arvay enthay itway isway usedway "
"otay akemay anway appropriateway\n"
" eedspay svay izesay ecisionday. Ifway Ynamicday-Extentway isway uetray, "
"andway otherwiseway\n"
" appropriateway, allocateway omfray ethay tacksay."
#: src/compiler/x86/macros.lisp
......@@ -184,8 +222,10 @@ msgid ""
" word header having the specified Type-Code. The result is placed in\n"
" Result-TN."
msgstr ""
"Allocateway anway otherway-ointerpay objectway ofway ixedfay Izesay ithway away inglesay\n"
" ordway eaderhay avinghay ethay ecifiedspay Ypetay-Odecay. Ethay esultray isway acedplay inway\n"
"Allocateway anway otherway-ointerpay objectway ofway ixedfay Izesay ithway "
"away inglesay\n"
" ordway eaderhay avinghay ethay ecifiedspay Ypetay-Odecay. Ethay esultray "
"isway acedplay inway\n"
" Esultray-TN."
#: src/compiler/x86/macros.lisp
......@@ -197,7 +237,8 @@ msgid ""
"Cause a continuable error. If the error is continued, execution resumes at\n"
" LABEL."
msgstr ""
"Ausecay away ontinuablecay errorway. Ifway ethay errorway isway ontinuedcay, executionway esumesray atway\n"
"Ausecay away ontinuablecay errorway. Ifway ethay errorway isway "
"ontinuedcay, executionway esumesray atway\n"
" LABEL."
#: src/compiler/x86/macros.lisp
......@@ -206,7 +247,8 @@ msgid ""
" Emit code for an error with the specified Error-Code and context Values."
msgstr ""
"Enerategay-Errorway-Odecay Errorway-odecay Alue*Vay\n"
" Emitway odecay orfay anway errorway ithway ethay ecifiedspay Errorway-Odecay andway ontextcay Aluesvay."
" Emitway odecay orfay anway errorway ithway ethay ecifiedspay Errorway-"
"Odecay andway ontextcay Aluesvay."
#: src/compiler/x86/macros.lisp
msgid ""
......@@ -216,8 +258,10 @@ msgid ""
" the GENERATE-CERROR-CODE form."
msgstr ""
"Enerategay-Errorcay-Odecay Errorway-odecay Alue*Vay\n"
" Emitway odecay orfay away ontinuablecay errorway ithway ethay ecifiedspay Errorway-Odecay andway\n"
" ontextcay Aluesvay. Ifway ethay errorway isway ontinuedcay, executionway esumesray afterway\n"
" Emitway odecay orfay away ontinuablecay errorway ithway ethay ecifiedspay "
"Errorway-Odecay andway\n"
" ontextcay Aluesvay. Ifway ethay errorway isway ontinuedcay, executionway "
"esumesray afterway\n"
" ethay GENERATE-CERROR-CODE ormfay."
#: src/compiler/x86/type-vops.lisp src/compiler/x86/pred.lisp
......@@ -245,10 +289,11 @@ msgstr "onstantcay oadlay"
#: src/compiler/x86/move.lisp
msgid ""
"Load TN allocated, but no move function?~@\n"
" VM definition inconsistent, recompile and try again."
"\t VM definition inconsistent, recompile and try again."
msgstr ""
"Oadlay TN allocatedway, utbay onay ovemay unctionfay?~@\n"
" VM efinitionday inconsistentway, ecompileray andway ytray againway."
"\t VM efinitionday inconsistentway, ecompileray andway ytray "
"againway."
#: src/compiler/x86/move.lisp
msgid "integer to untagged word coercion"
......@@ -351,7 +396,8 @@ msgid ""
"Cons up a piece of code which calls call-callback with INDEX and a\n"
"pointer to the arguments."
msgstr ""
"Onscay upway away iecepay ofway odecay ichwhay allscay allcay-allbackcay ithway INDEX andway away\n"
"Onscay upway away iecepay ofway odecay ichwhay allscay allcay-allbackcay "
"ithway INDEX andway away\n"
"ointerpay otay ethay argumentsway."
#: src/compiler/x86/call.lisp
......@@ -365,4 +411,3 @@ msgstr "inlineway arrayway accessway"
#: src/compiler/x86/array.lisp
msgid "inline array store"
msgstr "inlineway arrayway toresay"
#@ cmucl-x87
# @ cmucl-x87
# SOME DESCRIPTIVE TITLE
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR
#
#, fuzzy
msgid ""
msgstr "Project-Id-Version: CMUCL 20B\n"
msgstr ""
"Project-Id-Version: CMUCL 20B\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: YEAR-MO-DA HO:MI +ZONE\n"
"Last-Translator: Automatic translation\n"
"Language-Team: Pig Latin (auto-translated)\n"
......@@ -38,10 +40,11 @@ msgstr "oatflay otay ointerpay oercioncay"
#: src/compiler/x86/float.lisp
msgid ""
"Load TN allocated, but no move function?~@\n"
" VM definition inconsistent, recompile and try again."
"\t VM definition inconsistent, recompile and try again."
msgstr ""
"Oadlay TN allocatedway, utbay onay ovemay unctionfay?~@\n"
" VM efinitionday inconsistentway, ecompileray andway ytray againway."
"\t VM efinitionday inconsistentway, ecompileray andway ytray "
"againway."
#: src/compiler/x86/float.lisp
msgid "pointer to float coercion"
......@@ -202,4 +205,3 @@ msgstr "oubleday-oubleday owlay artpay"
#: src/compiler/x86/float.lisp
msgid "inline complex double-double-float creation"
msgstr "inlineway omplexcay oubleday-oubleday-oatflay eationcray"
This diff is collapsed.
......@@ -5316,6 +5316,14 @@ msgstr ""
msgid "Build the dictionary for CJK Unified Ideographs"
msgstr ""
 
#: src/code/unidata.lisp
msgid ""
"Load all unicode data and set *UNIDATA-PATH* to NIL.\n"
"Normally, the unicode data is loaded as needed. This loads all of the\n"
"data, which is useful for creating a core that no longer needs\n"
"unidata.bin."
msgstr ""
#: src/code/char.lisp
msgid "The upper exclusive bound on values produced by CHAR-CODE."
msgstr ""
......@@ -5974,7 +5982,7 @@ msgstr ""
#: src/code/commandline.lisp
msgid ""
"Specifies the number of megabytes that should be allocated to the\n"
" heap. If not specified, a platform- specific default is used. The\n"
" heap. If not specified, a platform-specific default is used. The\n"
" actual maximum allowed heap size is platform-specific."
msgstr ""
 
......@@ -5982,6 +5990,38 @@ msgstr ""
msgid "megabytes"
msgstr ""
 
#: src/code/commandline.lisp
msgid ""
"Specifies the number of megabytes that should be allocated for the\n"
" read-only space. If not specified, a platform-specific default is\n"
" used. The actual maximum allowed read-only size is\n"
" platform-specific."
msgstr ""
#: src/code/commandline.lisp
msgid ""
"Specifies the number of megabytes that should be allocated for the\n"
" static space. If not specified, a platform-specific default is\n"
" used. The actual maximum allowed static space size is\n"
" platform-specific."
msgstr ""
#: src/code/commandline.lisp
msgid ""
"Specifies the number of megabytes that should be allocated for the\n"
" control stack. If not specified, a platform-specific default is\n"
" used. The actual maximum allowed control stack size is\n"
" platform-specific."
msgstr ""
#: src/code/commandline.lisp
msgid ""
"Specifies the number of megabytes that should be allocated for the\n"
" binding stack. If not specified, a platform-specific default is\n"
" used. The actual maximum allowed binding stack size is\n"
" platform-specific."
msgstr ""
#: src/code/commandline.lisp
msgid ""
"A colon-separated list of directories to be used for the library:\n"
......@@ -6005,6 +6045,10 @@ msgid ""
" its default core file."
msgstr ""
 
#: src/code/commandline.lisp
msgid "Specify the unidata.bin file to be used."
msgstr ""
#: src/code/commandline.lisp
msgid "~&Usage: ~A <options>~2%"
msgstr ""
......@@ -10737,9 +10781,10 @@ msgstr ""
 
#: src/code/interr.lisp
msgid ""
"~2&~@<A control stack overflow has occurred: ~\n"
" the program has entered the yellow control stack guard zone. ~\n"
" Please note that you will be returned to the Top-Level if you ~\n"
"~2&~@<A control stack overflow has occurred:~%~\n"
" the program has entered the yellow control stack guard zone.~%~\n"
" Please note that you will be returned to the Top-Level if you~"
"%~\n"
" enter the red control stack guard zone while debugging.~@:>~2%"
msgstr ""
 
......@@ -17392,8 +17437,8 @@ msgstr ""
msgid ""
"Similar to *BYTE-COMPILE-DEFAULT*, but controls the compilation of top-"
"level\n"
" forms (evaluated at load-time) when the :BYTE-COMPILE argument is :MAYBE\n"
" (the default.) When true, we decide to byte-compile."
" forms (evaluated at load-time) when the :BYTE-COMPILE argument is :MAYBE\n"
" (the default.) When true, we decide to byte-compile."
msgstr ""
 
#: src/compiler/main.lisp
......@@ -17431,9 +17476,9 @@ msgstr ""
#: src/compiler/main.lisp
msgid ""
"The user supplied source-info for the current compilation. \n"
"This is the :source-info argument to COMPILE-FROM-STREAM and will be\n"
"stored in the INFO slot of the DEBUG-SOURCE in code components and \n"
"in the user USER-INFO slot of STREAM-SOURCE-LOCATIONs."
" This is the :source-info argument to COMPILE-FROM-STREAM and will be\n"
" stored in the INFO slot of the DEBUG-SOURCE in code components and \n"
" in the user USER-INFO slot of STREAM-SOURCE-LOCATIONs."
msgstr ""
 
#: src/compiler/main.lisp
......@@ -17591,68 +17636,72 @@ msgstr ""
 
#: src/compiler/main.lisp
msgid ""
"Compiles Source, producing a corresponding .FASL file. Source may be a "
"list\n"
" of files, in which case the files are compiled as a unit, producing a "
"Compiles Source, producing a corresponding FASL file. Source may be a list\n"
" of files, in which case the files are compiled as a unit, producing a "
"single\n"
" .FASL file. The output file names are defaulted from the first (or "
"only)\n"
" input file name. Other options available via keywords:\n"
" :Output-File\n"
" The name of the fasl to output, NIL for none, T for the default.\n"
" :Error-File\n"
" The name of the error listing file, NIL for none (the default), T for\n"
" .err.\n"
" :Trace-File\n"
" If specified, internal data structures are dumped to this file. T "
"for\n"
" the .trace default.\n"
" :Error-Output\n"
" If a stream, then error output is sent there as well as to the "
"listing\n"
" file. NIL suppresses this additional error output. The default is "
"T,\n"
" which means use *ERROR-OUTPUT*.\n"
" :Block-Compile {NIL | :SPECIFIED | T}\n"
" Determines whether multiple functions are compiled together as a "
"unit,\n"
" resolving function references at compile time. NIL means that global\n"
" function names are never resolved at compilation time. :SPECIFIED "
" FASL file. The output file names are defaulted from the first (or only)\n"
" input file name. (The use of a list for Source is a CMUCL extension, not\n"
" specified in CLHS.)\n"
"\n"
" These keywords are supported:\n"
"\n"
" :Output-File\n"
" The name of the FASL to output, NIL for none, T for the default.\n"
" (Note the difference between the treatment of NIL :Output-File\n"
" here and in COMPILE-FILE-PATHNAME.) The returned pathname of the\n"
" output file may differ from the pathname of the :Output-File\n"
" parameter, e.g. when the latter is a designator for a directory.\n"
" :Load\n"
" Load the compiled file; T here requires :Output-File to be\n"
" non-NIL, as well. The default for :Load is NIL.\n"
" :Error-File\n"
" The name of the error listing file, NIL for none (the default), T for ."
"err.\n"
" :Trace-File\n"
" If specified, internal data structures are dumped to this file. T for\n"
" the .trace default.\n"
" :Error-Output\n"
" If a stream, then error output is sent there as well as to the listing\n"
" file. NIL suppresses this additional error output. The default is T,\n"
" which means use *ERROR-OUTPUT*.\n"
" :Block-Compile {NIL | :SPECIFIED | T}\n"
" Determines whether multiple functions are compiled together as a unit,\n"
" resolving function references at compile time. NIL means that global\n"
" function names are never resolved at compilation time. :SPECIFIED "
"means\n"
" that names are resolved at compile-time when convenient (as in a\n"
" self-recursive call), but the compiler doesn't combine top-level "
" that names are resolved at compile-time when convenient (as in a\n"
" self-recursive call), but the compiler doesn't combine top-level "
"DEFUNs.\n"
" With :SPECIFIED, an explicit START-BLOCK declaration will enable "
"block\n"
" compilation. A value of T indicates that all forms in the file(s) "
" With :SPECIFIED, an explicit START-BLOCK declaration will enable block\n"
" compilation. A value of T indicates that all forms in the file(s) "
"should\n"
" be compiled as a unit. The default is the value of\n"
" EXT:*BLOCK-COMPILE-DEFAULT*, which is initially :SPECIFIED.\n"
" :Entry-Points\n"
" This specifies a list of function names for functions in the file(s) "
" be compiled as a unit. The default is the value of\n"
" EXT:*BLOCK-COMPILE-DEFAULT*, which is initially :SPECIFIED.\n"
" :Entry-Points\n"
" This specifies a list of function names for functions in the file(s) "
"that\n"
" must be given global definitions. This only applies to block\n"
" compilation, and is useful mainly when :BLOCK-COMPILE T is specified "
"on a\n"
" file that lacks START-BLOCK declarations. If the value is NIL (the\n"
" default) then all functions will be globally defined.\n"
" :Byte-Compile {T | NIL | :MAYBE}\n"
" Determines whether to compile into interpreted byte code instead of\n"
" machine instructions. Byte code is several times smaller, but much\n"
" slower. If :MAYBE, then only byte-compile when SPEED is 0 and\n"
" DEBUG <= 1. The default is the value of EXT:*BYTE-COMPILE-DEFAULT*,\n"
" which is initially :MAYBE.\n"
" :Xref\n"
" If non-NIL, enable recording of cross-reference information. The "
" must be given global definitions. This only applies to block\n"
" compilation, and is useful mainly when :BLOCK-COMPILE T is specified on "
"a\n"
" file that lacks START-BLOCK declarations. If the value is NIL (the\n"
" default) then all functions will be globally defined.\n"
" :Byte-Compile {T | NIL | :MAYBE}\n"
" Determines whether to compile into interpreted byte code instead of\n"
" machine instructions. Byte code is several times smaller, but much\n"
" slower. If :MAYBE, then only byte-compile when SPEED is 0 and\n"
" DEBUG <= 1. The default is the value of EXT:*BYTE-COMPILE-DEFAULT*,\n"
" which is initially :MAYBE.\n"
" :Xref\n"
" If non-NIL, enable recording of cross-reference information. The "
"default\n"
" is the value of C:*RECORD-XREF-INFO*\n"
" :External-Format\n"
" The external format to use when opening the source file\n"
" :Decoding-Error\n"
" How to handle decoding errors in the external format when reading the\n"
" source file. Default (T) is to signal an error. Nil means silently\n"
" continue, replacing the invalid sequence with a suitable replacment\n"
" character."
" is the value of C:*RECORD-XREF-INFO*\n"
" :External-Format\n"
" The external format to use when opening the source file.\n"
" :Decoding-Error\n"
" How to handle decoding errors in the external format when reading the\n"
" source file. Default (T) is to signal an error. NIL means silently\n"
" continue, replacing the invalid sequence with a suitable replacment\n"
" character."
msgstr ""
 
#: src/compiler/main.lisp
......@@ -17678,7 +17727,7 @@ msgid ""
" be compiled. IF NAME names a macro, then the compiled expression\n"
" replaces the existing macro-function. If NAME names a function, the\n"
" compiled expression is placed in the function cell of NAME. If NAME\n"
" is Nil, the compiled code object is returned."
" is NIL, the compiled code object is returned."
msgstr ""
 
#: src/compiler/main.lisp
......@@ -17694,8 +17743,12 @@ msgstr ""
 
#: src/compiler/main.lisp
msgid ""
"Return a pathname describing what file COMPILE-FILE would write to given\n"
" these arguments."
"Return a pathname describing what file COMPILE-FILE would write to\n"
" given these arguments. The returned pathname of the output file may\n"
" differ from the pathname of the :Output-File parameter, e.g. when\n"
" the latter is a designator for a directory. The CMUCL caveat: NIL is\n"
" accepted for :Output-File there but not here, which is probably not\n"
" in line with CLHS."
msgstr ""
 
#: src/compiler/main.lisp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment