From aee3c0972a8ab410dfba258e5a6b9b5099c23e0a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 21 Nov 2021 00:12:03 +0000 Subject: [PATCH 1/2] sync with cpython cf8c8788 --- faq/library.po | 205 ++++++++++++++++++++++----------------------- faq/programming.po | 4 +- 2 files changed, 103 insertions(+), 106 deletions(-) diff --git a/faq/library.po b/faq/library.po index 2d69437aae..a2f48cb9d9 100644 --- a/faq/library.po +++ b/faq/library.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-26 16:47+0000\n" +"POT-Creation-Date: 2021-11-21 00:09+0000\n" "PO-Revision-Date: 2018-05-23 14:35+0000\n" "Last-Translator: Adrian Liaw \n" "Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-" @@ -296,40 +296,34 @@ msgid "" "the low-level primitives provided by the :mod:`_thread` module." msgstr "" -#: ../../faq/library.rst:246 -msgid "" -"Aahz has a set of slides from his threading tutorial that are helpful; see " -"http://www.pythoncraft.com/OSCON2001/." -msgstr "" - -#: ../../faq/library.rst:251 +#: ../../faq/library.rst:248 msgid "None of my threads seem to run: why?" msgstr "" -#: ../../faq/library.rst:253 +#: ../../faq/library.rst:250 msgid "" "As soon as the main thread exits, all threads are killed. Your main thread " "is running too quickly, giving the threads no time to do any work." msgstr "" -#: ../../faq/library.rst:256 +#: ../../faq/library.rst:253 msgid "" "A simple fix is to add a sleep to the end of the program that's long enough " "for all the threads to finish::" msgstr "" -#: ../../faq/library.rst:271 +#: ../../faq/library.rst:268 msgid "" "But now (on many platforms) the threads don't run in parallel, but appear to " "run sequentially, one at a time! The reason is that the OS thread scheduler " "doesn't start a new thread until the previous thread is blocked." msgstr "" -#: ../../faq/library.rst:275 +#: ../../faq/library.rst:272 msgid "A simple fix is to add a tiny sleep to the start of the run function::" msgstr "" -#: ../../faq/library.rst:288 +#: ../../faq/library.rst:285 msgid "" "Instead of trying to guess a good delay value for :func:`time.sleep`, it's " "better to use some kind of semaphore mechanism. One idea is to use the :mod:" @@ -338,17 +332,17 @@ msgid "" "the queue as there are threads." msgstr "" -#: ../../faq/library.rst:296 +#: ../../faq/library.rst:293 msgid "How do I parcel out work among a bunch of worker threads?" msgstr "" -#: ../../faq/library.rst:298 +#: ../../faq/library.rst:295 msgid "" "The easiest way is to use the :mod:`concurrent.futures` module, especially " "the :mod:`~concurrent.futures.ThreadPoolExecutor` class." msgstr "" -#: ../../faq/library.rst:301 +#: ../../faq/library.rst:298 msgid "" "Or, if you want fine control over the dispatching algorithm, you can write " "your own logic manually. Use the :mod:`queue` module to create a queue " @@ -358,25 +352,25 @@ msgid "" "necessary to ensure that each job is handed out exactly once." msgstr "" -#: ../../faq/library.rst:308 +#: ../../faq/library.rst:305 msgid "Here's a trivial example::" msgstr "" -#: ../../faq/library.rst:346 +#: ../../faq/library.rst:343 msgid "When run, this will produce the following output:" msgstr "" -#: ../../faq/library.rst:364 +#: ../../faq/library.rst:361 msgid "" "Consult the module's documentation for more details; the :class:`~queue." "Queue` class provides a featureful interface." msgstr "" -#: ../../faq/library.rst:369 +#: ../../faq/library.rst:366 msgid "What kinds of global value mutation are thread-safe?" msgstr "" -#: ../../faq/library.rst:371 +#: ../../faq/library.rst:368 msgid "" "A :term:`global interpreter lock` (GIL) is used internally to ensure that " "only one thread runs in the Python VM at a time. In general, Python offers " @@ -386,7 +380,7 @@ msgid "" "instruction is therefore atomic from the point of view of a Python program." msgstr "" -#: ../../faq/library.rst:378 +#: ../../faq/library.rst:375 msgid "" "In theory, this means an exact accounting requires an exact understanding of " "the PVM bytecode implementation. In practice, it means that operations on " @@ -394,17 +388,17 @@ msgid "" "\"look atomic\" really are." msgstr "" -#: ../../faq/library.rst:383 +#: ../../faq/library.rst:380 msgid "" "For example, the following operations are all atomic (L, L1, L2 are lists, " "D, D1, D2 are dicts, x, y are objects, i, j are ints)::" msgstr "" -#: ../../faq/library.rst:398 +#: ../../faq/library.rst:395 msgid "These aren't::" msgstr "" -#: ../../faq/library.rst:405 +#: ../../faq/library.rst:402 msgid "" "Operations that replace other objects may invoke those other objects' :meth:" "`__del__` method when their reference count reaches zero, and that can " @@ -412,11 +406,11 @@ msgid "" "and lists. When in doubt, use a mutex!" msgstr "" -#: ../../faq/library.rst:412 +#: ../../faq/library.rst:409 msgid "Can't we get rid of the Global Interpreter Lock?" msgstr "" -#: ../../faq/library.rst:416 +#: ../../faq/library.rst:413 msgid "" "The :term:`global interpreter lock` (GIL) is often seen as a hindrance to " "Python's deployment on high-end multiprocessor server machines, because a " @@ -424,7 +418,7 @@ msgid "" "insistence that (almost) all Python code can only run while the GIL is held." msgstr "" -#: ../../faq/library.rst:421 +#: ../../faq/library.rst:418 msgid "" "Back in the days of Python 1.5, Greg Stein actually implemented a " "comprehensive patch set (the \"free threading\" patches) that removed the " @@ -436,7 +430,7 @@ msgid "" "removal of the GIL." msgstr "" -#: ../../faq/library.rst:429 +#: ../../faq/library.rst:426 msgid "" "This doesn't mean that you can't make good use of Python on multi-CPU " "machines! You just have to be creative with dividing the work up between " @@ -447,7 +441,7 @@ msgid "" "dispatching of tasks." msgstr "" -#: ../../faq/library.rst:437 +#: ../../faq/library.rst:434 msgid "" "Judicious use of C extensions will also help; if you use a C extension to " "perform a time-consuming task, the extension can release the GIL while the " @@ -456,7 +450,7 @@ msgid "" "`hashlib` already do this." msgstr "" -#: ../../faq/library.rst:443 +#: ../../faq/library.rst:440 msgid "" "It has been suggested that the GIL should be a per-interpreter-state lock " "rather than truly global; interpreters then wouldn't be able to share " @@ -468,7 +462,7 @@ msgid "" "the interpreter state. And so on." msgstr "" -#: ../../faq/library.rst:452 +#: ../../faq/library.rst:449 msgid "" "And I doubt that it can even be done in finite time, because the same " "problem exists for 3rd party extensions. It is likely that 3rd party " @@ -476,28 +470,28 @@ msgid "" "store all their global state in the interpreter state." msgstr "" -#: ../../faq/library.rst:457 +#: ../../faq/library.rst:454 msgid "" "And finally, once you have multiple interpreters not sharing any state, what " "have you gained over running each interpreter in a separate process?" msgstr "" -#: ../../faq/library.rst:462 +#: ../../faq/library.rst:459 msgid "Input and Output" msgstr "" -#: ../../faq/library.rst:465 +#: ../../faq/library.rst:462 msgid "How do I delete a file? (And other file questions...)" msgstr "" -#: ../../faq/library.rst:467 +#: ../../faq/library.rst:464 msgid "" "Use ``os.remove(filename)`` or ``os.unlink(filename)``; for documentation, " "see the :mod:`os` module. The two functions are identical; :func:`~os." "unlink` is simply the name of the Unix system call for this function." msgstr "" -#: ../../faq/library.rst:471 +#: ../../faq/library.rst:468 msgid "" "To remove a directory, use :func:`os.rmdir`; use :func:`os.mkdir` to create " "one. ``os.makedirs(path)`` will create any intermediate directories in " @@ -506,11 +500,11 @@ msgid "" "directory tree and its contents, use :func:`shutil.rmtree`." msgstr "" -#: ../../faq/library.rst:477 +#: ../../faq/library.rst:474 msgid "To rename a file, use ``os.rename(old_path, new_path)``." msgstr "" -#: ../../faq/library.rst:479 +#: ../../faq/library.rst:476 msgid "" "To truncate a file, open it using ``f = open(filename, \"rb+\")``, and use " "``f.truncate(offset)``; offset defaults to the current seek position. " @@ -518,54 +512,54 @@ msgid "" "open`, where *fd* is the file descriptor (a small integer)." msgstr "" -#: ../../faq/library.rst:484 +#: ../../faq/library.rst:481 msgid "" "The :mod:`shutil` module also contains a number of functions to work on " "files including :func:`~shutil.copyfile`, :func:`~shutil.copytree`, and :" "func:`~shutil.rmtree`." msgstr "" -#: ../../faq/library.rst:490 +#: ../../faq/library.rst:487 msgid "How do I copy a file?" msgstr "" -#: ../../faq/library.rst:492 +#: ../../faq/library.rst:489 msgid "" "The :mod:`shutil` module contains a :func:`~shutil.copyfile` function. Note " "that on MacOS 9 it doesn't copy the resource fork and Finder info." msgstr "" -#: ../../faq/library.rst:497 +#: ../../faq/library.rst:494 msgid "How do I read (or write) binary data?" msgstr "" -#: ../../faq/library.rst:499 +#: ../../faq/library.rst:496 msgid "" "To read or write complex binary data formats, it's best to use the :mod:" "`struct` module. It allows you to take a string containing binary data " "(usually numbers) and convert it to Python objects; and vice versa." msgstr "" -#: ../../faq/library.rst:503 +#: ../../faq/library.rst:500 msgid "" "For example, the following code reads two 2-byte integers and one 4-byte " "integer in big-endian format from a file::" msgstr "" -#: ../../faq/library.rst:512 +#: ../../faq/library.rst:509 msgid "" "The '>' in the format string forces big-endian data; the letter 'h' reads " "one \"short integer\" (2 bytes), and 'l' reads one \"long integer\" (4 " "bytes) from the string." msgstr "" -#: ../../faq/library.rst:516 +#: ../../faq/library.rst:513 msgid "" "For data that is more regular (e.g. a homogeneous list of ints or floats), " "you can also use the :mod:`array` module." msgstr "" -#: ../../faq/library.rst:521 +#: ../../faq/library.rst:518 msgid "" "To read and write binary data, it is mandatory to open the file in binary " "mode (here, passing ``\"rb\"`` to :func:`open`). If you use ``\"r\"`` " @@ -573,11 +567,11 @@ msgid "" "will return :class:`str` objects rather than :class:`bytes` objects." msgstr "" -#: ../../faq/library.rst:529 +#: ../../faq/library.rst:526 msgid "I can't seem to use os.read() on a pipe created with os.popen(); why?" msgstr "" -#: ../../faq/library.rst:531 +#: ../../faq/library.rst:528 msgid "" ":func:`os.read` is a low-level function which takes a file descriptor, a " "small integer representing the opened file. :func:`os.popen` creates a high-" @@ -586,37 +580,37 @@ msgid "" "popen`, you need to use ``p.read(n)``." msgstr "" -#: ../../faq/library.rst:618 +#: ../../faq/library.rst:615 msgid "How do I access the serial (RS232) port?" msgstr "" -#: ../../faq/library.rst:620 -msgid "For Win32, POSIX (Linux, BSD, etc.), Jython:" +#: ../../faq/library.rst:617 +msgid "For Win32, OSX, Linux, BSD, Jython, IronPython:" msgstr "" -#: ../../faq/library.rst:622 -msgid "http://pyserial.sourceforge.net" -msgstr "http://pyserial.sourceforge.net" +#: ../../faq/library.rst:619 +msgid "https://pypi.org/project/pyserial/" +msgstr "" -#: ../../faq/library.rst:624 +#: ../../faq/library.rst:621 msgid "For Unix, see a Usenet post by Mitch Chapman:" msgstr "" -#: ../../faq/library.rst:626 +#: ../../faq/library.rst:623 msgid "https://groups.google.com/groups?selm=34A04430.CF9@ohioee.com" msgstr "https://groups.google.com/groups?selm=34A04430.CF9@ohioee.com" -#: ../../faq/library.rst:630 +#: ../../faq/library.rst:627 msgid "Why doesn't closing sys.stdout (stdin, stderr) really close it?" msgstr "" -#: ../../faq/library.rst:632 +#: ../../faq/library.rst:629 msgid "" "Python :term:`file objects ` are a high-level layer of " "abstraction on low-level C file descriptors." msgstr "" -#: ../../faq/library.rst:635 +#: ../../faq/library.rst:632 msgid "" "For most file objects you create in Python via the built-in :func:`open` " "function, ``f.close()`` marks the Python file object as being closed from " @@ -625,7 +619,7 @@ msgid "" "``f`` becomes garbage." msgstr "" -#: ../../faq/library.rst:641 +#: ../../faq/library.rst:638 msgid "" "But stdin, stdout and stderr are treated specially by Python, because of the " "special status also given to them by C. Running ``sys.stdout.close()`` " @@ -633,94 +627,94 @@ msgid "" "associated C file descriptor." msgstr "" -#: ../../faq/library.rst:646 +#: ../../faq/library.rst:643 msgid "" "To close the underlying C file descriptor for one of these three, you should " "first be sure that's what you really want to do (e.g., you may confuse " "extension modules trying to do I/O). If it is, use :func:`os.close`::" msgstr "" -#: ../../faq/library.rst:654 +#: ../../faq/library.rst:651 msgid "Or you can use the numeric constants 0, 1 and 2, respectively." msgstr "" -#: ../../faq/library.rst:658 +#: ../../faq/library.rst:655 msgid "Network/Internet Programming" msgstr "" -#: ../../faq/library.rst:661 +#: ../../faq/library.rst:658 msgid "What WWW tools are there for Python?" msgstr "" -#: ../../faq/library.rst:663 +#: ../../faq/library.rst:660 msgid "" "See the chapters titled :ref:`internet` and :ref:`netdata` in the Library " "Reference Manual. Python has many modules that will help you build server-" "side and client-side web systems." msgstr "" -#: ../../faq/library.rst:669 +#: ../../faq/library.rst:666 msgid "" "A summary of available frameworks is maintained by Paul Boddie at https://" "wiki.python.org/moin/WebProgramming\\ ." msgstr "" -#: ../../faq/library.rst:672 +#: ../../faq/library.rst:669 msgid "" "Cameron Laird maintains a useful set of pages about Python web technologies " "at http://phaseit.net/claird/comp.lang.python/web_python." msgstr "" -#: ../../faq/library.rst:677 +#: ../../faq/library.rst:674 msgid "How can I mimic CGI form submission (METHOD=POST)?" msgstr "" -#: ../../faq/library.rst:679 +#: ../../faq/library.rst:676 msgid "" "I would like to retrieve web pages that are the result of POSTing a form. Is " "there existing code that would let me do this easily?" msgstr "" -#: ../../faq/library.rst:682 +#: ../../faq/library.rst:679 msgid "Yes. Here's a simple example that uses :mod:`urllib.request`::" msgstr "" -#: ../../faq/library.rst:697 +#: ../../faq/library.rst:694 msgid "" "Note that in general for percent-encoded POST operations, query strings must " "be quoted using :func:`urllib.parse.urlencode`. For example, to send " "``name=Guy Steele, Jr.``::" msgstr "" -#: ../../faq/library.rst:705 +#: ../../faq/library.rst:702 msgid ":ref:`urllib-howto` for extensive examples." msgstr "" -#: ../../faq/library.rst:709 +#: ../../faq/library.rst:706 msgid "What module should I use to help with generating HTML?" msgstr "" -#: ../../faq/library.rst:713 +#: ../../faq/library.rst:710 msgid "" "You can find a collection of useful links on the `Web Programming wiki page " "`_." msgstr "" -#: ../../faq/library.rst:718 +#: ../../faq/library.rst:715 msgid "How do I send mail from a Python script?" msgstr "" -#: ../../faq/library.rst:720 +#: ../../faq/library.rst:717 msgid "Use the standard library module :mod:`smtplib`." msgstr "" -#: ../../faq/library.rst:722 +#: ../../faq/library.rst:719 msgid "" "Here's a very simple interactive mail sender that uses it. This method will " "work on any host that supports an SMTP listener. ::" msgstr "" -#: ../../faq/library.rst:742 +#: ../../faq/library.rst:739 msgid "" "A Unix-only alternative uses sendmail. The location of the sendmail program " "varies between systems; sometimes it is ``/usr/lib/sendmail``, sometimes ``/" @@ -728,17 +722,17 @@ msgid "" "some sample code::" msgstr "" -#: ../../faq/library.rst:762 +#: ../../faq/library.rst:759 msgid "How do I avoid blocking in the connect() method of a socket?" msgstr "" -#: ../../faq/library.rst:764 +#: ../../faq/library.rst:761 msgid "" "The :mod:`select` module is commonly used to help with asynchronous I/O on " "sockets." msgstr "" -#: ../../faq/library.rst:767 +#: ../../faq/library.rst:764 msgid "" "To prevent the TCP connect from blocking, you can set the socket to non-" "blocking mode. Then when you do the :meth:`socket.connect`, you will either " @@ -748,7 +742,7 @@ msgid "" "values, so you're going to have to check what's returned on your system." msgstr "" -#: ../../faq/library.rst:774 +#: ../../faq/library.rst:771 msgid "" "You can use the :meth:`socket.connect_ex` method to avoid creating an " "exception. It will just return the errno value. To poll, you can call :" @@ -757,7 +751,7 @@ msgid "" "select` to check if it's writable." msgstr "" -#: ../../faq/library.rst:780 +#: ../../faq/library.rst:777 msgid "" "The :mod:`asyncio` module provides a general purpose single-threaded and " "concurrent asynchronous library, which can be used for writing non-blocking " @@ -765,19 +759,19 @@ msgid "" "library is a popular and feature-rich alternative." msgstr "" -#: ../../faq/library.rst:788 +#: ../../faq/library.rst:785 msgid "Databases" msgstr "" -#: ../../faq/library.rst:791 +#: ../../faq/library.rst:788 msgid "Are there any interfaces to database packages in Python?" msgstr "" -#: ../../faq/library.rst:793 +#: ../../faq/library.rst:790 msgid "Yes." msgstr "有的" -#: ../../faq/library.rst:795 +#: ../../faq/library.rst:792 msgid "" "Interfaces to disk-based hashes such as :mod:`DBM ` and :mod:`GDBM " "` are also included with standard Python. There is also the :mod:" @@ -785,18 +779,18 @@ msgid "" "database." msgstr "" -#: ../../faq/library.rst:800 +#: ../../faq/library.rst:797 msgid "" "Support for most relational databases is available. See the " "`DatabaseProgramming wiki page `_ for details." msgstr "" -#: ../../faq/library.rst:806 +#: ../../faq/library.rst:803 msgid "How do you implement persistent objects in Python?" msgstr "" -#: ../../faq/library.rst:808 +#: ../../faq/library.rst:805 msgid "" "The :mod:`pickle` library module solves this in a very general way (though " "you still can't store things like open files, sockets or windows), and the :" @@ -804,56 +798,59 @@ msgid "" "mappings containing arbitrary Python objects." msgstr "" -#: ../../faq/library.rst:815 +#: ../../faq/library.rst:812 msgid "Mathematics and Numerics" msgstr "" -#: ../../faq/library.rst:818 +#: ../../faq/library.rst:815 msgid "How do I generate random numbers in Python?" msgstr "" -#: ../../faq/library.rst:820 +#: ../../faq/library.rst:817 msgid "" "The standard module :mod:`random` implements a random number generator. " "Usage is simple::" msgstr "" -#: ../../faq/library.rst:826 +#: ../../faq/library.rst:823 msgid "This returns a random floating point number in the range [0, 1)." msgstr "" -#: ../../faq/library.rst:828 +#: ../../faq/library.rst:825 msgid "" "There are also many other specialized generators in this module, such as:" msgstr "" -#: ../../faq/library.rst:830 +#: ../../faq/library.rst:827 msgid "``randrange(a, b)`` chooses an integer in the range [a, b)." msgstr "" -#: ../../faq/library.rst:831 +#: ../../faq/library.rst:828 msgid "``uniform(a, b)`` chooses a floating point number in the range [a, b)." msgstr "" -#: ../../faq/library.rst:832 +#: ../../faq/library.rst:829 msgid "" "``normalvariate(mean, sdev)`` samples the normal (Gaussian) distribution." msgstr "" -#: ../../faq/library.rst:834 +#: ../../faq/library.rst:831 msgid "Some higher-level functions operate on sequences directly, such as:" msgstr "" -#: ../../faq/library.rst:836 +#: ../../faq/library.rst:833 msgid "``choice(S)`` chooses a random element from a given sequence." msgstr "" -#: ../../faq/library.rst:837 +#: ../../faq/library.rst:834 msgid "``shuffle(L)`` shuffles a list in-place, i.e. permutes it randomly." msgstr "" -#: ../../faq/library.rst:839 +#: ../../faq/library.rst:836 msgid "" "There's also a ``Random`` class you can instantiate to create independent " "multiple random number generators." msgstr "" + +#~ msgid "http://pyserial.sourceforge.net" +#~ msgstr "http://pyserial.sourceforge.net" diff --git a/faq/programming.po b/faq/programming.po index 1a416acf83..1c06e24344 100644 --- a/faq/programming.po +++ b/faq/programming.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-26 16:47+0000\n" +"POT-Creation-Date: 2021-11-21 00:09+0000\n" "PO-Revision-Date: 2018-05-23 14:35+0000\n" "Last-Translator: Adrian Liaw \n" "Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-" @@ -2261,7 +2261,7 @@ msgstr "" #: ../../faq/programming.rst:2095 msgid "" -"van Rossum doesn't like this approach much because the imports appear in a " +"Van Rossum doesn't like this approach much because the imports appear in a " "strange place, but it does work." msgstr "" From 8b8aa5ccc2ae6469811b278f728ca8c572cfc879 Mon Sep 17 00:00:00 2001 From: "Matt.Wang" Date: Mon, 22 Nov 2021 16:35:48 +0800 Subject: [PATCH 2/2] chore: resolve/fix some simple translations --- c-api/arg.po | 136 +++---- c-api/buffer.po | 2 +- c-api/bytes.po | 2 +- c-api/call.po | 12 +- c-api/concrete.po | 10 +- c-api/coro.po | 2 +- c-api/dict.po | 3 + c-api/exceptions.po | 2 +- c-api/import.po | 2 +- c-api/init.po | 19 +- c-api/init_config.po | 37 +- c-api/intro.po | 7 +- c-api/memory.po | 4 +- c-api/memoryview.po | 2 +- c-api/module.po | 5 +- c-api/none.po | 2 +- c-api/refcounting.po | 6 + c-api/reflection.po | 2 +- c-api/structures.po | 4 +- c-api/type.po | 4 +- c-api/typeobj.po | 58 +-- c-api/unicode.po | 2 +- distutils/apiref.po | 108 +++--- distutils/builtdist.po | 36 +- distutils/commandref.po | 2 +- distutils/index.po | 6 +- distutils/introduction.po | 4 +- distutils/setupscript.po | 29 +- extending/extending.po | 7 +- extending/newtypes.po | 8 +- extending/newtypes_tutorial.po | 2 +- faq/design.po | 2 +- faq/extending.po | 2 +- faq/general.po | 2 +- faq/gui.po | 2 +- faq/library.po | 17 +- faq/programming.po | 35 +- faq/windows.po | 2 +- howto/annotations.po | 6 +- howto/argparse.po | 13 +- howto/clinic.po | 42 +- howto/curses.po | 15 +- howto/descriptor.po | 26 +- howto/functional.po | 11 +- howto/instrumentation.po | 11 +- howto/ipaddress.po | 10 +- howto/logging-cookbook.po | 10 +- howto/logging.po | 27 +- howto/pyporting.po | 12 +- howto/regex.po | 6 +- howto/sockets.po | 8 +- howto/sorting.po | 8 +- howto/unicode.po | 8 +- howto/urllib2.po | 9 +- install/index.po | 18 +- library/2to3.po | 2 +- library/__future__.po | 14 +- library/abc.po | 2 +- library/aifc.po | 4 +- library/argparse.po | 31 +- library/ast.po | 4 +- library/asynchat.po | 2 +- library/asyncio-api-index.po | 6 +- library/asyncio-dev.po | 3 + library/asyncio-eventloop.po | 33 +- library/asyncio-exceptions.po | 4 +- library/asyncio-future.po | 6 +- library/asyncio-llapi-index.po | 2 +- library/asyncio-platforms.po | 10 +- library/asyncio-policy.po | 2 +- library/asyncio-protocol.po | 8 +- library/asyncio-queue.po | 6 +- library/asyncio-stream.po | 9 +- library/asyncio-subprocess.po | 4 +- library/asyncio-sync.po | 5 +- library/asyncio-task.po | 10 +- library/asyncore.po | 4 +- library/atexit.po | 4 +- library/base64.po | 4 +- library/bdb.po | 2 +- library/binascii.po | 8 +- library/binhex.po | 4 +- library/bisect.po | 4 +- library/builtins.po | 2 +- library/bz2.po | 4 +- library/calendar.po | 9 +- library/cgi.po | 4 +- library/cgitb.po | 2 +- library/chunk.po | 12 +- library/cmath.po | 2 +- library/cmd.po | 4 +- library/code.po | 2 +- library/codecs.po | 468 ++++++++++++----------- library/codeop.po | 2 +- library/collections.abc.po | 41 +- library/colorsys.po | 19 +- library/compileall.po | 4 +- library/concurrent.futures.po | 21 +- library/configparser.po | 12 +- library/contextlib.po | 17 +- library/contextvars.po | 3 + library/copy.po | 4 +- library/copyreg.po | 4 +- library/crypt.po | 12 +- library/csv.po | 11 +- library/ctypes.po | 5 +- library/curses.panel.po | 2 +- library/curses.po | 8 +- library/datetime.po | 66 ++-- library/dbm.po | 10 +- library/decimal.po | 4 +- library/dialog.po | 8 +- library/difflib.po | 17 +- library/dis.po | 5 +- library/doctest.po | 17 +- library/email.charset.po | 2 +- library/email.compat32-message.po | 3 + library/email.contentmanager.po | 4 +- library/email.encoders.po | 2 +- library/email.errors.po | 2 +- library/email.examples.po | 2 +- library/email.generator.po | 2 +- library/email.header.po | 5 +- library/email.headerregistry.po | 68 ++-- library/email.iterators.po | 2 +- library/email.message.po | 7 +- library/email.mime.po | 18 +- library/email.parser.po | 2 +- library/email.po | 14 +- library/email.policy.po | 12 +- library/email.utils.po | 4 +- library/ensurepip.po | 4 +- library/enum.po | 8 +- library/faulthandler.po | 2 +- library/fcntl.po | 7 +- library/filecmp.po | 2 +- library/fileinput.po | 4 +- library/fnmatch.po | 6 +- library/fractions.po | 4 +- library/ftplib.po | 6 +- library/functools.po | 10 +- library/getopt.po | 4 +- library/getpass.po | 2 +- library/gettext.po | 11 +- library/glob.po | 4 +- library/graphlib.po | 4 +- library/grp.po | 16 +- library/gzip.po | 4 +- library/hashlib.po | 38 +- library/heapq.po | 2 +- library/hmac.po | 4 +- library/html.entities.po | 2 +- library/html.parser.po | 4 +- library/html.po | 2 +- library/http.client.po | 10 +- library/http.cookiejar.po | 22 +- library/http.cookies.po | 28 +- library/http.po | 9 +- library/http.server.po | 4 +- library/idle.po | 20 +- library/imaplib.po | 9 +- library/imghdr.po | 5 +- library/imp.po | 4 +- library/importlib.metadata.po | 4 +- library/importlib.po | 26 +- library/inspect.po | 22 +- library/io.po | 17 +- library/ipaddress.po | 4 +- library/itertools.po | 12 +- library/json.po | 22 +- library/keyword.po | 2 +- library/linecache.po | 5 +- library/locale.po | 51 +-- library/logging.config.po | 15 +- library/logging.handlers.po | 164 ++++---- library/logging.po | 100 ++--- library/lzma.po | 18 +- library/mailbox.po | 26 +- library/mailcap.po | 2 +- library/math.po | 8 +- library/mimetypes.po | 7 +- library/modulefinder.po | 2 +- library/msilib.po | 4 +- library/multiprocessing.po | 35 +- library/multiprocessing.shared_memory.po | 2 +- library/netrc.po | 4 +- library/nntplib.po | 6 +- library/numbers.po | 2 +- library/operator.po | 173 +++++---- library/optparse.po | 67 ++-- library/os.path.po | 2 +- library/os.po | 123 +++--- library/ossaudiodev.po | 36 +- library/pathlib.po | 110 +++--- library/pdb.po | 2 +- library/pickle.po | 23 +- library/pickletools.po | 2 +- library/pipes.po | 7 +- library/pkgutil.po | 9 +- library/platform.po | 5 +- library/plistlib.po | 4 +- library/poplib.po | 6 +- library/pprint.po | 6 +- library/profile.po | 66 ++-- library/pty.po | 4 +- library/pwd.po | 26 +- library/py_compile.po | 4 +- library/pyclbr.po | 2 +- library/pydoc.po | 2 +- library/pyexpat.po | 4 +- library/queue.po | 4 +- library/quopri.po | 4 +- library/random.po | 10 +- library/re.po | 126 +++--- library/readline.po | 2 +- library/reprlib.po | 4 +- library/resource.po | 77 ++-- library/rlcompleter.po | 5 +- library/runpy.po | 2 +- library/sched.po | 5 +- library/secrets.po | 2 +- library/select.po | 124 +++--- library/selectors.po | 10 +- library/shelve.po | 8 +- library/shlex.po | 6 +- library/shutil.po | 8 +- library/signal.po | 10 +- library/site.po | 4 +- library/smtpd.po | 36 +- library/smtplib.po | 22 +- library/sndhdr.po | 2 +- library/socket.po | 56 +-- library/socketserver.po | 8 +- library/spwd.po | 32 +- library/sqlite3.po | 29 +- library/ssl.po | 107 +++--- library/stat.po | 5 +- library/statistics.po | 12 +- library/stdtypes.po | 322 ++++++++-------- library/string.po | 40 +- library/stringprep.po | 2 +- library/struct.po | 112 +++--- library/subprocess.po | 48 ++- library/sunau.po | 14 +- library/symtable.po | 5 +- library/sys.po | 188 ++++----- library/sysconfig.po | 21 +- library/syslog.po | 9 +- library/tabnanny.po | 4 +- library/tarfile.po | 54 +-- library/telnetlib.po | 4 +- library/tempfile.po | 8 +- library/termios.po | 4 +- library/test.po | 18 +- library/textwrap.po | 5 +- library/threading.po | 7 +- library/time.po | 122 +++--- library/timeit.po | 4 +- library/tkinter.colorchooser.po | 4 +- library/tkinter.dnd.po | 4 +- library/tkinter.font.po | 4 +- library/tkinter.messagebox.po | 2 +- library/tkinter.po | 127 +++--- library/tkinter.scrolledtext.po | 2 +- library/tkinter.tix.po | 2 +- library/tkinter.ttk.po | 16 +- library/token.po | 2 +- library/tokenize.po | 4 +- library/trace.po | 2 +- library/traceback.po | 8 +- library/tracemalloc.po | 26 +- library/tty.po | 4 +- library/turtle.po | 225 +++++------ library/types.po | 4 +- library/typing.po | 21 +- library/undoc.po | 4 +- library/unicodedata.po | 2 +- library/unittest.mock.po | 44 ++- library/unittest.po | 165 ++++---- library/urllib.error.po | 2 +- library/urllib.parse.po | 32 +- library/urllib.robotparser.po | 2 +- library/uu.po | 4 +- library/uuid.po | 24 +- library/venv.po | 32 +- library/warnings.po | 36 +- library/wave.po | 6 +- library/weakref.po | 4 +- library/webbrowser.po | 93 ++--- library/winreg.po | 10 +- library/winsound.po | 21 +- library/wsgiref.po | 5 +- library/xdrlib.po | 4 +- library/xml.dom.minidom.po | 8 +- library/xml.dom.po | 128 +++---- library/xml.dom.pulldom.po | 21 +- library/xml.etree.elementtree.po | 36 +- library/xml.po | 12 +- library/xml.sax.handler.po | 2 +- library/xml.sax.po | 8 +- library/xml.sax.reader.po | 2 +- library/xml.sax.utils.po | 2 +- library/xmlrpc.client.po | 26 +- library/xmlrpc.po | 4 +- library/xmlrpc.server.po | 13 +- library/zipapp.po | 6 +- library/zipfile.po | 14 +- library/zipimport.po | 4 +- library/zlib.po | 2 +- library/zoneinfo.po | 4 +- reference/compound_stmts.po | 12 +- reference/datamodel.po | 14 +- reference/executionmodel.po | 2 +- reference/expressions.po | 8 +- reference/import.po | 6 +- reference/introduction.po | 8 +- reference/simple_stmts.po | 3 + sphinx.po | 18 +- using/cmdline.po | 4 +- using/configure.po | 4 +- using/mac.po | 2 +- using/windows.po | 13 +- whatsnew/2.0.po | 10 +- whatsnew/2.1.po | 8 +- whatsnew/2.2.po | 8 +- whatsnew/2.3.po | 11 +- whatsnew/2.4.po | 8 +- whatsnew/2.5.po | 8 +- whatsnew/2.6.po | 10 +- whatsnew/2.7.po | 18 +- whatsnew/3.0.po | 54 +-- whatsnew/3.1.po | 8 +- whatsnew/3.10.po | 177 ++++----- whatsnew/3.2.po | 110 +++--- whatsnew/3.3.po | 140 +++---- whatsnew/3.4.po | 108 +++--- whatsnew/3.5.po | 25 +- whatsnew/3.6.po | 20 +- whatsnew/3.7.po | 35 +- whatsnew/3.8.po | 20 +- whatsnew/3.9.po | 35 +- 341 files changed, 3878 insertions(+), 3457 deletions(-) diff --git a/c-api/arg.po b/c-api/arg.po index 048eb9e6a6..cf210ffc63 100644 --- a/c-api/arg.po +++ b/c-api/arg.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Python 3.10\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2021-10-26 16:47+0000\n" -"PO-Revision-Date: 2018-05-23 14:29+0000\n" +"PO-Revision-Date: 2021-11-22 16:44+0800\n" "Last-Translator: Adrian Liaw \n" "Language-Team: Chinese - TAIWAN (https://github.com/python/python-docs-zh-" "tw)\n" @@ -17,6 +17,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.0\n" #: ../../c-api/arg.rst:6 msgid "Parsing arguments and building values" @@ -105,7 +106,7 @@ msgstr "" #: ../../c-api/arg.rst:83 msgid "``s`` (:class:`str`) [const char \\*]" -msgstr "" +msgstr "``s`` (:class:`str`) [const char \\*]" #: ../../c-api/arg.rst:66 msgid "" @@ -133,7 +134,7 @@ msgstr "" #: ../../c-api/arg.rst:89 msgid "``s*`` (:class:`str` or :term:`bytes-like object`) [Py_buffer]" -msgstr "" +msgstr "``s*``\\ (:class:`str` 或 :term:`bytes-like object`)[Py_buffer]" #: ../../c-api/arg.rst:86 msgid "" @@ -159,7 +160,7 @@ msgstr "" #: ../../c-api/arg.rst:100 ../../c-api/arg.rst:565 msgid "``z`` (:class:`str` or ``None``) [const char \\*]" -msgstr "" +msgstr "``z``\\ (:class:`str` 或 ``None``)[const char \\*]" #: ../../c-api/arg.rst:99 msgid "" @@ -171,6 +172,8 @@ msgstr "" msgid "" "``z*`` (:class:`str`, :term:`bytes-like object` or ``None``) [Py_buffer]" msgstr "" +"``z*``\\ (:class:`str`\\ 、\\ :term:`bytes-like object` 或 ``None``)" +"[Py_buffer]" #: ../../c-api/arg.rst:103 msgid "" @@ -192,7 +195,7 @@ msgstr "" #: ../../c-api/arg.rst:118 msgid "``y`` (read-only :term:`bytes-like object`) [const char \\*]" -msgstr "" +msgstr "``y``\\ (唯讀 :term:`bytes-like object`)[const char \\*]" #: ../../c-api/arg.rst:111 msgid "" @@ -210,7 +213,7 @@ msgstr "" #: ../../c-api/arg.rst:123 msgid "``y*`` (:term:`bytes-like object`) [Py_buffer]" -msgstr "" +msgstr "``y*`` (:term:`bytes-like object`) [Py_buffer]" #: ../../c-api/arg.rst:121 msgid "" @@ -232,7 +235,7 @@ msgstr "" #: ../../c-api/arg.rst:132 msgid "``S`` (:class:`bytes`) [PyBytesObject \\*]" -msgstr "" +msgstr "``S`` (:class:`bytes`) [PyBytesObject \\*]" #: ../../c-api/arg.rst:130 msgid "" @@ -243,7 +246,7 @@ msgstr "" #: ../../c-api/arg.rst:137 msgid "``Y`` (:class:`bytearray`) [PyByteArrayObject \\*]" -msgstr "" +msgstr "``Y`` (:class:`bytearray`) [PyByteArrayObject \\*]" #: ../../c-api/arg.rst:135 msgid "" @@ -255,7 +258,7 @@ msgstr "" #: ../../c-api/arg.rst:154 msgid "``u`` (:class:`str`) [const Py_UNICODE \\*]" -msgstr "" +msgstr "``u`` (:class:`str`) [const Py_UNICODE \\*]" #: ../../c-api/arg.rst:140 msgid "" @@ -277,7 +280,7 @@ msgstr "" #: ../../c-api/arg.rst:163 msgid "``u#`` (:class:`str`) [const Py_UNICODE \\*, :c:type:`Py_ssize_t`]" -msgstr "" +msgstr "``u#`` (:class:`str`) [const Py_UNICODE \\*, :c:type:`Py_ssize_t`]" #: ../../c-api/arg.rst:157 msgid "" @@ -288,7 +291,7 @@ msgstr "" #: ../../c-api/arg.rst:171 msgid "``Z`` (:class:`str` or ``None``) [const Py_UNICODE \\*]" -msgstr "" +msgstr "``Z`` (:class:`str` 或 ``None``) [const Py_UNICODE \\*]" #: ../../c-api/arg.rst:166 msgid "" @@ -310,7 +313,7 @@ msgstr "" #: ../../c-api/arg.rst:184 msgid "``U`` (:class:`str`) [PyObject \\*]" -msgstr "" +msgstr "``U`` (:class:`str`) [PyObject \\*]" #: ../../c-api/arg.rst:182 msgid "" @@ -321,7 +324,7 @@ msgstr "" #: ../../c-api/arg.rst:190 msgid "``w*`` (read-write :term:`bytes-like object`) [Py_buffer]" -msgstr "" +msgstr "``w*`` (可讀寫 :term:`bytes-like object`) [Py_buffer]" #: ../../c-api/arg.rst:187 msgid "" @@ -333,7 +336,7 @@ msgstr "" #: ../../c-api/arg.rst:207 msgid "``es`` (:class:`str`) [const char \\*encoding, char \\*\\*buffer]" -msgstr "" +msgstr "``es`` (:class:`str`) [const char \\*encoding, char \\*\\*buffer]" #: ../../c-api/arg.rst:193 msgid "" @@ -446,7 +449,7 @@ msgstr "數字" #: ../../c-api/arg.rst:255 msgid "``b`` (:class:`int`) [unsigned char]" -msgstr "" +msgstr "``b`` (:class:`int`) [unsigned char]" #: ../../c-api/arg.rst:254 msgid "" @@ -456,7 +459,7 @@ msgstr "" #: ../../c-api/arg.rst:259 ../../c-api/arg.rst:599 msgid "``B`` (:class:`int`) [unsigned char]" -msgstr "" +msgstr "``B`` (:class:`int`) [unsigned char]" #: ../../c-api/arg.rst:258 msgid "" @@ -466,7 +469,7 @@ msgstr "" #: ../../c-api/arg.rst:262 ../../c-api/arg.rst:593 msgid "``h`` (:class:`int`) [short int]" -msgstr "" +msgstr "``h`` (:class:`int`) [short int]" #: ../../c-api/arg.rst:262 msgid "Convert a Python integer to a C :c:type:`short int`." @@ -474,7 +477,7 @@ msgstr "" #: ../../c-api/arg.rst:266 ../../c-api/arg.rst:602 msgid "``H`` (:class:`int`) [unsigned short int]" -msgstr "" +msgstr "``H`` (:class:`int`) [unsigned short int]" #: ../../c-api/arg.rst:265 msgid "" @@ -484,7 +487,7 @@ msgstr "" #: ../../c-api/arg.rst:269 ../../c-api/arg.rst:587 msgid "``i`` (:class:`int`) [int]" -msgstr "" +msgstr "``i`` (:class:`int`) [int]" #: ../../c-api/arg.rst:269 msgid "Convert a Python integer to a plain C :c:type:`int`." @@ -492,7 +495,7 @@ msgstr "" #: ../../c-api/arg.rst:273 ../../c-api/arg.rst:605 msgid "``I`` (:class:`int`) [unsigned int]" -msgstr "" +msgstr "``I`` (:class:`int`) [unsigned int]" #: ../../c-api/arg.rst:272 msgid "" @@ -502,7 +505,7 @@ msgstr "" #: ../../c-api/arg.rst:276 ../../c-api/arg.rst:596 msgid "``l`` (:class:`int`) [long int]" -msgstr "" +msgstr "``l`` (:class:`int`) [long int]" #: ../../c-api/arg.rst:276 msgid "Convert a Python integer to a C :c:type:`long int`." @@ -510,7 +513,7 @@ msgstr "" #: ../../c-api/arg.rst:280 ../../c-api/arg.rst:608 msgid "``k`` (:class:`int`) [unsigned long]" -msgstr "" +msgstr "``k`` (:class:`int`) [unsigned long]" #: ../../c-api/arg.rst:279 msgid "" @@ -520,7 +523,7 @@ msgstr "" #: ../../c-api/arg.rst:283 ../../c-api/arg.rst:611 msgid "``L`` (:class:`int`) [long long]" -msgstr "" +msgstr "``L`` (:class:`int`) [long long]" #: ../../c-api/arg.rst:283 msgid "Convert a Python integer to a C :c:type:`long long`." @@ -528,7 +531,7 @@ msgstr "" #: ../../c-api/arg.rst:287 ../../c-api/arg.rst:614 msgid "``K`` (:class:`int`) [unsigned long long]" -msgstr "" +msgstr "``K`` (:class:`int`) [unsigned long long]" #: ../../c-api/arg.rst:286 msgid "" @@ -538,7 +541,7 @@ msgstr "" #: ../../c-api/arg.rst:290 ../../c-api/arg.rst:617 msgid "``n`` (:class:`int`) [Py_ssize_t]" -msgstr "" +msgstr "``n`` (:class:`int`) [Py_ssize_t]" #: ../../c-api/arg.rst:290 msgid "Convert a Python integer to a C :c:type:`Py_ssize_t`." @@ -546,7 +549,7 @@ msgstr "" #: ../../c-api/arg.rst:297 msgid "``c`` (:class:`bytes` or :class:`bytearray` of length 1) [char]" -msgstr "" +msgstr "``c``\\ (:class:`bytes` 或長度為 1 的 :class:`bytearray`)[char]" #: ../../c-api/arg.rst:293 msgid "" @@ -556,11 +559,11 @@ msgstr "" #: ../../c-api/arg.rst:296 msgid "Allow :class:`bytearray` objects." -msgstr "" +msgstr "允許 :class:`bytearray` 物件。" #: ../../c-api/arg.rst:301 ../../c-api/arg.rst:625 msgid "``C`` (:class:`str` of length 1) [int]" -msgstr "" +msgstr "``C``\\ (長度為 1 的 :class:`str`)[int]" #: ../../c-api/arg.rst:300 msgid "" @@ -570,7 +573,7 @@ msgstr "" #: ../../c-api/arg.rst:304 ../../c-api/arg.rst:631 msgid "``f`` (:class:`float`) [float]" -msgstr "" +msgstr "``f`` (:class:`float`) [float]" #: ../../c-api/arg.rst:304 msgid "Convert a Python floating point number to a C :c:type:`float`." @@ -578,7 +581,7 @@ msgstr "" #: ../../c-api/arg.rst:307 ../../c-api/arg.rst:628 msgid "``d`` (:class:`float`) [double]" -msgstr "" +msgstr "``d`` (:class:`float`) [double]" #: ../../c-api/arg.rst:307 msgid "Convert a Python floating point number to a C :c:type:`double`." @@ -586,7 +589,7 @@ msgstr "" #: ../../c-api/arg.rst:310 msgid "``D`` (:class:`complex`) [Py_complex]" -msgstr "" +msgstr "``D`` (:class:`complex`) [Py_complex]" #: ../../c-api/arg.rst:310 msgid "Convert a Python complex number to a C :c:type:`Py_complex` structure." @@ -594,11 +597,11 @@ msgstr "" #: ../../c-api/arg.rst:313 msgid "Other objects" -msgstr "" +msgstr "其他物件" #: ../../c-api/arg.rst:318 ../../c-api/arg.rst:642 msgid "``O`` (object) [PyObject \\*]" -msgstr "" +msgstr "``O``\\ (物件)[PyObject \\*]" #: ../../c-api/arg.rst:316 msgid "" @@ -609,7 +612,7 @@ msgstr "" #: ../../c-api/arg.rst:325 msgid "``O!`` (object) [*typeobject*, PyObject \\*]" -msgstr "" +msgstr "``O!``\\ (物件)[*typeobject*, PyObject \\*]" #: ../../c-api/arg.rst:321 msgid "" @@ -622,7 +625,7 @@ msgstr "" #: ../../c-api/arg.rst:350 ../../c-api/arg.rst:656 msgid "``O&`` (object) [*converter*, *anything*]" -msgstr "" +msgstr "``O&``\\ (物件)[*converter*, *anything*]" #: ../../c-api/arg.rst:330 msgid "" @@ -653,11 +656,11 @@ msgstr "" #: ../../c-api/arg.rst:349 msgid "``Py_CLEANUP_SUPPORTED`` was added." -msgstr "" +msgstr "加入 ``Py_CLEANUP_SUPPORTED``。" #: ../../c-api/arg.rst:359 msgid "``p`` (:class:`bool`) [int]" -msgstr "" +msgstr "``p`` (:class:`bool`) [int]" #: ../../c-api/arg.rst:353 msgid "" @@ -670,7 +673,7 @@ msgstr "" #: ../../c-api/arg.rst:364 ../../c-api/arg.rst:659 msgid "``(items)`` (:class:`tuple`) [*matching-items*]" -msgstr "" +msgstr "``(items)`` (:class:`tuple`) [*matching-items*]" #: ../../c-api/arg.rst:362 msgid "" @@ -770,7 +773,7 @@ msgstr "" #: ../../c-api/arg.rst:419 msgid "API Functions" -msgstr "" +msgstr "API 函式" #: ../../c-api/arg.rst:423 msgid "" @@ -903,7 +906,7 @@ msgstr "" #: ../../c-api/arg.rst:549 msgid "``s`` (:class:`str` or ``None``) [const char \\*]" -msgstr "" +msgstr "``s``\\ (:class:`str` 或 ``None``)[const char \\*]" #: ../../c-api/arg.rst:548 msgid "" @@ -915,6 +918,7 @@ msgstr "" msgid "" "``s#`` (:class:`str` or ``None``) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" +"``s#``\\ (:class:`str` 或 ``None``)[const char \\*, :c:type:`Py_ssize_t`]" #: ../../c-api/arg.rst:552 msgid "" @@ -925,7 +929,7 @@ msgstr "" #: ../../c-api/arg.rst:558 msgid "``y`` (:class:`bytes`) [const char \\*]" -msgstr "" +msgstr "``y`` (:class:`bytes`) [const char \\*]" #: ../../c-api/arg.rst:557 msgid "" @@ -935,7 +939,7 @@ msgstr "" #: ../../c-api/arg.rst:562 msgid "``y#`` (:class:`bytes`) [const char \\*, :c:type:`Py_ssize_t`]" -msgstr "" +msgstr "``y#`` (:class:`bytes`) [const char \\*, :c:type:`Py_ssize_t`]" #: ../../c-api/arg.rst:561 msgid "" @@ -945,20 +949,21 @@ msgstr "" #: ../../c-api/arg.rst:565 ../../c-api/arg.rst:581 msgid "Same as ``s``." -msgstr "" +msgstr "和 ``s`` 相同。" #: ../../c-api/arg.rst:568 msgid "" "``z#`` (:class:`str` or ``None``) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" +"``z#``\\ (:class:`str` 或 ``None``)[const char \\*, :c:type:`Py_ssize_t`]" #: ../../c-api/arg.rst:568 ../../c-api/arg.rst:584 msgid "Same as ``s#``." -msgstr "" +msgstr "和 ``s#`` 相同。" #: ../../c-api/arg.rst:573 msgid "``u`` (:class:`str`) [const wchar_t \\*]" -msgstr "" +msgstr "``u`` (:class:`str`) [const wchar_t \\*]" #: ../../c-api/arg.rst:571 msgid "" @@ -969,7 +974,7 @@ msgstr "" #: ../../c-api/arg.rst:578 msgid "``u#`` (:class:`str`) [const wchar_t \\*, :c:type:`Py_ssize_t`]" -msgstr "" +msgstr "``u#`` (:class:`str`) [const wchar_t \\*, :c:type:`Py_ssize_t`]" #: ../../c-api/arg.rst:576 msgid "" @@ -980,56 +985,57 @@ msgstr "" #: ../../c-api/arg.rst:581 msgid "``U`` (:class:`str` or ``None``) [const char \\*]" -msgstr "" +msgstr "``U``\\ (:class:`str` 或 ``None``)[const char \\*]" #: ../../c-api/arg.rst:584 msgid "" "``U#`` (:class:`str` or ``None``) [const char \\*, :c:type:`Py_ssize_t`]" msgstr "" +"``U#``\\ (:class:`str` 或 ``None``)[const char \\*, :c:type:`Py_ssize_t`]" #: ../../c-api/arg.rst:587 msgid "Convert a plain C :c:type:`int` to a Python integer object." -msgstr "" +msgstr "將一個 C 的 :c:type:`int` 轉換成 Python 整數物件。" #: ../../c-api/arg.rst:590 msgid "``b`` (:class:`int`) [char]" -msgstr "" +msgstr "``b`` (:class:`int`) [char]" #: ../../c-api/arg.rst:590 msgid "Convert a plain C :c:type:`char` to a Python integer object." -msgstr "" +msgstr "將一個 C 的 :c:type:`char` 轉換成 Python 整數物件。" #: ../../c-api/arg.rst:593 msgid "Convert a plain C :c:type:`short int` to a Python integer object." -msgstr "" +msgstr "將一個 C 的 :c:type:`short int` 轉換成 Python 整數物件。" #: ../../c-api/arg.rst:596 msgid "Convert a C :c:type:`long int` to a Python integer object." -msgstr "" +msgstr "將一個 C 的 C :c:type:`long int` 轉換成 Python 整數物件。" #: ../../c-api/arg.rst:599 msgid "Convert a C :c:type:`unsigned char` to a Python integer object." -msgstr "" +msgstr "將一個 C 的 C :c:type:`unsigned char` 轉換成 Python 整數物件。" #: ../../c-api/arg.rst:602 msgid "Convert a C :c:type:`unsigned short int` to a Python integer object." -msgstr "" +msgstr "將一個 C 的 :c:type:`unsigned short int` 轉換成 Python 整數物件。" #: ../../c-api/arg.rst:605 msgid "Convert a C :c:type:`unsigned int` to a Python integer object." -msgstr "" +msgstr "將一個 C 的 C :c:type:`unsigned int` 轉換成 Python 整數物件。" #: ../../c-api/arg.rst:608 msgid "Convert a C :c:type:`unsigned long` to a Python integer object." -msgstr "" +msgstr "將一個 C 的 C :c:type:`unsigned long` 轉換成 Python 整數物件。" #: ../../c-api/arg.rst:611 msgid "Convert a C :c:type:`long long` to a Python integer object." -msgstr "" +msgstr "將一個 C 的 C :c:type:`long long` 轉換成 Python 整數物件。" #: ../../c-api/arg.rst:614 msgid "Convert a C :c:type:`unsigned long long` to a Python integer object." -msgstr "" +msgstr "將一個 C 的 :c:type:`unsigned long long` 轉換成 Python 整數物件。" #: ../../c-api/arg.rst:617 msgid "Convert a C :c:type:`Py_ssize_t` to a Python integer." @@ -1037,7 +1043,7 @@ msgstr "" #: ../../c-api/arg.rst:621 msgid "``c`` (:class:`bytes` of length 1) [char]" -msgstr "" +msgstr "``c``\\ (長度為 1 的 :class:`bytes`)[char]" #: ../../c-api/arg.rst:620 msgid "" @@ -1061,7 +1067,7 @@ msgstr "" #: ../../c-api/arg.rst:634 msgid "``D`` (:class:`complex`) [Py_complex \\*]" -msgstr "" +msgstr "``D`` (:class:`complex`) [Py_complex \\*]" #: ../../c-api/arg.rst:634 msgid "Convert a C :c:type:`Py_complex` structure to a Python complex number." @@ -1079,15 +1085,15 @@ msgstr "" #: ../../c-api/arg.rst:645 msgid "``S`` (object) [PyObject \\*]" -msgstr "" +msgstr "``S``\\ (物件)[PyObject \\*]" #: ../../c-api/arg.rst:645 msgid "Same as ``O``." -msgstr "" +msgstr "和 ``O`` 相同。" #: ../../c-api/arg.rst:650 msgid "``N`` (object) [PyObject \\*]" -msgstr "" +msgstr "``N``\\ (物件)[PyObject \\*]" #: ../../c-api/arg.rst:648 msgid "" @@ -1112,7 +1118,7 @@ msgstr "" #: ../../c-api/arg.rst:662 msgid "``[items]`` (:class:`list`) [*matching-items*]" -msgstr "" +msgstr "``[items]`` (:class:`list`) [*matching-items*]" #: ../../c-api/arg.rst:662 msgid "" @@ -1122,7 +1128,7 @@ msgstr "" #: ../../c-api/arg.rst:667 msgid "``{items}`` (:class:`dict`) [*matching-items*]" -msgstr "" +msgstr "``{items}`` (:class:`dict`) [*matching-items*]" #: ../../c-api/arg.rst:665 msgid "" diff --git a/c-api/buffer.po b/c-api/buffer.po index b2bca54a18..74b1636da7 100644 --- a/c-api/buffer.po +++ b/c-api/buffer.po @@ -423,7 +423,7 @@ msgstr "" #: ../../c-api/buffer.rst:333 ../../c-api/buffer.rst:335 #: ../../c-api/buffer.rst:337 msgid "NULL" -msgstr "" +msgstr "NULL" #: ../../c-api/buffer.rst:287 msgid "contiguity requests" diff --git a/c-api/bytes.po b/c-api/bytes.po index 6f7adbee0b..a9420b4831 100644 --- a/c-api/bytes.po +++ b/c-api/bytes.po @@ -137,7 +137,7 @@ msgstr ":attr:`%ld`" #: ../../c-api/bytes.rst:81 msgid "long" -msgstr "" +msgstr "long" #: ../../c-api/bytes.rst:81 msgid "Equivalent to ``printf(\"%ld\")``. [1]_" diff --git a/c-api/call.po b/c-api/call.po index 369114ff80..e54115e0ca 100644 --- a/c-api/call.po +++ b/c-api/call.po @@ -267,19 +267,19 @@ msgstr "" #: ../../c-api/call.rst:195 msgid "Function" -msgstr "" +msgstr "函式" #: ../../c-api/call.rst:195 msgid "callable" -msgstr "" +msgstr "callable" #: ../../c-api/call.rst:195 msgid "args" -msgstr "" +msgstr "args" #: ../../c-api/call.rst:195 msgid "kwargs" -msgstr "" +msgstr "kwargs" #: ../../c-api/call.rst:197 msgid ":c:func:`PyObject_Call`" @@ -339,7 +339,7 @@ msgstr ":c:func:`PyObject_CallMethod`" #: ../../c-api/call.rst:207 msgid "obj + ``char*``" -msgstr "" +msgstr "物件 + ``char*``" #: ../../c-api/call.rst:209 msgid ":c:func:`PyObject_CallFunctionObjArgs`" @@ -355,7 +355,7 @@ msgstr ":c:func:`PyObject_CallMethodObjArgs`" #: ../../c-api/call.rst:211 ../../c-api/call.rst:213 ../../c-api/call.rst:215 msgid "obj + name" -msgstr "" +msgstr "物件 + 名稱" #: ../../c-api/call.rst:213 msgid ":c:func:`PyObject_CallMethodNoArgs`" diff --git a/c-api/concrete.po b/c-api/concrete.po index bb8c0630c0..96f930705d 100644 --- a/c-api/concrete.po +++ b/c-api/concrete.po @@ -43,7 +43,7 @@ msgstr "" #: ../../c-api/concrete.rst:28 msgid "Fundamental Objects" -msgstr "" +msgstr "基礎物件" #: ../../c-api/concrete.rst:30 msgid "" @@ -52,11 +52,11 @@ msgstr "" #: ../../c-api/concrete.rst:41 msgid "Numeric Objects" -msgstr "" +msgstr "數值物件" #: ../../c-api/concrete.rst:56 msgid "Sequence Objects" -msgstr "" +msgstr "序列物件" #: ../../c-api/concrete.rst:60 msgid "" @@ -67,7 +67,7 @@ msgstr "" #: ../../c-api/concrete.rst:78 msgid "Container Objects" -msgstr "" +msgstr "容器物件" #: ../../c-api/concrete.rst:91 msgid "Function Objects" @@ -75,4 +75,4 @@ msgstr "函式物件" #: ../../c-api/concrete.rst:102 msgid "Other Objects" -msgstr "" +msgstr "其他物件" diff --git a/c-api/coro.po b/c-api/coro.po index 4509f1f7e2..ccb7eba44d 100644 --- a/c-api/coro.po +++ b/c-api/coro.po @@ -20,7 +20,7 @@ msgstr "" #: ../../c-api/coro.rst:6 msgid "Coroutine Objects" -msgstr "" +msgstr "協程物件" #: ../../c-api/coro.rst:10 msgid "" diff --git a/c-api/dict.po b/c-api/dict.po index 39a81d4ff9..7643260a23 100644 --- a/c-api/dict.po +++ b/c-api/dict.po @@ -198,6 +198,9 @@ msgstr "" #: ../../c-api/dict.rst:176 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../c-api/dict.rst:186 msgid "" diff --git a/c-api/exceptions.po b/c-api/exceptions.po index 41e283dc87..1737bc5910 100644 --- a/c-api/exceptions.po +++ b/c-api/exceptions.po @@ -237,7 +237,7 @@ msgstr "" #: ../../c-api/exceptions.rst:217 ../../c-api/exceptions.rst:225 #: ../../c-api/exceptions.rst:234 ../../c-api/exceptions.rst:243 msgid ":ref:`Availability `: Windows." -msgstr "" +msgstr ":ref:`適用 `:Windows。" #: ../../c-api/exceptions.rst:205 msgid "" diff --git a/c-api/import.po b/c-api/import.po index 6f2b32f558..3456edf990 100644 --- a/c-api/import.po +++ b/c-api/import.po @@ -215,7 +215,7 @@ msgstr "" #: ../../c-api/import.rst:190 msgid "Return value of ``-1`` upon failure." -msgstr "" +msgstr "當失敗時回傳 ``-1``。" #: ../../c-api/import.rst:196 msgid "" diff --git a/c-api/init.po b/c-api/init.po index 437ecbe088..bc12cafb87 100644 --- a/c-api/init.po +++ b/c-api/init.po @@ -304,7 +304,7 @@ msgstr "" #: ../../c-api/init.rst:163 ../../c-api/init.rst:175 msgid ":ref:`Availability `: Windows." -msgstr "" +msgstr ":ref:`適用 `:Windows。" #: ../../c-api/init.rst:167 msgid "" @@ -1281,7 +1281,7 @@ msgstr "" #: ../../c-api/init.rst:1121 ../../c-api/init.rst:1130 #: ../../c-api/init.rst:1139 msgid "*tstate* must not be ``NULL``." -msgstr "" +msgstr "*tstate* 不可為 ``NULL``。" #: ../../c-api/init.rst:1128 msgid "" @@ -2039,18 +2039,3 @@ msgid "" "Due to the compatibility problem noted above, this version of the API should " "not be used in new code." msgstr "" - -#~ msgid "0" -#~ msgstr "0" - -#~ msgid "1" -#~ msgstr "1" - -#~ msgid "2" -#~ msgstr "2" - -#~ msgid "4" -#~ msgstr "4" - -#~ msgid "8" -#~ msgstr "8" diff --git a/c-api/init_config.po b/c-api/init_config.po index c6ce9a253e..e1c75bc44f 100644 --- a/c-api/init_config.po +++ b/c-api/init_config.po @@ -66,7 +66,7 @@ msgstr "" #: ../../c-api/init_config.rst:37 msgid "Example" -msgstr "" +msgstr "範例" #: ../../c-api/init_config.rst:39 msgid "Example of customized Python always running in isolated mode::" @@ -74,7 +74,7 @@ msgstr "" #: ../../c-api/init_config.rst:76 msgid "PyWideStringList" -msgstr "" +msgstr "PyWideStringList" #: ../../c-api/init_config.rst:80 msgid "List of ``wchar_t*`` strings." @@ -127,7 +127,7 @@ msgstr "" #: ../../c-api/init_config.rst:115 msgid "PyStatus" -msgstr "" +msgstr "PyStatus" #: ../../c-api/init_config.rst:119 msgid "" @@ -144,7 +144,7 @@ msgstr "" #: ../../c-api/init_config.rst:132 msgid "Error message." -msgstr "" +msgstr "錯誤訊息。" #: ../../c-api/init_config.rst:136 msgid "Name of the function which created an error, can be ``NULL``." @@ -164,7 +164,7 @@ msgstr "" #: ../../c-api/init_config.rst:148 msgid "*err_msg* must not be ``NULL``." -msgstr "" +msgstr "*err_msg* 不可為 ``NULL``。" #: ../../c-api/init_config.rst:152 msgid "Memory allocation failure (out of memory)." @@ -208,10 +208,13 @@ msgstr "" #: ../../c-api/init_config.rst:183 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../c-api/init_config.rst:207 msgid "PyPreConfig" -msgstr "" +msgstr "PyPreConfig" #: ../../c-api/init_config.rst:211 msgid "Structure used to preinitialize Python." @@ -286,11 +289,11 @@ msgstr "" #: ../../c-api/init_config.rst:251 msgid "See :ref:`Memory Management `." -msgstr "" +msgstr "請見\\ :ref:`記憶體管理 `\\ 。" #: ../../c-api/init_config.rst:253 msgid "Default: ``PYMEM_ALLOCATOR_NOT_SET``." -msgstr "" +msgstr "預設:\\ ``PYMEM_ALLOCATOR_NOT_SET``\\ 。" #: ../../c-api/init_config.rst:257 msgid "Set the LC_CTYPE locale to the user preferred locale?" @@ -304,7 +307,7 @@ msgstr "" #: ../../c-api/init_config.rst:262 ../../c-api/init_config.rst:273 msgid "See the :term:`locale encoding`." -msgstr "" +msgstr "請見 :term:`locale encoding`\\ 。" #: ../../c-api/init_config.rst:264 ../../c-api/init_config.rst:319 #: ../../c-api/init_config.rst:627 @@ -349,19 +352,19 @@ msgstr "" #: ../../c-api/init_config.rst:298 msgid "If non-zero:" -msgstr "" +msgstr "如果不為 0:" #: ../../c-api/init_config.rst:300 msgid "Set :c:member:`PyPreConfig.utf8_mode` to ``0``," -msgstr "" +msgstr "將 :c:member:`PyPreConfig.utf8_mode` 設為 ``0``\\ 、" #: ../../c-api/init_config.rst:301 msgid "Set :c:member:`PyConfig.filesystem_encoding` to ``\"mbcs\"``," -msgstr "" +msgstr "將 :c:member:`PyConfig.filesystem_encoding` 設為 ``\"mbcs\"``\\ 、" #: ../../c-api/init_config.rst:302 msgid "Set :c:member:`PyConfig.filesystem_errors` to ``\"replace\"``." -msgstr "" +msgstr "將 :c:member:`PyConfig.filesystem_errors` 設為 ``\"replace\"``\\ 。" #: ../../c-api/init_config.rst:304 msgid "" @@ -384,7 +387,7 @@ msgstr "" #: ../../c-api/init_config.rst:1029 ../../c-api/init_config.rst:1058 #: ../../c-api/init_config.rst:1129 msgid "Default: ``0``." -msgstr "" +msgstr "預設:\\ ``0``。" #: ../../c-api/init_config.rst:314 msgid "" @@ -458,7 +461,7 @@ msgstr "" #: ../../c-api/init_config.rst:359 ../../c-api/init_config.rst:368 #: ../../c-api/init_config.rst:377 msgid "*preconfig* must not be ``NULL``." -msgstr "" +msgstr "*preconfig* 不可為 ``NULL``。" #: ../../c-api/init_config.rst:365 msgid "" @@ -512,7 +515,7 @@ msgstr "" #: ../../c-api/init_config.rst:421 msgid "PyConfig" -msgstr "" +msgstr "PyConfig" #: ../../c-api/init_config.rst:425 msgid "Structure containing most parameters to configure Python." @@ -770,7 +773,7 @@ msgstr "" #: ../../c-api/init_config.rst:612 msgid "Default: ``L\"default\"``." -msgstr "" +msgstr "預設:\\ ``L\"default\"``。" #: ../../c-api/init_config.rst:614 msgid "See also :pep:`552` \"Deterministic pycs\"." diff --git a/c-api/intro.po b/c-api/intro.po index 924c341a5b..a92c286f02 100644 --- a/c-api/intro.po +++ b/c-api/intro.po @@ -186,7 +186,7 @@ msgstr "" #: ../../c-api/intro.rst:132 msgid "Return the absolute value of ``x``." -msgstr "" +msgstr "回傳 ``x`` 的絕對值。" #: ../../c-api/intro.rst:138 msgid "Return the minimum value between ``x`` and ``y``." @@ -233,6 +233,9 @@ msgstr "" #: ../../c-api/intro.rst:216 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../c-api/intro.rst:187 msgid "MSVC support was added." @@ -498,7 +501,7 @@ msgstr "" #: ../../c-api/intro.rst:509 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../c-api/intro.rst:511 msgid "" diff --git a/c-api/memory.po b/c-api/memory.po index d06c5d1a2f..7ba4be7603 100644 --- a/c-api/memory.po +++ b/c-api/memory.po @@ -618,7 +618,7 @@ msgstr "" #: ../../c-api/memory.rst:434 ../../c-api/memory.rst:443 #: ../../c-api/memory.rst:452 msgid "Functions:" -msgstr "" +msgstr "函式:" #: ../../c-api/memory.rst:436 msgid ":c:func:`PyMem_RawMalloc`" @@ -997,7 +997,7 @@ msgstr "" #: ../../c-api/memory.rst:669 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../c-api/memory.rst:671 msgid "" diff --git a/c-api/memoryview.po b/c-api/memoryview.po index a05e01be97..10240f85a8 100644 --- a/c-api/memoryview.po +++ b/c-api/memoryview.po @@ -20,7 +20,7 @@ msgstr "" #: ../../c-api/memoryview.rst:9 msgid "MemoryView objects" -msgstr "" +msgstr "MemoryView 物件" #: ../../c-api/memoryview.rst:11 msgid "" diff --git a/c-api/module.po b/c-api/module.po index 83e40f7e97..bc839229cd 100644 --- a/c-api/module.po +++ b/c-api/module.po @@ -52,7 +52,7 @@ msgstr "" #: ../../c-api/module.rst:48 msgid ":attr:`__package__` and :attr:`__loader__` are set to ``None``." -msgstr "" +msgstr ":attr:`__package__` 和 :attr:`__loader__` 被設為 ``None``。" #: ../../c-api/module.rst:54 msgid "" @@ -518,6 +518,9 @@ msgstr "" #: ../../c-api/module.rst:457 ../../c-api/module.rst:506 msgid "Example usage::" msgstr "" +"用法範例:\n" +"\n" +"::" #: ../../c-api/module.rst:471 ../../c-api/module.rst:524 msgid "" diff --git a/c-api/none.po b/c-api/none.po index 9fb9153232..fe5d0c650d 100644 --- a/c-api/none.po +++ b/c-api/none.po @@ -21,7 +21,7 @@ msgstr "" #: ../../c-api/none.rst:6 msgid "The ``None`` Object" -msgstr "" +msgstr "``None`` 物件" #: ../../c-api/none.rst:10 msgid "" diff --git a/c-api/refcounting.po b/c-api/refcounting.po index dc250ed329..7752a264a6 100644 --- a/c-api/refcounting.po +++ b/c-api/refcounting.po @@ -77,10 +77,16 @@ msgstr "" #: ../../c-api/refcounting.rst:45 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../c-api/refcounting.rst:50 msgid "can be written as::" msgstr "" +"可以寫成:\n" +"\n" +"::" #: ../../c-api/refcounting.rst:54 msgid "See also :c:func:`Py_INCREF`." diff --git a/c-api/reflection.po b/c-api/reflection.po index 6ca8234d8f..cd9f298a20 100644 --- a/c-api/reflection.po +++ b/c-api/reflection.po @@ -61,7 +61,7 @@ msgstr "" #: ../../c-api/reflection.rst:40 ../../c-api/reflection.rst:60 msgid "*frame* must not be ``NULL``." -msgstr "" +msgstr "*frame* 不可為 ``NULL``。" #: ../../c-api/reflection.rst:47 msgid "Get the *frame* code." diff --git a/c-api/structures.po b/c-api/structures.po index 36740a21ef..c97399086e 100644 --- a/c-api/structures.po +++ b/c-api/structures.po @@ -454,7 +454,7 @@ msgstr ":attr:`offset`" #: ../../c-api/structures.rst:404 ../../c-api/structures.rst:440 msgid "Py_ssize_t" -msgstr "" +msgstr "Py_ssize_t" #: ../../c-api/structures.rst:404 msgid "" @@ -490,7 +490,7 @@ msgstr "" #: ../../c-api/structures.rst:423 msgid "T_SHORT" -msgstr "" +msgstr "T_SHORT" #: ../../c-api/structures.rst:423 msgid "short" diff --git a/c-api/type.po b/c-api/type.po index 3e9c5a726d..2597a9693d 100644 --- a/c-api/type.po +++ b/c-api/type.po @@ -224,11 +224,11 @@ msgstr "" #: ../../c-api/type.rst:192 msgid "Equivalent to ``PyType_FromModuleAndSpec(NULL, spec, bases)``." -msgstr "" +msgstr "等價於 ``PyType_FromModuleAndSpec(NULL, spec, bases)``\\ 。" #: ../../c-api/type.rst:198 msgid "Equivalent to ``PyType_FromSpecWithBases(spec, NULL)``." -msgstr "" +msgstr "等價於 ``PyType_FromSpecWithBases(spec, NULL)``\\ 。" #: ../../c-api/type.rst:202 msgid "Structure defining a type's behavior." diff --git a/c-api/typeobj.po b/c-api/typeobj.po index a67c92948e..177b883cd9 100644 --- a/c-api/typeobj.po +++ b/c-api/typeobj.po @@ -76,7 +76,7 @@ msgstr "" #: ../../c-api/typeobj.rst:42 msgid "O" -msgstr "0" +msgstr "O" #: ../../c-api/typeobj.rst:42 msgid "T" @@ -1583,7 +1583,7 @@ msgstr "" #: ../../c-api/typeobj.rst:1803 ../../c-api/typeobj.rst:1845 #: ../../c-api/typeobj.rst:1866 ../../c-api/typeobj.rst:1897 msgid "**Default:**" -msgstr "" +msgstr "**預設:**" #: ../../c-api/typeobj.rst:826 msgid "" @@ -2227,7 +2227,7 @@ msgstr "" #: ../../c-api/typeobj.rst:1438 msgid "Constant" -msgstr "" +msgstr "常數" #: ../../c-api/typeobj.rst:1438 msgid "Comparison" @@ -2235,51 +2235,51 @@ msgstr "" #: ../../c-api/typeobj.rst:1440 msgid ":const:`Py_LT`" -msgstr "" +msgstr ":const:`Py_LT`" #: ../../c-api/typeobj.rst:1440 msgid "``<``" -msgstr "" +msgstr "``<``" #: ../../c-api/typeobj.rst:1442 msgid ":const:`Py_LE`" -msgstr "" +msgstr ":const:`Py_LE`" #: ../../c-api/typeobj.rst:1442 msgid "``<=``" -msgstr "" +msgstr "``<=``" #: ../../c-api/typeobj.rst:1444 msgid ":const:`Py_EQ`" -msgstr "" +msgstr ":const:`Py_EQ`" #: ../../c-api/typeobj.rst:1444 msgid "``==``" -msgstr "" +msgstr "``==``" #: ../../c-api/typeobj.rst:1446 msgid ":const:`Py_NE`" -msgstr "" +msgstr ":const:`Py_NE`" #: ../../c-api/typeobj.rst:1446 msgid "``!=``" -msgstr "" +msgstr "``!=``" #: ../../c-api/typeobj.rst:1448 msgid ":const:`Py_GT`" -msgstr "" +msgstr ":const:`Py_GT`" #: ../../c-api/typeobj.rst:1448 msgid "``>``" -msgstr "" +msgstr "``>``" #: ../../c-api/typeobj.rst:1450 msgid ":const:`Py_GE`" -msgstr "" +msgstr ":const:`Py_GE`" #: ../../c-api/typeobj.rst:1450 msgid "``>=``" -msgstr "" +msgstr "``>=``" #: ../../c-api/typeobj.rst:1453 msgid "" @@ -3325,19 +3325,19 @@ msgstr "" #: ../../c-api/typeobj.rst:2492 msgid "See :c:member:`~PyTypeObject.tp_free`." -msgstr "" +msgstr "請見 :c:member:`~PyTypeObject.tp_free`\\ 。" #: ../../c-api/typeobj.rst:2496 msgid "See :c:member:`~PyTypeObject.tp_new`." -msgstr "" +msgstr "請見 :c:member:`~PyTypeObject.tp_new`\\ 。" #: ../../c-api/typeobj.rst:2500 msgid "See :c:member:`~PyTypeObject.tp_init`." -msgstr "" +msgstr "請見 :c:member:`~PyTypeObject.tp_init`\\ 。" #: ../../c-api/typeobj.rst:2504 msgid "See :c:member:`~PyTypeObject.tp_repr`." -msgstr "" +msgstr "請見 :c:member:`~PyTypeObject.tp_repr`\\ 。" #: ../../c-api/typeobj.rst:2508 ../../c-api/typeobj.rst:2517 msgid "Return the value of the named attribute for the object." @@ -3351,43 +3351,43 @@ msgstr "" #: ../../c-api/typeobj.rst:2519 msgid "See :c:member:`~PyTypeObject.tp_getattro`." -msgstr "" +msgstr "請見 :c:member:`~PyTypeObject.tp_getattro`\\ 。" #: ../../c-api/typeobj.rst:2526 msgid "See :c:member:`~PyTypeObject.tp_setattro`." -msgstr "" +msgstr "請見 :c:member:`~PyTypeObject.tp_setattro`\\ 。" #: ../../c-api/typeobj.rst:2530 msgid "See :c:member:`~PyTypeObject.tp_descrget`." -msgstr "" +msgstr "請見 :c:member:`~PyTypeObject.tp_descrget`\\ 。" #: ../../c-api/typeobj.rst:2534 msgid "See :c:member:`~PyTypeObject.tp_descrset`." -msgstr "" +msgstr "請見 :c:member:`~PyTypeObject.tp_descrset`\\ 。" #: ../../c-api/typeobj.rst:2538 msgid "See :c:member:`~PyTypeObject.tp_hash`." -msgstr "" +msgstr "請見 :c:member:`~PyTypeObject.tp_hash`\\ 。" #: ../../c-api/typeobj.rst:2542 msgid "See :c:member:`~PyTypeObject.tp_richcompare`." -msgstr "" +msgstr "請見 :c:member:`~PyTypeObject.tp_richcompare`\\ 。" #: ../../c-api/typeobj.rst:2546 msgid "See :c:member:`~PyTypeObject.tp_iter`." -msgstr "" +msgstr "請見 :c:member:`~PyTypeObject.tp_iter`\\ 。" #: ../../c-api/typeobj.rst:2550 msgid "See :c:member:`~PyTypeObject.tp_iternext`." -msgstr "" +msgstr "請見 :c:member:`~PyTypeObject.tp_iternext`\\ 。" #: ../../c-api/typeobj.rst:2564 msgid "See :c:member:`~PyAsyncMethods.am_send`." -msgstr "" +msgstr "請見 :c:member:`~PyAsyncMethods.am_send`\\ 。" #: ../../c-api/typeobj.rst:2580 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../c-api/typeobj.rst:2582 msgid "" diff --git a/c-api/unicode.po b/c-api/unicode.po index 7884c62928..8256cb65c9 100644 --- a/c-api/unicode.po +++ b/c-api/unicode.po @@ -171,7 +171,7 @@ msgstr "" #: ../../c-api/unicode.rst:149 msgid "``PyUnicode_WCHAR_KIND`` is deprecated." -msgstr "" +msgstr "``PyUnicode_WCHAR_KIND`` 已棄用。" #: ../../c-api/unicode.rst:154 msgid "" diff --git a/distutils/apiref.po b/distutils/apiref.po index 8e385efec0..462680464e 100644 --- a/distutils/apiref.po +++ b/distutils/apiref.po @@ -21,7 +21,7 @@ msgstr "" #: ../../distutils/apiref.rst:5 msgid "API Reference" -msgstr "API參照" +msgstr "API 參照" #: ../../distutils/apiref.rst:11 msgid "`New and changed setup.py arguments in setuptools`_" @@ -80,7 +80,7 @@ msgstr "" #: ../../distutils/apiref.rst:44 ../../distutils/apiref.rst:187 msgid "*name*" -msgstr "" +msgstr "*name*" #: ../../distutils/apiref.rst:44 msgid "The name of the package" @@ -98,7 +98,7 @@ msgstr "" #: ../../distutils/apiref.rst:46 msgid "*version*" -msgstr "" +msgstr "*version*" #: ../../distutils/apiref.rst:46 msgid "The version number of the package; see :mod:`distutils.version`" @@ -106,7 +106,7 @@ msgstr "" #: ../../distutils/apiref.rst:50 msgid "*description*" -msgstr "" +msgstr "*description*" #: ../../distutils/apiref.rst:50 msgid "A single line describing the package" @@ -114,7 +114,7 @@ msgstr "" #: ../../distutils/apiref.rst:53 msgid "*long_description*" -msgstr "" +msgstr "*long_description*" #: ../../distutils/apiref.rst:53 msgid "Longer description of the package" @@ -122,7 +122,7 @@ msgstr "" #: ../../distutils/apiref.rst:56 msgid "*author*" -msgstr "" +msgstr "*author*" #: ../../distutils/apiref.rst:56 msgid "The name of the package author" @@ -130,7 +130,7 @@ msgstr "" #: ../../distutils/apiref.rst:58 msgid "*author_email*" -msgstr "" +msgstr "*author_email*" #: ../../distutils/apiref.rst:58 msgid "The email address of the package author" @@ -138,7 +138,7 @@ msgstr "" #: ../../distutils/apiref.rst:61 msgid "*maintainer*" -msgstr "" +msgstr "*maintainer*" #: ../../distutils/apiref.rst:61 msgid "" @@ -149,7 +149,7 @@ msgstr "" #: ../../distutils/apiref.rst:68 msgid "*maintainer_email*" -msgstr "" +msgstr "*maintainer_email*" #: ../../distutils/apiref.rst:68 msgid "" @@ -158,7 +158,7 @@ msgstr "" #: ../../distutils/apiref.rst:72 msgid "*url*" -msgstr "" +msgstr "*url*" #: ../../distutils/apiref.rst:72 msgid "A URL for the package (homepage)" @@ -166,7 +166,7 @@ msgstr "" #: ../../distutils/apiref.rst:75 msgid "*download_url*" -msgstr "" +msgstr "*download_url*" #: ../../distutils/apiref.rst:75 msgid "A URL to download the package" @@ -174,7 +174,7 @@ msgstr "" #: ../../distutils/apiref.rst:77 msgid "*packages*" -msgstr "" +msgstr "*packages*" #: ../../distutils/apiref.rst:77 msgid "A list of Python packages that distutils will manipulate" @@ -193,7 +193,7 @@ msgstr "" #: ../../distutils/apiref.rst:80 msgid "*py_modules*" -msgstr "" +msgstr "*py_modules*" #: ../../distutils/apiref.rst:80 msgid "A list of Python modules that distutils will manipulate" @@ -201,7 +201,7 @@ msgstr "" #: ../../distutils/apiref.rst:83 msgid "*scripts*" -msgstr "" +msgstr "*scripts*" #: ../../distutils/apiref.rst:83 msgid "A list of standalone script files to be built and installed" @@ -209,7 +209,7 @@ msgstr "" #: ../../distutils/apiref.rst:87 msgid "*ext_modules*" -msgstr "" +msgstr "*ext_modules*" #: ../../distutils/apiref.rst:87 msgid "A list of Python extensions to be built" @@ -221,7 +221,7 @@ msgstr "" #: ../../distutils/apiref.rst:90 msgid "*classifiers*" -msgstr "" +msgstr "*classifiers*" #: ../../distutils/apiref.rst:90 msgid "A list of categories for the package" @@ -235,7 +235,7 @@ msgstr "" #: ../../distutils/apiref.rst:93 msgid "*distclass*" -msgstr "" +msgstr "*distclass*" #: ../../distutils/apiref.rst:93 msgid "the :class:`Distribution` class to use" @@ -247,7 +247,7 @@ msgstr "" #: ../../distutils/apiref.rst:96 msgid "*script_name*" -msgstr "" +msgstr "*script_name*" #: ../../distutils/apiref.rst:96 msgid "The name of the setup.py script - defaults to ``sys.argv[0]``" @@ -255,7 +255,7 @@ msgstr "" #: ../../distutils/apiref.rst:100 msgid "*script_args*" -msgstr "" +msgstr "*script_args*" #: ../../distutils/apiref.rst:100 msgid "Arguments to supply to the setup script" @@ -263,7 +263,7 @@ msgstr "" #: ../../distutils/apiref.rst:103 msgid "*options*" -msgstr "" +msgstr "*options*" #: ../../distutils/apiref.rst:103 msgid "default options for the setup script" @@ -276,7 +276,7 @@ msgstr "" #: ../../distutils/apiref.rst:106 msgid "*license*" -msgstr "" +msgstr "*license*" #: ../../distutils/apiref.rst:106 msgid "The license for the package" @@ -284,7 +284,7 @@ msgstr "" #: ../../distutils/apiref.rst:108 msgid "*keywords*" -msgstr "" +msgstr "*keywords*" #: ../../distutils/apiref.rst:108 msgid "Descriptive meta-data, see :pep:`314`" @@ -296,11 +296,11 @@ msgstr "" #: ../../distutils/apiref.rst:111 msgid "*platforms*" -msgstr "" +msgstr "*platforms*" #: ../../distutils/apiref.rst:113 msgid "*cmdclass*" -msgstr "" +msgstr "*cmdclass*" #: ../../distutils/apiref.rst:113 msgid "A mapping of command names to :class:`Command` subclasses" @@ -308,7 +308,7 @@ msgstr "" #: ../../distutils/apiref.rst:116 msgid "*data_files*" -msgstr "" +msgstr "*data_files*" #: ../../distutils/apiref.rst:116 msgid "A list of data files to install" @@ -320,7 +320,7 @@ msgstr "" #: ../../distutils/apiref.rst:119 msgid "*package_dir*" -msgstr "" +msgstr "*package_dir*" #: ../../distutils/apiref.rst:119 msgid "A mapping of package to directory names" @@ -351,11 +351,11 @@ msgstr "" #: ../../distutils/apiref.rst:143 ../../distutils/apiref.rst:562 #: ../../distutils/apiref.rst:1606 msgid "description" -msgstr "" +msgstr "描述" #: ../../distutils/apiref.rst:145 msgid "*init*" -msgstr "" +msgstr "*init*" #: ../../distutils/apiref.rst:145 msgid "" @@ -365,7 +365,7 @@ msgstr "" #: ../../distutils/apiref.rst:149 msgid "*config*" -msgstr "" +msgstr "*config*" #: ../../distutils/apiref.rst:149 msgid "" @@ -375,7 +375,7 @@ msgstr "" #: ../../distutils/apiref.rst:153 msgid "*commandline*" -msgstr "" +msgstr "*commandline*" #: ../../distutils/apiref.rst:153 msgid "" @@ -385,7 +385,7 @@ msgstr "" #: ../../distutils/apiref.rst:158 msgid "*run*" -msgstr "" +msgstr "*run*" #: ../../distutils/apiref.rst:158 msgid "" @@ -431,7 +431,7 @@ msgstr "" #: ../../distutils/apiref.rst:193 msgid "*sources*" -msgstr "" +msgstr "*sources*" #: ../../distutils/apiref.rst:193 msgid "" @@ -444,7 +444,7 @@ msgstr "" #: ../../distutils/apiref.rst:207 msgid "*include_dirs*" -msgstr "" +msgstr "*include_dirs*" #: ../../distutils/apiref.rst:207 msgid "" @@ -454,7 +454,7 @@ msgstr "" #: ../../distutils/apiref.rst:211 msgid "*define_macros*" -msgstr "" +msgstr "*define_macros*" #: ../../distutils/apiref.rst:211 msgid "" @@ -470,7 +470,7 @@ msgstr "" #: ../../distutils/apiref.rst:223 msgid "*undef_macros*" -msgstr "" +msgstr "*undef_macros*" #: ../../distutils/apiref.rst:223 msgid "list of macros to undefine explicitly" @@ -478,7 +478,7 @@ msgstr "" #: ../../distutils/apiref.rst:226 msgid "*library_dirs*" -msgstr "" +msgstr "*library_dirs*" #: ../../distutils/apiref.rst:226 msgid "list of directories to search for C/C++ libraries at link time" @@ -486,7 +486,7 @@ msgstr "" #: ../../distutils/apiref.rst:230 msgid "*libraries*" -msgstr "" +msgstr "*libraries*" #: ../../distutils/apiref.rst:230 msgid "list of library names (not filenames or paths) to link against" @@ -494,7 +494,7 @@ msgstr "" #: ../../distutils/apiref.rst:234 msgid "*runtime_library_dirs*" -msgstr "" +msgstr "*runtime_library_dirs*" #: ../../distutils/apiref.rst:234 msgid "" @@ -504,7 +504,7 @@ msgstr "" #: ../../distutils/apiref.rst:240 msgid "*extra_objects*" -msgstr "" +msgstr "*extra_objects*" #: ../../distutils/apiref.rst:240 msgid "" @@ -515,7 +515,7 @@ msgstr "" #: ../../distutils/apiref.rst:247 msgid "*extra_compile_args*" -msgstr "" +msgstr "*extra_compile_args*" #: ../../distutils/apiref.rst:247 msgid "" @@ -527,7 +527,7 @@ msgstr "" #: ../../distutils/apiref.rst:258 msgid "*extra_link_args*" -msgstr "" +msgstr "*extra_link_args*" #: ../../distutils/apiref.rst:258 msgid "" @@ -538,7 +538,7 @@ msgstr "" #: ../../distutils/apiref.rst:267 msgid "*export_symbols*" -msgstr "" +msgstr "*export_symbols*" #: ../../distutils/apiref.rst:267 msgid "" @@ -549,7 +549,7 @@ msgstr "" #: ../../distutils/apiref.rst:275 msgid "*depends*" -msgstr "" +msgstr "*depends*" #: ../../distutils/apiref.rst:275 msgid "list of files that the extension depends on" @@ -557,7 +557,7 @@ msgstr "" #: ../../distutils/apiref.rst:278 msgid "*language*" -msgstr "" +msgstr "*language*" #: ../../distutils/apiref.rst:278 msgid "" @@ -567,7 +567,7 @@ msgstr "" #: ../../distutils/apiref.rst:284 msgid "*optional*" -msgstr "" +msgstr "*optional*" #: ../../distutils/apiref.rst:284 msgid "" @@ -888,7 +888,7 @@ msgstr "" #: ../../distutils/apiref.rst:566 msgid "*linker_so*" -msgstr "" +msgstr "*linker_so*" #: ../../distutils/apiref.rst:566 msgid "linker used to create shared objects and libraries" @@ -896,7 +896,7 @@ msgstr "" #: ../../distutils/apiref.rst:569 msgid "*linker_exe*" -msgstr "" +msgstr "*linker_exe*" #: ../../distutils/apiref.rst:569 msgid "linker used to create binary executables" @@ -904,7 +904,7 @@ msgstr "" #: ../../distutils/apiref.rst:571 msgid "*archiver*" -msgstr "" +msgstr "*archiver*" #: ../../distutils/apiref.rst:571 msgid "static library creator" @@ -2122,7 +2122,7 @@ msgstr "" #: ../../distutils/apiref.rst:1608 msgid "*strip_comments*" -msgstr "" +msgstr "*strip_comments*" #: ../../distutils/apiref.rst:1608 msgid "" @@ -2137,7 +2137,7 @@ msgstr "" #: ../../distutils/apiref.rst:1614 msgid "*lstrip_ws*" -msgstr "" +msgstr "*lstrip_ws*" #: ../../distutils/apiref.rst:1614 msgid "strip leading whitespace from each line before returning it" @@ -2150,7 +2150,7 @@ msgstr "" #: ../../distutils/apiref.rst:1617 msgid "*rstrip_ws*" -msgstr "" +msgstr "*rstrip_ws*" #: ../../distutils/apiref.rst:1617 msgid "" @@ -2160,7 +2160,7 @@ msgstr "" #: ../../distutils/apiref.rst:1622 msgid "*skip_blanks*" -msgstr "" +msgstr "*skip_blanks*" #: ../../distutils/apiref.rst:1622 msgid "" @@ -2172,7 +2172,7 @@ msgstr "" #: ../../distutils/apiref.rst:1632 msgid "*join_lines*" -msgstr "" +msgstr "*join_lines*" #: ../../distutils/apiref.rst:1632 msgid "" @@ -2184,7 +2184,7 @@ msgstr "" #: ../../distutils/apiref.rst:1643 msgid "*collapse_join*" -msgstr "" +msgstr "*collapse_join*" #: ../../distutils/apiref.rst:1643 msgid "" diff --git a/distutils/builtdist.po b/distutils/builtdist.po index b9f0a87a7b..d4f37ab759 100644 --- a/distutils/builtdist.po +++ b/distutils/builtdist.po @@ -372,7 +372,7 @@ msgstr "" #: ../../distutils/builtdist.rst:197 msgid "``name``" -msgstr "" +msgstr "``name``" #: ../../distutils/builtdist.rst:199 msgid "Summary (in preamble)" @@ -380,7 +380,7 @@ msgstr "" #: ../../distutils/builtdist.rst:199 msgid "``description``" -msgstr "" +msgstr "``description``" #: ../../distutils/builtdist.rst:201 msgid "Version" @@ -388,7 +388,7 @@ msgstr "" #: ../../distutils/builtdist.rst:201 msgid "``version``" -msgstr "" +msgstr "``version``" #: ../../distutils/builtdist.rst:203 ../../distutils/builtdist.rst:226 msgid "Vendor" @@ -406,7 +406,7 @@ msgstr "版權宣告" #: ../../distutils/builtdist.rst:207 msgid "``license``" -msgstr "" +msgstr "``license``" #: ../../distutils/builtdist.rst:209 msgid "Url" @@ -414,7 +414,7 @@ msgstr "" #: ../../distutils/builtdist.rst:209 msgid "``url``" -msgstr "" +msgstr "``url``" #: ../../distutils/builtdist.rst:211 msgid "%description (section)" @@ -422,7 +422,7 @@ msgstr "" #: ../../distutils/builtdist.rst:211 msgid "``long_description``" -msgstr "" +msgstr "``long_description``" #: ../../distutils/builtdist.rst:214 msgid "" @@ -445,11 +445,11 @@ msgstr "" #: ../../distutils/builtdist.rst:222 msgid "``release``" -msgstr "" +msgstr "``release``" #: ../../distutils/builtdist.rst:222 msgid "\"1\"" -msgstr "" +msgstr "\"1\"" #: ../../distutils/builtdist.rst:224 msgid "Group" @@ -457,7 +457,7 @@ msgstr "" #: ../../distutils/builtdist.rst:224 msgid "``group``" -msgstr "" +msgstr "``group``" #: ../../distutils/builtdist.rst:224 msgid "\"Development/Libraries\"" @@ -465,7 +465,7 @@ msgstr "" #: ../../distutils/builtdist.rst:226 msgid "``vendor``" -msgstr "" +msgstr "``vendor``" #: ../../distutils/builtdist.rst:226 msgid "(see above)" @@ -477,7 +477,7 @@ msgstr "" #: ../../distutils/builtdist.rst:228 msgid "``packager``" -msgstr "" +msgstr "``packager``" #: ../../distutils/builtdist.rst:228 ../../distutils/builtdist.rst:230 #: ../../distutils/builtdist.rst:232 ../../distutils/builtdist.rst:234 @@ -492,7 +492,7 @@ msgstr "" #: ../../distutils/builtdist.rst:230 msgid "``provides``" -msgstr "" +msgstr "``provides``" #: ../../distutils/builtdist.rst:232 msgid "Requires" @@ -500,7 +500,7 @@ msgstr "" #: ../../distutils/builtdist.rst:232 msgid "``requires``" -msgstr "" +msgstr "``requires``" #: ../../distutils/builtdist.rst:234 msgid "Conflicts" @@ -508,7 +508,7 @@ msgstr "" #: ../../distutils/builtdist.rst:234 msgid "``conflicts``" -msgstr "" +msgstr "``conflicts``" #: ../../distutils/builtdist.rst:236 msgid "Obsoletes" @@ -516,7 +516,7 @@ msgstr "" #: ../../distutils/builtdist.rst:236 msgid "``obsoletes``" -msgstr "" +msgstr "``obsoletes``" #: ../../distutils/builtdist.rst:238 msgid "Distribution" @@ -524,7 +524,7 @@ msgstr "" #: ../../distutils/builtdist.rst:238 msgid "``distribution_name``" -msgstr "" +msgstr "``distribution_name``" #: ../../distutils/builtdist.rst:240 msgid "BuildRequires" @@ -532,7 +532,7 @@ msgstr "" #: ../../distutils/builtdist.rst:240 msgid "``build_requires``" -msgstr "" +msgstr "``build_requires``" #: ../../distutils/builtdist.rst:242 msgid "Icon" @@ -540,7 +540,7 @@ msgstr "" #: ../../distutils/builtdist.rst:242 msgid "``icon``" -msgstr "" +msgstr "``icon``" #: ../../distutils/builtdist.rst:245 msgid "" diff --git a/distutils/commandref.po b/distutils/commandref.po index a3aa56a698..0f100261e2 100644 --- a/distutils/commandref.po +++ b/distutils/commandref.po @@ -67,7 +67,7 @@ msgstr "" #: ../../distutils/commandref.rst:63 msgid "Command" -msgstr "" +msgstr "指令" #: ../../distutils/commandref.rst:63 msgid "Description" diff --git a/distutils/index.po b/distutils/index.po index e42242b9ed..d9e404207b 100644 --- a/distutils/index.po +++ b/distutils/index.po @@ -25,15 +25,15 @@ msgstr "發布 Python 模組(舊版)" #: ../../distutils/index.rst:0 msgid "Authors" -msgstr "" +msgstr "作者" #: ../../distutils/index.rst:7 msgid "Greg Ward, Anthony Baxter" -msgstr "" +msgstr "Greg Ward, Anthony Baxter" #: ../../distutils/index.rst:0 msgid "Email" -msgstr "" +msgstr "電子郵件" #: ../../distutils/index.rst:8 msgid "distutils-sig@python.org" diff --git a/distutils/introduction.po b/distutils/introduction.po index f0c7fb71d5..4b7fe4d9b8 100644 --- a/distutils/introduction.po +++ b/distutils/introduction.po @@ -84,7 +84,7 @@ msgstr "" #: ../../distutils/introduction.rst:49 msgid "A Simple Example" -msgstr "" +msgstr "一個簡單範例" #: ../../distutils/introduction.rst:51 msgid "" @@ -211,7 +211,7 @@ msgstr "" #: ../../distutils/introduction.rst:146 msgid "module" -msgstr "" +msgstr "模組" #: ../../distutils/introduction.rst:144 msgid "" diff --git a/distutils/setupscript.po b/distutils/setupscript.po index e2698fb7e8..1bbcc6b8c2 100644 --- a/distutils/setupscript.po +++ b/distutils/setupscript.po @@ -350,6 +350,9 @@ msgstr "" #: ../../distutils/setupscript.rst:293 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../distutils/setupscript.rst:300 msgid "is the equivalent of having this at the top of every C source file::" @@ -732,7 +735,7 @@ msgstr "註解" #: ../../distutils/setupscript.rst:569 msgid "``name``" -msgstr "" +msgstr "``name``" #: ../../distutils/setupscript.rst:569 msgid "name of the package" @@ -750,7 +753,7 @@ msgstr "\\(1)" #: ../../distutils/setupscript.rst:571 msgid "``version``" -msgstr "" +msgstr "``version``" #: ../../distutils/setupscript.rst:571 msgid "version of this release" @@ -762,7 +765,7 @@ msgstr "(1)(2)" #: ../../distutils/setupscript.rst:573 msgid "``author``" -msgstr "" +msgstr "``author``" #: ../../distutils/setupscript.rst:573 msgid "package author's name" @@ -787,7 +790,7 @@ msgstr "" #: ../../distutils/setupscript.rst:578 msgid "``maintainer``" -msgstr "" +msgstr "``maintainer``" #: ../../distutils/setupscript.rst:578 msgid "package maintainer's name" @@ -803,7 +806,7 @@ msgstr "" #: ../../distutils/setupscript.rst:583 msgid "``url``" -msgstr "" +msgstr "``url``" #: ../../distutils/setupscript.rst:583 msgid "home page for the package" @@ -811,11 +814,11 @@ msgstr "" #: ../../distutils/setupscript.rst:583 ../../distutils/setupscript.rst:592 msgid "URL" -msgstr "" +msgstr "URL" #: ../../distutils/setupscript.rst:585 msgid "``description``" -msgstr "" +msgstr "``description``" #: ../../distutils/setupscript.rst:585 msgid "short, summary description of the package" @@ -847,7 +850,7 @@ msgstr "" #: ../../distutils/setupscript.rst:595 msgid "``classifiers``" -msgstr "" +msgstr "``classifiers``" #: ../../distutils/setupscript.rst:595 msgid "a list of classifiers" @@ -864,7 +867,7 @@ msgstr "(6)(7)" #: ../../distutils/setupscript.rst:597 msgid "``platforms``" -msgstr "" +msgstr "``platforms``" #: ../../distutils/setupscript.rst:597 msgid "a list of platforms" @@ -876,7 +879,7 @@ msgstr "(6)(8)" #: ../../distutils/setupscript.rst:599 msgid "``keywords``" -msgstr "" +msgstr "``keywords``" #: ../../distutils/setupscript.rst:599 msgid "a list of keywords" @@ -884,7 +887,7 @@ msgstr "" #: ../../distutils/setupscript.rst:601 msgid "``license``" -msgstr "" +msgstr "``license``" #: ../../distutils/setupscript.rst:601 msgid "license for the package" @@ -986,7 +989,7 @@ msgstr "" #: ../../distutils/setupscript.rst:662 msgid "0.1.0" -msgstr "" +msgstr "0.1.0" #: ../../distutils/setupscript.rst:662 msgid "the first, experimental release of a package" @@ -994,7 +997,7 @@ msgstr "" #: ../../distutils/setupscript.rst:665 msgid "1.0.1a2" -msgstr "" +msgstr "1.0.1a2" #: ../../distutils/setupscript.rst:665 msgid "the second alpha release of the first patch version of 1.0" diff --git a/extending/extending.po b/extending/extending.po index 168dd35ef1..edab84af60 100644 --- a/extending/extending.po +++ b/extending/extending.po @@ -60,7 +60,7 @@ msgstr "" #: ../../extending/extending.rst:40 msgid "A Simple Example" -msgstr "" +msgstr "一個簡單範例" #: ../../extending/extending.rst:42 msgid "" @@ -320,7 +320,7 @@ msgstr "" #: ../../extending/extending.rst:271 msgid "Back to the Example" -msgstr "" +msgstr "回到範例" #: ../../extending/extending.rst:273 msgid "" @@ -664,6 +664,9 @@ msgstr "" #: ../../extending/extending.rst:650 msgid "Some example calls::" msgstr "" +"一些呼叫範例:\n" +"\n" +"::" #: ../../extending/extending.rst:720 msgid "Keyword Parameters for Extension Functions" diff --git a/extending/newtypes.po b/extending/newtypes.po index f7094b0ddd..5c06462d85 100644 --- a/extending/newtypes.po +++ b/extending/newtypes.po @@ -177,6 +177,9 @@ msgstr "" #: ../../extending/newtypes.rst:188 msgid "Here is a simple example::" msgstr "" +"以下是個簡單的範例:\n" +"\n" +"::" #: ../../extending/newtypes.rst:200 msgid "Attribute Management" @@ -298,7 +301,7 @@ msgstr "" #: ../../extending/newtypes.rst:298 msgid "Constant" -msgstr "" +msgstr "常數" #: ../../extending/newtypes.rst:298 msgid "Meaning" @@ -371,6 +374,9 @@ msgstr "" #: ../../extending/newtypes.rst:354 msgid "Here is an example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../extending/newtypes.rst:370 msgid "" diff --git a/extending/newtypes_tutorial.po b/extending/newtypes_tutorial.po index 00c892f3d8..20660e9493 100644 --- a/extending/newtypes_tutorial.po +++ b/extending/newtypes_tutorial.po @@ -829,7 +829,7 @@ msgstr "" #: ../../extending/newtypes_tutorial.rst:893 msgid "Footnotes" -msgstr "" +msgstr "註解" #: ../../extending/newtypes_tutorial.rst:894 msgid "" diff --git a/faq/design.po b/faq/design.po index b8f7b26e97..df2a4abab0 100644 --- a/faq/design.po +++ b/faq/design.po @@ -25,7 +25,7 @@ msgstr "" #: ../../faq/design.rst:6 msgid "Contents" -msgstr "" +msgstr "目錄" #: ../../faq/design.rst:11 msgid "Why does Python use indentation for grouping of statements?" diff --git a/faq/extending.po b/faq/extending.po index d52ee8bba4..89dc616dec 100644 --- a/faq/extending.po +++ b/faq/extending.po @@ -24,7 +24,7 @@ msgstr "" #: ../../faq/extending.rst:6 msgid "Contents" -msgstr "" +msgstr "目錄" #: ../../faq/extending.rst:16 msgid "Can I create my own functions in C?" diff --git a/faq/general.po b/faq/general.po index b4cd940ab1..c81dc91cef 100644 --- a/faq/general.po +++ b/faq/general.po @@ -26,7 +26,7 @@ msgstr "常見Python問答集" #: ../../faq/general.rst:8 msgid "Contents" -msgstr "" +msgstr "目錄" #: ../../faq/general.rst:13 msgid "General Information" diff --git a/faq/gui.po b/faq/gui.po index f0df1f0143..f61da6dc71 100644 --- a/faq/gui.po +++ b/faq/gui.po @@ -25,7 +25,7 @@ msgstr "圖形化使用者界面常見問答集" #: ../../faq/gui.rst:8 msgid "Contents" -msgstr "" +msgstr "目錄" #: ../../faq/gui.rst:15 msgid "General GUI Questions" diff --git a/faq/library.po b/faq/library.po index a2f48cb9d9..3a060c0585 100644 --- a/faq/library.po +++ b/faq/library.po @@ -26,7 +26,7 @@ msgstr "函式庫和擴充功能的常見問題" #: ../../faq/library.rst:8 msgid "Contents" -msgstr "" +msgstr "目錄" #: ../../faq/library.rst:12 msgid "General Library Questions" @@ -53,7 +53,7 @@ msgstr "" #: ../../faq/library.rst:28 msgid "Where is the math.py (socket.py, regex.py, etc.) source file?" -msgstr "哪裡可以找到math.py (socket.py, regex.py, 等...) 原始檔案" +msgstr "哪裡可以找到 math.py (socket.py, regex.py, 等...) 原始檔案" #: ../../faq/library.rst:30 msgid "" @@ -66,11 +66,11 @@ msgstr "" #: ../../faq/library.rst:35 msgid "There are (at least) three kinds of modules in Python:" -msgstr "有(至少)三種Python 模組:" +msgstr "有(至少)三種 Python 模組:" #: ../../faq/library.rst:37 msgid "modules written in Python (.py);" -msgstr "在Python 的模組被寫成(.py)" +msgstr "在 Python 的模組被寫成(.py);" #: ../../faq/library.rst:38 msgid "" @@ -85,7 +85,7 @@ msgstr "" #: ../../faq/library.rst:47 msgid "How do I make a Python script executable on Unix?" -msgstr "我如何使Python script 執行在Unix ?" +msgstr "我如何使 Python script 執行在 Unix?" #: ../../faq/library.rst:49 msgid "" @@ -93,8 +93,8 @@ msgid "" "first line must begin with ``#!`` followed by the path of the Python " "interpreter." msgstr "" -"你需要作兩件事:腳本程式必須可以被執行而且第一行必須\"#!\"開頭後面接上Python直" -"譯器的路徑" +"你需要作兩件事:腳本程式必須可以被執行而且第一行必須\"#!\"開頭後面接上 Python " +"直譯器的路徑" #: ../../faq/library.rst:53 msgid "" @@ -851,6 +851,3 @@ msgid "" "There's also a ``Random`` class you can instantiate to create independent " "multiple random number generators." msgstr "" - -#~ msgid "http://pyserial.sourceforge.net" -#~ msgstr "http://pyserial.sourceforge.net" diff --git a/faq/programming.po b/faq/programming.po index 1c06e24344..106a2725ea 100644 --- a/faq/programming.po +++ b/faq/programming.po @@ -27,7 +27,7 @@ msgstr "程式開發常見問答集" #: ../../faq/programming.rst:8 msgid "Contents" -msgstr "" +msgstr "目錄" #: ../../faq/programming.rst:12 msgid "General Questions" @@ -169,29 +169,31 @@ msgstr "" #: ../../faq/programming.rst:97 msgid "`Nuitka `_ (Cross-platform)" -msgstr "" +msgstr "`Nuitka `_\\ (跨平台)" #: ../../faq/programming.rst:98 msgid "`PyInstaller `_ (Cross-platform)" -msgstr "" +msgstr "`PyInstaller `_\\ (跨平台)" #: ../../faq/programming.rst:99 msgid "" "`PyOxidizer `_ (Cross-platform)" msgstr "" +"`PyOxidizer `_\\ (跨平台)" #: ../../faq/programming.rst:100 msgid "" "`cx_Freeze `_ (Cross-platform)" msgstr "" +"`cx_Freeze `_\\ (跨平台)" #: ../../faq/programming.rst:101 msgid "`py2app `_ (macOS only)" -msgstr "" +msgstr "`py2app `_\\ (僅限 macOS)" #: ../../faq/programming.rst:102 msgid "`py2exe `_ (Windows only)" -msgstr "`py2exe `_ (僅限 Windows)" +msgstr "`py2exe `_\\ (僅限 Windows)" #: ../../faq/programming.rst:105 msgid "Are there coding standards or a style guide for Python programs?" @@ -349,14 +351,23 @@ msgstr "" #: ../../faq/programming.rst:261 msgid "config.py::" msgstr "" +"config.py:\n" +"\n" +"::" #: ../../faq/programming.rst:265 msgid "mod.py::" msgstr "" +"mod.py:\n" +"\n" +"::" #: ../../faq/programming.rst:270 msgid "main.py::" msgstr "" +"main.py:\n" +"\n" +"::" #: ../../faq/programming.rst:276 msgid "" @@ -491,6 +502,9 @@ msgstr "" #: ../../faq/programming.rst:361 msgid "but::" msgstr "" +"但是:\n" +"\n" +"::" #: ../../faq/programming.rst:367 msgid "" @@ -1499,6 +1513,9 @@ msgstr "" #: ../../faq/programming.rst:1347 msgid "This is equivalent to::" msgstr "" +"這等價於:\n" +"\n" +"::" #: ../../faq/programming.rst:1352 msgid "" @@ -2072,7 +2089,7 @@ msgstr "" #: ../../faq/programming.rst:1980 msgid "Modules" -msgstr "" +msgstr "模組" #: ../../faq/programming.rst:1983 msgid "How do I create a .pyc file?" @@ -2169,10 +2186,16 @@ msgstr "" #: ../../faq/programming.rst:2054 msgid ":file:`foo.py`::" msgstr "" +":file:`foo.py`:\n" +"\n" +"::" #: ../../faq/programming.rst:2059 msgid ":file:`bar.py`::" msgstr "" +":file:`bar.py`:\n" +"\n" +"::" #: ../../faq/programming.rst:2064 msgid "The problem is that the interpreter will perform the following steps:" diff --git a/faq/windows.po b/faq/windows.po index f38b93dd84..67c7b0b21d 100644 --- a/faq/windows.po +++ b/faq/windows.po @@ -26,7 +26,7 @@ msgstr "FAQ:在 Windows 使用 Python" #: ../../faq/windows.rst:12 msgid "Contents" -msgstr "" +msgstr "目錄" #: ../../faq/windows.rst:22 msgid "How do I run a Python program under Windows?" diff --git a/howto/annotations.po b/howto/annotations.po index 43d7cfd00d..f74cbfb1b3 100644 --- a/howto/annotations.po +++ b/howto/annotations.po @@ -23,15 +23,15 @@ msgstr "" #: ../../howto/annotations.rst:0 msgid "author" -msgstr "" +msgstr "作者" #: ../../howto/annotations.rst:7 msgid "Larry Hastings" -msgstr "" +msgstr "Larry Hastings" #: ../../howto/annotations.rst:None msgid "Abstract" -msgstr "" +msgstr "摘要" #: ../../howto/annotations.rst:11 msgid "" diff --git a/howto/argparse.po b/howto/argparse.po index 1f0d71aa9e..9d8db124ee 100644 --- a/howto/argparse.po +++ b/howto/argparse.po @@ -27,7 +27,7 @@ msgstr "Argparse 教學" #: ../../howto/argparse.rst:0 msgid "author" -msgstr "" +msgstr "作者" #: ../../howto/argparse.rst:5 msgid "Tshepang Lekhonkhobe" @@ -48,7 +48,7 @@ msgid "" "mod:`optparse`. Note also that :mod:`argparse` is based on :mod:`optparse`, " "and therefore very similar in terms of usage." msgstr "" -"另外兩個具有同樣功能的模組 :mod:`getopt` \\ (一個相等於 C 語言中的 :c:func:" +"另外兩個具有同樣功能的模組 :mod:`getopt`\\ (一個相等於 C 語言中的 :c:func:" "`getopt`\\ )以及被棄用的 :mod:`optparse`\\ 。而 :mod:`argparse` 也是根據 :" "mod:`optparse` 為基礎發展而來,因此有非常近似的使用方式。" @@ -162,7 +162,10 @@ msgstr "介紹位置參數" #: ../../howto/argparse.rst:112 msgid "An example::" -msgstr "例子:" +msgstr "" +"例如:\n" +"\n" +"::" #: ../../howto/argparse.rst:120 msgid "And running the code:" @@ -211,7 +214,9 @@ msgid "" msgstr "" "注意, 雖然 help 秀出了看起來不錯的信息, 但現在並沒有給予到實質幫助。像剛剛增" "加的 ``echo`` 這個位置參數,除了猜測和讀原始碼之外,我們根本不曉得該怎麼使用" -"他。因此我們來做一點事讓他變得更有用:" +"他。因此我們來做一點事讓他變得更有用:\n" +"\n" +"::" #: ../../howto/argparse.rst:165 msgid "And we get:" diff --git a/howto/clinic.po b/howto/clinic.po index fa0508b574..ba571076a8 100644 --- a/howto/clinic.po +++ b/howto/clinic.po @@ -24,15 +24,15 @@ msgstr "" #: ../../howto/clinic.rst:0 msgid "author" -msgstr "" +msgstr "作者" #: ../../howto/clinic.rst:7 msgid "Larry Hastings" -msgstr "" +msgstr "Larry Hastings" #: ../../howto/clinic.rst:None msgid "Abstract" -msgstr "" +msgstr "摘要" #: ../../howto/clinic.rst:12 msgid "" @@ -864,7 +864,7 @@ msgstr "" #: ../../howto/clinic.rst:769 msgid "``annotation``" -msgstr "" +msgstr "``annotation``" #: ../../howto/clinic.rst:767 msgid "" @@ -880,7 +880,7 @@ msgstr "" #: ../../howto/clinic.rst:780 msgid "``accept``" -msgstr "" +msgstr "``accept``" #: ../../howto/clinic.rst:775 msgid "" @@ -896,7 +896,7 @@ msgstr "" #: ../../howto/clinic.rst:785 msgid "``bitwise``" -msgstr "" +msgstr "``bitwise``" #: ../../howto/clinic.rst:783 msgid "" @@ -907,7 +907,7 @@ msgstr "" #: ../../howto/clinic.rst:790 ../../howto/clinic.rst:1328 msgid "``converter``" -msgstr "" +msgstr "``converter``" #: ../../howto/clinic.rst:788 msgid "" @@ -918,7 +918,7 @@ msgstr "" #: ../../howto/clinic.rst:795 msgid "``encoding``" -msgstr "" +msgstr "``encoding``" #: ../../howto/clinic.rst:793 msgid "" @@ -938,7 +938,7 @@ msgstr "" #: ../../howto/clinic.rst:804 ../../howto/clinic.rst:1300 msgid "``type``" -msgstr "" +msgstr "``type``" #: ../../howto/clinic.rst:802 msgid "" @@ -949,7 +949,7 @@ msgstr "" #: ../../howto/clinic.rst:810 msgid "``zeroes``" -msgstr "" +msgstr "``zeroes``" #: ../../howto/clinic.rst:807 msgid "" @@ -1818,7 +1818,7 @@ msgstr "" #: ../../howto/clinic.rst:1304 msgid "``default``" -msgstr "" +msgstr "``default``" #: ../../howto/clinic.rst:1303 msgid "" @@ -1828,7 +1828,7 @@ msgstr "" #: ../../howto/clinic.rst:1309 msgid "``py_default``" -msgstr "" +msgstr "``py_default``" #: ../../howto/clinic.rst:1307 msgid "" @@ -1844,7 +1844,7 @@ msgstr "" #: ../../howto/clinic.rst:1325 msgid "``c_ignored_default``" -msgstr "" +msgstr "``c_ignored_default``" #: ../../howto/clinic.rst:1317 msgid "" @@ -1863,7 +1863,7 @@ msgstr "" #: ../../howto/clinic.rst:1333 msgid "``impl_by_reference``" -msgstr "" +msgstr "``impl_by_reference``" #: ../../howto/clinic.rst:1331 msgid "" @@ -1873,7 +1873,7 @@ msgstr "" #: ../../howto/clinic.rst:1339 msgid "``parse_by_reference``" -msgstr "" +msgstr "``parse_by_reference``" #: ../../howto/clinic.rst:1336 msgid "" @@ -2051,7 +2051,7 @@ msgstr "" #: ../../howto/clinic.rst:1473 ../../howto/clinic.rst:1548 #: ../../howto/clinic.rst:1626 msgid "``block``" -msgstr "" +msgstr "``block``" #: ../../howto/clinic.rst:1472 msgid "" @@ -2062,7 +2062,7 @@ msgstr "" #: ../../howto/clinic.rst:1479 ../../howto/clinic.rst:1575 #: ../../howto/clinic.rst:1629 msgid "``buffer``" -msgstr "" +msgstr "``buffer``" #: ../../howto/clinic.rst:1476 msgid "" @@ -2074,7 +2074,7 @@ msgstr "" #: ../../howto/clinic.rst:1490 ../../howto/clinic.rst:1561 #: ../../howto/clinic.rst:1655 msgid "``file``" -msgstr "" +msgstr "``file``" #: ../../howto/clinic.rst:1482 msgid "" @@ -2094,7 +2094,7 @@ msgstr "" #: ../../howto/clinic.rst:1495 ../../howto/clinic.rst:1588 #: ../../howto/clinic.rst:1659 msgid "``two-pass``" -msgstr "" +msgstr "``two-pass``" #: ../../howto/clinic.rst:1493 msgid "" @@ -2105,7 +2105,7 @@ msgstr "" #: ../../howto/clinic.rst:1499 ../../howto/clinic.rst:1622 msgid "``suppress``" -msgstr "" +msgstr "``suppress``" #: ../../howto/clinic.rst:1498 msgid "The text is suppressed—thrown away." @@ -2223,7 +2223,7 @@ msgstr "" #: ../../howto/clinic.rst:1599 msgid "``partial-buffer``" -msgstr "" +msgstr "``partial-buffer``" #: ../../howto/clinic.rst:1591 msgid "" diff --git a/howto/curses.po b/howto/curses.po index 56836f7503..db6633190e 100644 --- a/howto/curses.po +++ b/howto/curses.po @@ -24,23 +24,23 @@ msgstr "" #: ../../howto/curses.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../howto/curses.rst:7 msgid "A.M. Kuchling, Eric S. Raymond" -msgstr "" +msgstr "A.M. Kuchling, Eric S. Raymond" #: ../../howto/curses.rst:0 msgid "Release" -msgstr "" +msgstr "發佈版本" #: ../../howto/curses.rst:8 msgid "2.04" -msgstr "" +msgstr "2.04" #: ../../howto/curses.rst:None msgid "Abstract" -msgstr "" +msgstr "摘要" #: ../../howto/curses.rst:13 msgid "" @@ -463,7 +463,7 @@ msgstr "" #: ../../howto/curses.rst:350 msgid "Attribute" -msgstr "" +msgstr "屬性" #: ../../howto/curses.rst:352 msgid ":const:`A_BLINK`" @@ -719,12 +719,13 @@ msgstr "" #: ../../howto/curses.rst:546 msgid "`The ncurses man page `_" -msgstr "" +msgstr "`ncurses 使用者手冊 `_" #: ../../howto/curses.rst:547 msgid "" "`The ncurses FAQ `_" msgstr "" +"`ncurses 問答集 `_" #: ../../howto/curses.rst:548 msgid "" diff --git a/howto/descriptor.po b/howto/descriptor.po index 9b5fef610e..1905da83e3 100644 --- a/howto/descriptor.po +++ b/howto/descriptor.po @@ -25,23 +25,23 @@ msgstr "修飾器 HowTo 指南" #: ../../howto/descriptor.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../howto/descriptor.rst:7 msgid "Raymond Hettinger" -msgstr "" +msgstr "Raymond Hettinger" #: ../../howto/descriptor.rst:0 msgid "Contact" -msgstr "" +msgstr "聯絡方式" #: ../../howto/descriptor.rst:8 msgid "" -msgstr "" +msgstr "" #: ../../howto/descriptor.rst:11 msgid "Contents" -msgstr "" +msgstr "目錄" #: ../../howto/descriptor.rst:13 msgid "" @@ -661,7 +661,7 @@ msgstr "" #: ../../howto/descriptor.rst:830 msgid "ORM example" -msgstr "" +msgstr "ORM 範例" #: ../../howto/descriptor.rst:832 msgid "" @@ -860,31 +860,31 @@ msgstr "" #: ../../howto/descriptor.rst:1207 msgid "function" -msgstr "" +msgstr "函式" #: ../../howto/descriptor.rst:1207 msgid "f(obj, \\*args)" -msgstr "" +msgstr "f(obj, \\*args)" #: ../../howto/descriptor.rst:1207 ../../howto/descriptor.rst:1209 msgid "f(\\*args)" -msgstr "" +msgstr "f(\\*args)" #: ../../howto/descriptor.rst:1209 msgid "staticmethod" -msgstr "" +msgstr "staticmethod" #: ../../howto/descriptor.rst:1211 msgid "classmethod" -msgstr "" +msgstr "classmethod" #: ../../howto/descriptor.rst:1211 msgid "f(type(obj), \\*args)" -msgstr "" +msgstr "f(type(obj), \\*args)" #: ../../howto/descriptor.rst:1211 msgid "f(cls, \\*args)" -msgstr "" +msgstr "f(cls, \\*args)" #: ../../howto/descriptor.rst:1216 msgid "Static methods" diff --git a/howto/functional.po b/howto/functional.po index f23424854c..4ae8c2200e 100644 --- a/howto/functional.po +++ b/howto/functional.po @@ -25,19 +25,19 @@ msgstr "函式編程 HOWTO" #: ../../howto/functional.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../howto/functional.rst:5 msgid "A. M. Kuchling" -msgstr "" +msgstr "A. M. Kuchling" #: ../../howto/functional.rst:0 msgid "Release" -msgstr "" +msgstr "發佈版本" #: ../../howto/functional.rst:6 msgid "0.32" -msgstr "" +msgstr "0.32" #: ../../howto/functional.rst:8 msgid "" @@ -1074,6 +1074,9 @@ msgstr "" #: ../../howto/functional.rst:1006 msgid "Here's a small but realistic example::" msgstr "" +"以下是個很小但實際的範例:\n" +"\n" +"::" #: ../../howto/functional.rst:1018 msgid "" diff --git a/howto/instrumentation.po b/howto/instrumentation.po index dc54becd74..7ddb8f5950 100644 --- a/howto/instrumentation.po +++ b/howto/instrumentation.po @@ -21,15 +21,15 @@ msgstr "" #: ../../howto/instrumentation.rst:0 msgid "author" -msgstr "" +msgstr "作者" #: ../../howto/instrumentation.rst:9 msgid "David Malcolm" -msgstr "" +msgstr "David Malcolm" #: ../../howto/instrumentation.rst:10 msgid "Łukasz Langa" -msgstr "" +msgstr "Łukasz Langa" #: ../../howto/instrumentation.rst:12 msgid "" @@ -83,6 +83,9 @@ msgstr "" #: ../../howto/instrumentation.rst:44 msgid "or::" msgstr "" +"或是:\n" +"\n" +"::" #: ../../howto/instrumentation.rst:49 msgid "" @@ -317,7 +320,7 @@ msgstr "" #: ../../howto/instrumentation.rst:392 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../howto/instrumentation.rst:393 msgid "" diff --git a/howto/ipaddress.po b/howto/ipaddress.po index 0a16e192d5..f1c85aa8a4 100644 --- a/howto/ipaddress.po +++ b/howto/ipaddress.po @@ -21,23 +21,23 @@ msgstr "" #: ../../howto/ipaddress.rst:9 msgid "An introduction to the ipaddress module" -msgstr "ipaddress模組介紹" +msgstr "ipaddress 模組介紹" #: ../../howto/ipaddress.rst:0 msgid "author" -msgstr "" +msgstr "作者" #: ../../howto/ipaddress.rst:11 msgid "Peter Moody" -msgstr "" +msgstr "Peter Moody" #: ../../howto/ipaddress.rst:12 msgid "Nick Coghlan" -msgstr "" +msgstr "Nick Coghlan" #: ../../howto/ipaddress.rst:None msgid "Overview" -msgstr "" +msgstr "總攬" #: ../../howto/ipaddress.rst:16 msgid "" diff --git a/howto/logging-cookbook.po b/howto/logging-cookbook.po index d5560397d2..750a9b4553 100644 --- a/howto/logging-cookbook.po +++ b/howto/logging-cookbook.po @@ -24,11 +24,11 @@ msgstr "" #: ../../howto/logging-cookbook.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../howto/logging-cookbook.rst:7 msgid "Vinay Sajip " -msgstr "原文作者 Vinay Sajip " +msgstr "Vinay Sajip " #: ../../howto/logging-cookbook.rst:9 msgid "" @@ -752,7 +752,7 @@ msgstr "" #: ../../howto/logging-cookbook.rst:1354 msgid "Module :mod:`logging`" -msgstr "" +msgstr ":mod:`logging` 模組" #: ../../howto/logging-cookbook.rst:1354 msgid "API reference for the logging module." @@ -760,7 +760,7 @@ msgstr "" #: ../../howto/logging-cookbook.rst:1357 msgid "Module :mod:`logging.config`" -msgstr "" +msgstr ":mod:`logging.config` 模組" #: ../../howto/logging-cookbook.rst:1357 msgid "Configuration API for the logging module." @@ -768,7 +768,7 @@ msgstr "" #: ../../howto/logging-cookbook.rst:1360 msgid "Module :mod:`logging.handlers`" -msgstr "" +msgstr ":mod:`logging.handlers` 模組" #: ../../howto/logging-cookbook.rst:1360 msgid "Useful handlers included with the logging module." diff --git a/howto/logging.po b/howto/logging.po index 61cd2355dd..f61b559413 100644 --- a/howto/logging.po +++ b/howto/logging.po @@ -25,11 +25,11 @@ msgstr "如何使用 Logging 模組" #: ../../howto/logging.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../howto/logging.rst:5 msgid "Vinay Sajip " -msgstr "原文作者 Vinay Sajip " +msgstr "Vinay Sajip " #: ../../howto/logging.rst:12 msgid "Basic Logging Tutorial" @@ -206,11 +206,14 @@ msgstr "" #: ../../howto/logging.rst:101 msgid "A simple example" -msgstr "" +msgstr "一個簡單範例" #: ../../howto/logging.rst:103 msgid "A very simple example is::" msgstr "" +"一個非常簡單的例子是:\n" +"\n" +"::" #: ../../howto/logging.rst:109 msgid "If you type these lines into a script and run it, you'll see:" @@ -1029,27 +1032,27 @@ msgstr "" #: ../../howto/logging.rst:856 msgid "50" -msgstr "" +msgstr "50" #: ../../howto/logging.rst:858 msgid "40" -msgstr "" +msgstr "40" #: ../../howto/logging.rst:860 msgid "30" -msgstr "" +msgstr "30" #: ../../howto/logging.rst:862 msgid "20" -msgstr "" +msgstr "20" #: ../../howto/logging.rst:864 msgid "10" -msgstr "" +msgstr "10" #: ../../howto/logging.rst:866 msgid "``NOTSET``" -msgstr "" +msgstr "``NOTSET``" #: ../../howto/logging.rst:866 msgid "0" @@ -1416,7 +1419,7 @@ msgstr "" #: ../../howto/logging.rst:1104 msgid "Module :mod:`logging`" -msgstr "" +msgstr ":mod:`logging` 模組" #: ../../howto/logging.rst:1104 msgid "API reference for the logging module." @@ -1424,7 +1427,7 @@ msgstr "" #: ../../howto/logging.rst:1107 msgid "Module :mod:`logging.config`" -msgstr "" +msgstr ":mod:`logging.config` 模組" #: ../../howto/logging.rst:1107 msgid "Configuration API for the logging module." @@ -1432,7 +1435,7 @@ msgstr "" #: ../../howto/logging.rst:1110 msgid "Module :mod:`logging.handlers`" -msgstr "" +msgstr ":mod:`logging.handlers` 模組" #: ../../howto/logging.rst:1110 msgid "Useful handlers included with the logging module." diff --git a/howto/pyporting.po b/howto/pyporting.po index c13378dcde..7c62b734c2 100644 --- a/howto/pyporting.po +++ b/howto/pyporting.po @@ -25,15 +25,15 @@ msgstr "Python 2 的程式碼移植到Python 3" #: ../../howto/pyporting.rst:0 msgid "author" -msgstr "" +msgstr "作者" #: ../../howto/pyporting.rst:7 msgid "Brett Cannon" -msgstr "" +msgstr "Brett Cannon" #: ../../howto/pyporting.rst:None msgid "Abstract" -msgstr "" +msgstr "摘要" #: ../../howto/pyporting.rst:11 msgid "" @@ -364,7 +364,7 @@ msgstr "" #: ../../howto/pyporting.rst:228 msgid "\\" -msgstr "" +msgstr "\\" #: ../../howto/pyporting.rst:228 msgid "decode" @@ -380,11 +380,11 @@ msgstr "" #: ../../howto/pyporting.rst:234 msgid "isdecimal" -msgstr "" +msgstr "isdecimal" #: ../../howto/pyporting.rst:236 msgid "isnumeric" -msgstr "" +msgstr "isnumeric" #: ../../howto/pyporting.rst:239 msgid "" diff --git a/howto/regex.po b/howto/regex.po index 54beee4b2c..b963e6a786 100644 --- a/howto/regex.po +++ b/howto/regex.po @@ -26,15 +26,15 @@ msgstr "如何使用正規表達式" #: ../../howto/regex.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../howto/regex.rst:7 msgid "A.M. Kuchling " -msgstr "" +msgstr "A.M. Kuchling " #: ../../howto/regex.rst:None msgid "Abstract" -msgstr "" +msgstr "摘要" #: ../../howto/regex.rst:18 msgid "" diff --git a/howto/sockets.po b/howto/sockets.po index 79326d2927..5eda28982f 100644 --- a/howto/sockets.po +++ b/howto/sockets.po @@ -24,15 +24,15 @@ msgstr "" #: ../../howto/sockets.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../howto/sockets.rst:7 msgid "Gordon McMillan" -msgstr "" +msgstr "Gordon McMillan" #: ../../howto/sockets.rst:None msgid "Abstract" -msgstr "" +msgstr "摘要" #: ../../howto/sockets.rst:12 msgid "" @@ -164,7 +164,7 @@ msgstr "" #: ../../howto/sockets.rst:121 msgid "IPC" -msgstr "" +msgstr "IPC" #: ../../howto/sockets.rst:123 msgid "" diff --git a/howto/sorting.po b/howto/sorting.po index b0f521f3ad..3de6702cb0 100644 --- a/howto/sorting.po +++ b/howto/sorting.po @@ -25,15 +25,15 @@ msgstr "如何排序" #: ../../howto/sorting.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../howto/sorting.rst:6 msgid "Andrew Dalke and Raymond Hettinger" -msgstr "" +msgstr "Andrew Dalke 和 Raymond Hettinger" #: ../../howto/sorting.rst:0 msgid "Release" -msgstr "" +msgstr "發佈版本" #: ../../howto/sorting.rst:7 msgid "0.1" @@ -54,7 +54,7 @@ msgstr "在此文件,我們使用Python進行各種方式排序資料" #: ../../howto/sorting.rst:18 msgid "Sorting Basics" -msgstr "排序 基本" +msgstr "基礎排序" #: ../../howto/sorting.rst:20 msgid "" diff --git a/howto/unicode.po b/howto/unicode.po index 681364cad7..82896cfc78 100644 --- a/howto/unicode.po +++ b/howto/unicode.po @@ -24,11 +24,11 @@ msgstr "" #: ../../howto/unicode.rst:0 msgid "Release" -msgstr "" +msgstr "發佈版本" #: ../../howto/unicode.rst:7 msgid "1.12" -msgstr "" +msgstr "1.12" #: ../../howto/unicode.rst:9 msgid "" @@ -43,7 +43,7 @@ msgstr "" #: ../../howto/unicode.rst:18 msgid "Definitions" -msgstr "" +msgstr "定義" #: ../../howto/unicode.rst:20 msgid "" @@ -855,7 +855,7 @@ msgstr "" #: ../../howto/unicode.rst:754 msgid "Acknowledgements" -msgstr "" +msgstr "致謝" #: ../../howto/unicode.rst:756 msgid "" diff --git a/howto/urllib2.po b/howto/urllib2.po index 544b45dabb..6b0862c716 100644 --- a/howto/urllib2.po +++ b/howto/urllib2.po @@ -25,12 +25,11 @@ msgstr "如何使用urllib套件取得網路資源" #: ../../howto/urllib2.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../howto/urllib2.rst:7 msgid "`Michael Foord `_" -msgstr "" -"原文作者 `Michael Foord `_" +msgstr "`Michael Foord `_" #: ../../howto/urllib2.rst:11 msgid "" @@ -252,7 +251,7 @@ msgstr "" #: ../../howto/urllib2.rst:214 msgid "URLError" -msgstr "" +msgstr "URLError" #: ../../howto/urllib2.rst:216 msgid "" @@ -268,7 +267,7 @@ msgstr "" #: ../../howto/urllib2.rst:232 msgid "HTTPError" -msgstr "" +msgstr "HTTPError" #: ../../howto/urllib2.rst:234 msgid "" diff --git a/install/index.po b/install/index.po index 82958f9dad..507d5228f4 100644 --- a/install/index.po +++ b/install/index.po @@ -25,11 +25,11 @@ msgstr "安裝 Python 模組(舊版)" #: ../../install/index.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../install/index.rst:9 msgid "Greg Ward" -msgstr "" +msgstr "Greg Ward" #: ../../install/index.rst:15 msgid "" @@ -274,7 +274,7 @@ msgstr "" #: ../../install/index.rst:216 msgid "Platform" -msgstr "" +msgstr "平台" #: ../../install/index.rst:216 msgid "Standard installation location" @@ -316,7 +316,7 @@ msgstr ":file:`{exec-prefix}/lib/python{X.Y}/site-packages`" #: ../../install/index.rst:222 msgid "Windows" -msgstr "" +msgstr "Windows" #: ../../install/index.rst:222 ../../install/index.rst:483 msgid ":file:`{prefix}\\\\Lib\\\\site-packages`" @@ -454,11 +454,11 @@ msgstr "" #: ../../install/index.rst:320 ../../install/index.rst:331 #: ../../install/index.rst:382 ../../install/index.rst:483 msgid "modules" -msgstr "" +msgstr "模組" #: ../../install/index.rst:320 msgid ":file:`{userbase}/lib/python{X.Y}/site-packages`" -msgstr "" +msgstr ":file:`{userbase}/lib/python{X.Y}/site-packages`" #: ../../install/index.rst:321 ../../install/index.rst:332 #: ../../install/index.rst:383 ../../install/index.rst:433 @@ -709,11 +709,11 @@ msgstr "" #: ../../install/index.rst:484 msgid ":file:`{prefix}\\\\Scripts`" -msgstr "" +msgstr ":file:`{prefix}\\\\Scripts`" #: ../../install/index.rst:486 msgid ":file:`{prefix}\\\\Include\\\\{distname}`" -msgstr "" +msgstr ":file:`{prefix}\\\\Include\\\\{distname}`" #: ../../install/index.rst:493 msgid "Custom Installation" @@ -1470,7 +1470,7 @@ msgstr "" #: ../../install/index.rst:1074 msgid "Check https://www.sourceware.org/cygwin/ for more information" -msgstr "" +msgstr "更多資訊請見 https://www.sourceware.org/cygwin/" #: ../../install/index.rst:1076 msgid "" diff --git a/library/2to3.po b/library/2to3.po index 845b85f032..fff41c4a02 100644 --- a/library/2to3.po +++ b/library/2to3.po @@ -616,7 +616,7 @@ msgstr "" #: ../../library/2to3.rst:463 msgid "**Source code:** :source:`Lib/lib2to3/`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/lib2to3/`" #: ../../library/2to3.rst:476 msgid "" diff --git a/library/__future__.po b/library/__future__.po index 0584ec9bd1..0da3d57e12 100644 --- a/library/__future__.po +++ b/library/__future__.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/__future__.rst:7 msgid "**Source code:** :source:`Lib/__future__.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/__future__.py`" #: ../../library/__future__.rst:11 msgid ":mod:`__future__` is a real module, and serves three purposes:" @@ -127,7 +127,7 @@ msgstr "" #: ../../library/__future__.rst:69 msgid "nested_scopes" -msgstr "" +msgstr "nested_scopes" #: ../../library/__future__.rst:69 msgid "2.1.0b1" @@ -176,7 +176,7 @@ msgstr "" #: ../../library/__future__.rst:78 msgid "absolute_import" -msgstr "" +msgstr "absolute_import" #: ../../library/__future__.rst:78 ../../library/__future__.rst:81 msgid "2.5.0a1" @@ -188,7 +188,7 @@ msgstr "" #: ../../library/__future__.rst:81 msgid "with_statement" -msgstr "" +msgstr "with_statement" #: ../../library/__future__.rst:81 msgid "2.6" @@ -200,7 +200,7 @@ msgstr "" #: ../../library/__future__.rst:84 msgid "print_function" -msgstr "" +msgstr "print_function" #: ../../library/__future__.rst:84 ../../library/__future__.rst:87 msgid "2.6.0a2" @@ -212,7 +212,7 @@ msgstr "" #: ../../library/__future__.rst:87 msgid "unicode_literals" -msgstr "" +msgstr "unicode_literals" #: ../../library/__future__.rst:87 msgid ":pep:`3112`: *Bytes literals in Python 3000*" @@ -220,7 +220,7 @@ msgstr "" #: ../../library/__future__.rst:90 msgid "generator_stop" -msgstr "" +msgstr "generator_stop" #: ../../library/__future__.rst:90 msgid "3.5.0b1" diff --git a/library/abc.po b/library/abc.po index 128c84dff6..7b405f3577 100644 --- a/library/abc.po +++ b/library/abc.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/abc.rst:11 msgid "**Source code:** :source:`Lib/abc.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/abc.py`" #: ../../library/abc.rst:15 msgid "" diff --git a/library/aifc.po b/library/aifc.po index eb3ae94094..826a341a2b 100644 --- a/library/aifc.po +++ b/library/aifc.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/aifc.rst:7 msgid "**Source code:** :source:`Lib/aifc.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/aifc.py`" #: ../../library/aifc.rst:16 msgid "" @@ -55,7 +55,7 @@ msgstr "" #: ../../library/aifc.rst:34 msgid "Module :mod:`aifc` defines the following function:" -msgstr "" +msgstr ":mod:`aifc` 模組定義了以下函式:" #: ../../library/aifc.rst:39 msgid "" diff --git a/library/argparse.po b/library/argparse.po index a039eb8096..9048892d7b 100644 --- a/library/argparse.po +++ b/library/argparse.po @@ -26,11 +26,11 @@ msgstr "" #: ../../library/argparse.rst:12 msgid "**Source code:** :source:`Lib/argparse.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/argparse.py`" #: ../../library/argparse.rst:None msgid "Tutorial" -msgstr "" +msgstr "教學" #: ../../library/argparse.rst:18 msgid "" @@ -50,7 +50,7 @@ msgstr "" #: ../../library/argparse.rst:30 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/argparse.rst:32 msgid "" @@ -139,7 +139,7 @@ msgstr "" #: ../../library/argparse.rst:138 msgid "ArgumentParser objects" -msgstr "" +msgstr "ArgumentParser 物件" #: ../../library/argparse.rst:147 msgid "" @@ -290,7 +290,7 @@ msgstr "" #: ../../library/argparse.rst:296 msgid "description" -msgstr "" +msgstr "描述" #: ../../library/argparse.rst:298 msgid "" @@ -356,7 +356,7 @@ msgstr "" #: ../../library/argparse.rst:376 msgid "formatter_class" -msgstr "" +msgstr "formatter_class" #: ../../library/argparse.rst:378 msgid "" @@ -403,7 +403,7 @@ msgstr "" #: ../../library/argparse.rst:482 msgid "prefix_chars" -msgstr "" +msgstr "prefix_chars" #: ../../library/argparse.rst:484 msgid "" @@ -422,7 +422,7 @@ msgstr "" #: ../../library/argparse.rst:502 msgid "fromfile_prefix_chars" -msgstr "" +msgstr "fromfile_prefix_chars" #: ../../library/argparse.rst:504 msgid "" @@ -452,7 +452,7 @@ msgstr "" #: ../../library/argparse.rst:529 msgid "argument_default" -msgstr "" +msgstr "argument_default" #: ../../library/argparse.rst:531 msgid "" @@ -468,7 +468,7 @@ msgstr "" #: ../../library/argparse.rst:551 msgid "allow_abbrev" -msgstr "" +msgstr "allow_abbrev" #: ../../library/argparse.rst:553 msgid "" @@ -483,7 +483,7 @@ msgstr "" #: ../../library/argparse.rst:570 msgid "conflict_handler" -msgstr "" +msgstr "conflict_handler" #: ../../library/argparse.rst:572 msgid "" @@ -511,7 +511,7 @@ msgstr "" #: ../../library/argparse.rst:607 msgid "add_help" -msgstr "" +msgstr "add_help" #: ../../library/argparse.rst:609 msgid "" @@ -543,7 +543,7 @@ msgstr "" #: ../../library/argparse.rst:657 msgid "exit_on_error" -msgstr "" +msgstr "exit_on_error" #: ../../library/argparse.rst:659 msgid "" @@ -1433,6 +1433,9 @@ msgstr "" #: ../../library/argparse.rst:1662 msgid "Some example usage::" msgstr "" +"一些使用範例:\n" +"\n" +"::" #: ../../library/argparse.rst:1683 msgid "" @@ -1491,7 +1494,7 @@ msgstr "" #: ../../library/argparse.rst:1816 msgid "FileType objects" -msgstr "" +msgstr "FileType 物件" #: ../../library/argparse.rst:1820 msgid "" diff --git a/library/ast.po b/library/ast.po index 352b6b6dbb..4f60c9f963 100644 --- a/library/ast.po +++ b/library/ast.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/ast.rst:14 msgid "**Source code:** :source:`Lib/ast.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/ast.py`" #: ../../library/ast.rst:18 msgid "" @@ -1042,7 +1042,7 @@ msgstr "" #: ../../library/ast.rst:1999 msgid ":class:`AsyncFunctionDef` is now supported." -msgstr "" +msgstr "目前已支援 :class:`AsyncFunctionDef`\\ 。" #: ../../library/ast.rst:2005 msgid "" diff --git a/library/asynchat.po b/library/asynchat.po index 1c99a3b61b..59f451340a 100644 --- a/library/asynchat.po +++ b/library/asynchat.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/asynchat.rst:10 msgid "**Source code:** :source:`Lib/asynchat.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/asynchat.py`" #: ../../library/asynchat.rst:12 msgid "Please use :mod:`asyncio` instead." diff --git a/library/asyncio-api-index.po b/library/asyncio-api-index.po index b284d791c2..a1624fa597 100644 --- a/library/asyncio-api-index.po +++ b/library/asyncio-api-index.po @@ -147,7 +147,7 @@ msgstr "" #: ../../library/asyncio-api-index.rst:191 #: ../../library/asyncio-api-index.rst:216 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/asyncio-api-index.rst:63 msgid "" @@ -363,7 +363,7 @@ msgstr "" #: ../../library/asyncio-api-index.rst:192 msgid ":ref:`Using asyncio.Event `." -msgstr "" +msgstr ":ref:`使用 asyncio.Event `。" #: ../../library/asyncio-api-index.rst:194 msgid "" @@ -373,7 +373,7 @@ msgstr "" #: ../../library/asyncio-api-index.rst:199 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/asyncio-api-index.rst:206 msgid ":exc:`asyncio.TimeoutError`" diff --git a/library/asyncio-dev.po b/library/asyncio-dev.po index 011c1e7c2c..760191d65d 100644 --- a/library/asyncio-dev.po +++ b/library/asyncio-dev.po @@ -221,6 +221,9 @@ msgstr "" #: ../../library/asyncio-dev.rst:171 ../../library/asyncio-dev.rst:216 msgid "Output::" msgstr "" +"輸出:\n" +"\n" +"::" #: ../../library/asyncio-dev.rst:176 ../../library/asyncio-dev.rst:232 msgid "Output in debug mode::" diff --git a/library/asyncio-eventloop.po b/library/asyncio-eventloop.po index 83908e4323..47b809f937 100644 --- a/library/asyncio-eventloop.po +++ b/library/asyncio-eventloop.po @@ -27,6 +27,8 @@ msgid "" "**Source code:** :source:`Lib/asyncio/events.py`, :source:`Lib/asyncio/" "base_events.py`" msgstr "" +"**原始碼:**\\ :source:`Lib/asyncio/events.py`\\ 、\\ " +":source:`Lib/asyncio/base_events.py`" #: ../../library/asyncio-eventloop.rst:14 msgid "Preface" @@ -115,7 +117,7 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:75 msgid "Contents" -msgstr "" +msgstr "目錄" #: ../../library/asyncio-eventloop.rst:76 msgid "This documentation page contains the following sections:" @@ -252,6 +254,9 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:1468 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/asyncio-eventloop.rst:183 msgid "" @@ -443,7 +448,7 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:345 msgid "Added the ``name`` parameter." -msgstr "" +msgstr "加入 ``name`` 參數。" #: ../../library/asyncio-eventloop.rst:350 msgid "Set a task factory that will be used by :meth:`loop.create_task`." @@ -611,7 +616,7 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:461 msgid "Added the *happy_eyeballs_delay* and *interleave* parameters." -msgstr "" +msgstr "加入 *happy_eyeballs_delay* 和 *interleave* 參數。" #: ../../library/asyncio-eventloop.rst:463 msgid "" @@ -626,13 +631,13 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:472 msgid "For more information: https://tools.ietf.org/html/rfc6555" -msgstr "" +msgstr "更多資訊請見:\\ https://tools.ietf.org/html/rfc6555" #: ../../library/asyncio-eventloop.rst:476 #: ../../library/asyncio-eventloop.rst:593 #: ../../library/asyncio-eventloop.rst:746 msgid "The *ssl_handshake_timeout* parameter." -msgstr "" +msgstr "*ssl_handshake_timeout* 參數。" #: ../../library/asyncio-eventloop.rst:480 #: ../../library/asyncio-eventloop.rst:676 @@ -797,7 +802,7 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:710 #: ../../library/asyncio-eventloop.rst:1066 msgid ":ref:`Availability `: Unix." -msgstr "" +msgstr ":ref:`適用 `:Unix。" #: ../../library/asyncio-eventloop.rst:597 msgid "The *path* parameter can now be a :term:`path-like object`." @@ -819,7 +824,7 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:616 msgid "Arguments:" -msgstr "" +msgstr "引數:" #: ../../library/asyncio-eventloop.rst:621 msgid "" @@ -959,7 +964,7 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:727 #: ../../library/asyncio-eventloop.rst:794 msgid "Parameters:" -msgstr "" +msgstr "參數:" #: ../../library/asyncio-eventloop.rst:732 msgid "" @@ -1215,7 +1220,7 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:939 msgid ":meth:`loop.create_server` and :func:`start_server`." -msgstr "" +msgstr ":meth:`loop.create_server` 和 :func:`start_server`\\ 。" #: ../../library/asyncio-eventloop.rst:944 msgid "" @@ -1572,7 +1577,7 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:1258 msgid ":class:`str`;" -msgstr "" +msgstr ":class:`str`\\ ;" #: ../../library/asyncio-eventloop.rst:1259 msgid "" @@ -1603,7 +1608,7 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:1275 msgid "Other parameters:" -msgstr "" +msgstr "其他參數:" #: ../../library/asyncio-eventloop.rst:1277 msgid "*stdin* can be any of these:" @@ -1900,7 +1905,7 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:1532 msgid ":ref:`Availability `: Unix, Windows." -msgstr "" +msgstr ":ref:`適用 `:Unix、Windows。" #: ../../library/asyncio-eventloop.rst:1537 msgid "An event loop for Windows that uses \"I/O Completion Ports\" (IOCP)." @@ -1908,7 +1913,7 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:1540 msgid ":ref:`Availability `: Windows." -msgstr "" +msgstr ":ref:`適用 `:Windows。" #: ../../library/asyncio-eventloop.rst:1543 msgid "" @@ -1929,7 +1934,7 @@ msgstr "" #: ../../library/asyncio-eventloop.rst:1557 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/asyncio-eventloop.rst:1559 msgid "" diff --git a/library/asyncio-exceptions.po b/library/asyncio-exceptions.po index 4934b06ccc..a127a9296b 100644 --- a/library/asyncio-exceptions.po +++ b/library/asyncio-exceptions.po @@ -20,11 +20,11 @@ msgstr "" #: ../../library/asyncio-exceptions.rst:8 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/asyncio-exceptions.rst:10 msgid "**Source code:** :source:`Lib/asyncio/exceptions.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/asyncio/exceptions.py`" #: ../../library/asyncio-exceptions.rst:16 msgid "The operation has exceeded the given deadline." diff --git a/library/asyncio-future.po b/library/asyncio-future.po index fa0539253b..3b11f72f40 100644 --- a/library/asyncio-future.po +++ b/library/asyncio-future.po @@ -24,9 +24,11 @@ msgstr "" #: ../../library/asyncio-future.rst:10 msgid "" -"**Source code:** :source:`Lib/asyncio/futures.py`, :source:`Lib/asyncio/" -"base_futures.py`" +"**Source code:** :source:`Lib/asyncio/futures.py`, " +"" msgstr "" +"**原始碼:**\\ :source:`Lib/asyncio/futures.py`\\ 、\\ " +":source:`Lib/asyncio/base_futures.py`" #: ../../library/asyncio-future.rst:15 msgid "" diff --git a/library/asyncio-llapi-index.po b/library/asyncio-llapi-index.po index 0d28e63ece..2cbf03c6bf 100644 --- a/library/asyncio-llapi-index.po +++ b/library/asyncio-llapi-index.po @@ -65,7 +65,7 @@ msgstr "" #: ../../library/asyncio-llapi-index.rst:32 #: ../../library/asyncio-llapi-index.rst:260 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/asyncio-llapi-index.rst:33 msgid ":ref:`Using asyncio.get_running_loop() `." diff --git a/library/asyncio-platforms.po b/library/asyncio-platforms.po index 8e2c1733d2..6143e2d16a 100644 --- a/library/asyncio-platforms.po +++ b/library/asyncio-platforms.po @@ -41,7 +41,7 @@ msgstr "" #: ../../library/asyncio-platforms.rst:24 msgid "Windows" -msgstr "" +msgstr "Windows" #: ../../library/asyncio-platforms.rst:26 msgid "" @@ -71,7 +71,7 @@ msgstr "" #: ../../library/asyncio-platforms.rst:45 msgid ":class:`SelectorEventLoop` has the following limitations:" -msgstr "" +msgstr ":class:`SelectorEventLoop` 有以下限制:" #: ../../library/asyncio-platforms.rst:47 msgid "" @@ -100,7 +100,7 @@ msgstr "" #: ../../library/asyncio-platforms.rst:60 msgid ":class:`ProactorEventLoop` has the following limitations:" -msgstr "" +msgstr ":class:`ProactorEventLoop` 有以下限制:" #: ../../library/asyncio-platforms.rst:62 msgid "" @@ -135,7 +135,7 @@ msgstr "" #: ../../library/asyncio-platforms.rst:87 msgid "macOS" -msgstr "" +msgstr "macOS" #: ../../library/asyncio-platforms.rst:89 msgid "Modern macOS versions are fully supported." @@ -143,7 +143,7 @@ msgstr "" #: ../../library/asyncio-platforms.rst:92 msgid "macOS <= 10.8" -msgstr "" +msgstr "macOS <= 10.8" #: ../../library/asyncio-platforms.rst:93 msgid "" diff --git a/library/asyncio-policy.po b/library/asyncio-policy.po index a6a258365b..188ce9c949 100644 --- a/library/asyncio-policy.po +++ b/library/asyncio-policy.po @@ -150,7 +150,7 @@ msgstr "" #: ../../library/asyncio-policy.rst:110 ../../library/asyncio-policy.rst:118 msgid ":ref:`Availability `: Windows." -msgstr "" +msgstr ":ref:`適用 `:Windows。" #: ../../library/asyncio-policy.rst:115 msgid "" diff --git a/library/asyncio-protocol.po b/library/asyncio-protocol.po index f5d1606b9d..e947ecc262 100644 --- a/library/asyncio-protocol.po +++ b/library/asyncio-protocol.po @@ -86,7 +86,7 @@ msgstr "" #: ../../library/asyncio-protocol.rst:51 msgid "Contents" -msgstr "" +msgstr "目錄" #: ../../library/asyncio-protocol.rst:52 msgid "This documentation page contains the following sections:" @@ -118,7 +118,7 @@ msgstr "" #: ../../library/asyncio-protocol.rst:72 msgid "**Source code:** :source:`Lib/asyncio/transports.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/asyncio/transports.py`" #: ../../library/asyncio-protocol.rst:76 msgid "" @@ -592,7 +592,7 @@ msgstr "" #: ../../library/asyncio-protocol.rst:438 msgid "**Source code:** :source:`Lib/asyncio/protocols.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/asyncio/protocols.py`" #: ../../library/asyncio-protocol.rst:442 msgid "" @@ -933,7 +933,7 @@ msgstr "" #: ../../library/asyncio-protocol.rst:712 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/asyncio-protocol.rst:717 msgid "TCP Echo Server" diff --git a/library/asyncio-queue.po b/library/asyncio-queue.po index 4a34483761..aa8936d3d6 100644 --- a/library/asyncio-queue.po +++ b/library/asyncio-queue.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/asyncio-queue.rst:9 msgid "**Source code:** :source:`Lib/asyncio/queues.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/asyncio/queues.py`" #: ../../library/asyncio-queue.rst:13 msgid "" @@ -185,7 +185,7 @@ msgstr "" #: ../../library/asyncio-queue.rst:138 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/asyncio-queue.rst:142 msgid "" @@ -201,7 +201,7 @@ msgstr "" #: ../../library/asyncio-queue.rst:153 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/asyncio-queue.rst:157 msgid "" diff --git a/library/asyncio-stream.po b/library/asyncio-stream.po index 69a323a7a7..8d8b198bd3 100644 --- a/library/asyncio-stream.po +++ b/library/asyncio-stream.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/asyncio-stream.rst:9 msgid "**Source code:** :source:`Lib/asyncio/streams.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/asyncio/streams.py`" #: ../../library/asyncio-stream.rst:13 msgid "" @@ -134,7 +134,7 @@ msgstr "" #: ../../library/asyncio-stream.rst:133 ../../library/asyncio-stream.rst:161 msgid ":ref:`Availability `: Unix." -msgstr "" +msgstr ":ref:`適用 `:Unix。" #: ../../library/asyncio-stream.rst:140 msgid "The *path* parameter can now be a :term:`path-like object`" @@ -333,7 +333,7 @@ msgstr "" #: ../../library/asyncio-stream.rst:338 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/asyncio-stream.rst:343 msgid "TCP echo client using streams" @@ -377,6 +377,9 @@ msgstr "" #: ../../library/asyncio-stream.rst:454 msgid "Usage::" msgstr "" +"用法:\n" +"\n" +"::" #: ../../library/asyncio-stream.rst:458 msgid "or with HTTPS::" diff --git a/library/asyncio-subprocess.po b/library/asyncio-subprocess.po index 6a8e5f54a5..afa0ca68f0 100644 --- a/library/asyncio-subprocess.po +++ b/library/asyncio-subprocess.po @@ -128,7 +128,7 @@ msgstr "" #: ../../library/asyncio-subprocess.rst:132 msgid "Constants" -msgstr "" +msgstr "常數" #: ../../library/asyncio-subprocess.rst:136 msgid "Can be passed to the *stdin*, *stdout* or *stderr* parameters." @@ -422,7 +422,7 @@ msgstr "" #: ../../library/asyncio-subprocess.rst:340 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/asyncio-subprocess.rst:342 msgid "" diff --git a/library/asyncio-sync.po b/library/asyncio-sync.po index 01d1eb27e9..2c503539fd 100644 --- a/library/asyncio-sync.po +++ b/library/asyncio-sync.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/asyncio-sync.rst:9 msgid "**Source code:** :source:`Lib/asyncio/locks.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/asyncio/locks.py`" #: ../../library/asyncio-sync.rst:13 msgid "" @@ -164,6 +164,9 @@ msgstr "" #: ../../library/asyncio-sync.rst:122 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/asyncio-sync.rst:147 msgid "Wait until the event is set." diff --git a/library/asyncio-task.po b/library/asyncio-task.po index 03c64783dc..acfaaac123 100644 --- a/library/asyncio-task.po +++ b/library/asyncio-task.po @@ -30,7 +30,7 @@ msgstr "" #: ../../library/asyncio-task.rst:19 ../../library/asyncio-task.rst:121 msgid "Coroutines" -msgstr "" +msgstr "協程" #: ../../library/asyncio-task.rst:21 msgid "" @@ -217,6 +217,9 @@ msgstr "" #: ../../library/asyncio-task.rst:521 ../../library/asyncio-task.rst:670 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/asyncio-task.rst:240 msgid "Updated to use :meth:`loop.shutdown_default_executor`." @@ -498,6 +501,9 @@ msgstr "" #: ../../library/asyncio-task.rst:566 msgid "Usage::" msgstr "" +"用法:\n" +"\n" +"::" #: ../../library/asyncio-task.rst:570 msgid "" @@ -520,7 +526,7 @@ msgstr "" #: ../../library/asyncio-task.rst:583 msgid "Constant" -msgstr "" +msgstr "常數" #: ../../library/asyncio-task.rst:583 msgid "Description" diff --git a/library/asyncore.po b/library/asyncore.po index a933383bdf..d384267a97 100644 --- a/library/asyncore.po +++ b/library/asyncore.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/asyncore.rst:13 msgid "**Source code:** :source:`Lib/asyncore.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/asyncore.py`" #: ../../library/asyncore.rst:15 msgid "Please use :mod:`asyncio` instead." @@ -333,7 +333,7 @@ msgstr "" #: ../../library/asyncore.rst:278 ../../library/asyncore.rst:287 msgid ":ref:`Availability `: Unix." -msgstr "" +msgstr ":ref:`適用 `:Unix。" #: ../../library/asyncore.rst:282 msgid "" diff --git a/library/atexit.po b/library/atexit.po index 3b886ee70f..78182368eb 100644 --- a/library/atexit.po +++ b/library/atexit.po @@ -88,7 +88,7 @@ msgstr "" #: ../../library/atexit.rst:62 msgid "Module :mod:`readline`" -msgstr "" +msgstr ":mod:`readline` 模組" #: ../../library/atexit.rst:62 msgid "" @@ -98,7 +98,7 @@ msgstr "" #: ../../library/atexit.rst:69 msgid ":mod:`atexit` Example" -msgstr "" +msgstr ":mod:`atexit` 範例" #: ../../library/atexit.rst:71 msgid "" diff --git a/library/base64.po b/library/base64.po index 68812060df..91e12cfbbe 100644 --- a/library/base64.po +++ b/library/base64.po @@ -25,7 +25,7 @@ msgstr ":mod:`base64` —— Base16、Base32、Base64、Base85 資料編碼" #: ../../library/base64.rst:8 msgid "**Source code:** :source:`Lib/base64.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/base64.py`" #: ../../library/base64.rst:16 msgid "" @@ -352,7 +352,7 @@ msgstr "" #: ../../library/base64.rst:301 msgid "Module :mod:`binascii`" -msgstr "" +msgstr ":mod:`binascii` 模組" #: ../../library/base64.rst:301 msgid "" diff --git a/library/bdb.po b/library/bdb.po index a10a945194..437d502a5c 100644 --- a/library/bdb.po +++ b/library/bdb.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/bdb.rst:7 msgid "**Source code:** :source:`Lib/bdb.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/bdb.py`" #: ../../library/bdb.rst:11 msgid "" diff --git a/library/binascii.po b/library/binascii.po index 957361e96d..8d0b8ded31 100644 --- a/library/binascii.po +++ b/library/binascii.po @@ -211,7 +211,7 @@ msgstr "" #: ../../library/binascii.rst:211 msgid "Module :mod:`base64`" -msgstr "" +msgstr ":mod:`base64` 模組" #: ../../library/binascii.rst:210 msgid "" @@ -220,7 +220,7 @@ msgstr "" #: ../../library/binascii.rst:214 msgid "Module :mod:`binhex`" -msgstr "" +msgstr ":mod:`binhex` 模組" #: ../../library/binascii.rst:214 msgid "Support for the binhex format used on the Macintosh." @@ -228,7 +228,7 @@ msgstr "" #: ../../library/binascii.rst:217 msgid "Module :mod:`uu`" -msgstr "" +msgstr ":mod:`uu` 模組" #: ../../library/binascii.rst:217 msgid "Support for UU encoding used on Unix." @@ -236,7 +236,7 @@ msgstr "" #: ../../library/binascii.rst:219 msgid "Module :mod:`quopri`" -msgstr "" +msgstr ":mod:`quopri` 模組" #: ../../library/binascii.rst:220 msgid "Support for quoted-printable encoding used in MIME email messages." diff --git a/library/binhex.po b/library/binhex.po index a0fc094033..ff38ac9006 100644 --- a/library/binhex.po +++ b/library/binhex.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/binhex.rst:7 msgid "**Source code:** :source:`Lib/binhex.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/binhex.py`" #: ../../library/binhex.rst:13 msgid "" @@ -64,7 +64,7 @@ msgstr "" #: ../../library/binhex.rst:45 msgid "Module :mod:`binascii`" -msgstr "" +msgstr ":mod:`binascii` 模組" #: ../../library/binhex.rst:46 msgid "" diff --git a/library/bisect.po b/library/bisect.po index 62d5f65683..db4178136a 100644 --- a/library/bisect.po +++ b/library/bisect.po @@ -25,7 +25,7 @@ msgstr ":mod:`bisect` --- 陣列二分演算法 (Array bisection algorithm)" #: ../../library/bisect.rst:10 msgid "**Source code:** :source:`Lib/bisect.py`" -msgstr "**原始碼:** :source:`Lib/bisect.py`" +msgstr "**原始碼:**\\ :source:`Lib/bisect.py`" #: ../../library/bisect.rst:14 msgid "" @@ -195,7 +195,7 @@ msgstr "" #: ../../library/bisect.rst:181 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/bisect.rst:185 msgid "" diff --git a/library/builtins.po b/library/builtins.po index dd087f4989..c32b272969 100644 --- a/library/builtins.po +++ b/library/builtins.po @@ -20,7 +20,7 @@ msgstr "" #: ../../library/builtins.rst:2 msgid ":mod:`builtins` --- Built-in objects" -msgstr "" +msgstr ":mod:`builtins` --- 內建物件" #: ../../library/builtins.rst:9 msgid "" diff --git a/library/bz2.po b/library/bz2.po index d662b3a9a3..6d51083304 100644 --- a/library/bz2.po +++ b/library/bz2.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/bz2.rst:12 msgid "**Source code:** :source:`Lib/bz2.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/bz2.py`" #: ../../library/bz2.rst:16 msgid "" @@ -358,7 +358,7 @@ msgstr "" #: ../../library/bz2.rst:265 msgid "Examples of usage" -msgstr "" +msgstr "用法範例" #: ../../library/bz2.rst:267 msgid "Below are some examples of typical usage of the :mod:`bz2` module." diff --git a/library/calendar.po b/library/calendar.po index 9966d5b624..1efcb23c77 100644 --- a/library/calendar.po +++ b/library/calendar.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/calendar.rst:10 msgid "**Source code:** :source:`Lib/calendar.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/calendar.py`" #: ../../library/calendar.rst:14 msgid "" @@ -280,6 +280,9 @@ msgstr "" #: ../../library/calendar.rst:268 msgid "Here is an example how :class:`!HTMLCalendar` can be customized::" msgstr "" +"以下是客製化 :class:`!HTMLCalendar` 的範例:\n" +"\n" +"::" #: ../../library/calendar.rst:280 msgid "" @@ -421,7 +424,7 @@ msgstr "" #: ../../library/calendar.rst:417 msgid "Module :mod:`datetime`" -msgstr "" +msgstr ":mod:`datetime` 模組" #: ../../library/calendar.rst:416 msgid "" @@ -431,7 +434,7 @@ msgstr "" #: ../../library/calendar.rst:419 msgid "Module :mod:`time`" -msgstr "" +msgstr ":mod:`time` 模組" #: ../../library/calendar.rst:420 msgid "Low-level time related functions." diff --git a/library/cgi.po b/library/cgi.po index a3ab0a8cdd..87393772eb 100644 --- a/library/cgi.po +++ b/library/cgi.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/cgi.rst:7 msgid "**Source code:** :source:`Lib/cgi.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/cgi.py`" #: ../../library/cgi.rst:19 msgid "Support module for Common Gateway Interface (CGI) scripts." @@ -317,7 +317,7 @@ msgstr "" #: ../../library/cgi.rst:274 msgid "Functions" -msgstr "" +msgstr "函式" #: ../../library/cgi.rst:276 msgid "" diff --git a/library/cgitb.po b/library/cgitb.po index ed4a0adf03..a50e2f6e70 100644 --- a/library/cgitb.po +++ b/library/cgitb.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/cgitb.rst:10 msgid "**Source code:** :source:`Lib/cgitb.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/cgitb.py`" #: ../../library/cgitb.rst:20 msgid "" diff --git a/library/chunk.po b/library/chunk.po index e7b41dac36..1d27b65e79 100644 --- a/library/chunk.po +++ b/library/chunk.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/chunk.rst:10 msgid "**Source code:** :source:`Lib/chunk.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/chunk.py`" #: ../../library/chunk.rst:21 msgid "" @@ -44,11 +44,11 @@ msgstr "" #: ../../library/chunk.rst:29 msgid "Length" -msgstr "" +msgstr "長度" #: ../../library/chunk.rst:29 msgid "Contents" -msgstr "" +msgstr "內容" #: ../../library/chunk.rst:31 msgid "0" @@ -72,7 +72,7 @@ msgstr "8" #: ../../library/chunk.rst:37 msgid "*n*" -msgstr "" +msgstr "*n*" #: ../../library/chunk.rst:37 msgid "Data bytes, where *n* is the size given in the preceding field" @@ -80,11 +80,11 @@ msgstr "" #: ../../library/chunk.rst:41 msgid "8 + *n*" -msgstr "" +msgstr "8 + *n*" #: ../../library/chunk.rst:41 msgid "0 or 1" -msgstr "" +msgstr "0 或 1" #: ../../library/chunk.rst:41 msgid "Pad byte needed if *n* is odd and chunk alignment is used" diff --git a/library/cmath.po b/library/cmath.po index 4157813472..2e06dbbe04 100644 --- a/library/cmath.po +++ b/library/cmath.po @@ -271,7 +271,7 @@ msgstr "" #: ../../library/cmath.rst:244 msgid "Constants" -msgstr "" +msgstr "常數" #: ../../library/cmath.rst:248 msgid "The mathematical constant *π*, as a float." diff --git a/library/cmd.po b/library/cmd.po index 326bafbe53..7b0f7e5666 100644 --- a/library/cmd.po +++ b/library/cmd.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/cmd.rst:9 msgid "**Source code:** :source:`Lib/cmd.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/cmd.py`" #: ../../library/cmd.rst:13 msgid "" @@ -68,7 +68,7 @@ msgstr "" #: ../../library/cmd.rst:42 msgid "Cmd Objects" -msgstr "" +msgstr "Cmd 物件" #: ../../library/cmd.rst:44 msgid "A :class:`Cmd` instance has the following methods:" diff --git a/library/code.po b/library/code.po index a28be9025e..95025e683f 100644 --- a/library/code.po +++ b/library/code.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/code.rst:7 msgid "**Source code:** :source:`Lib/code.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/code.py`" #: ../../library/code.rst:11 msgid "" diff --git a/library/codecs.po b/library/codecs.po index 3ba3c83d2c..62ecca9854 100644 --- a/library/codecs.po +++ b/library/codecs.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/codecs.rst:11 msgid "**Source code:** :source:`Lib/codecs.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/codecs.py`" #: ../../library/codecs.rst:23 msgid "" @@ -673,7 +673,7 @@ msgstr "" #: ../../library/codecs.rst:533 msgid "IncrementalEncoder Objects" -msgstr "" +msgstr "IncrementalEncoder 物件" #: ../../library/codecs.rst:535 msgid "" @@ -739,7 +739,7 @@ msgstr "" #: ../../library/codecs.rst:590 msgid "IncrementalDecoder Objects" -msgstr "" +msgstr "IncrementalDecoder 物件" #: ../../library/codecs.rst:592 msgid "" @@ -823,7 +823,7 @@ msgstr "" #: ../../library/codecs.rst:664 msgid "StreamWriter Objects" -msgstr "" +msgstr "StreamWriter 物件" #: ../../library/codecs.rst:666 msgid "" @@ -894,7 +894,7 @@ msgstr "" #: ../../library/codecs.rst:718 msgid "StreamReader Objects" -msgstr "" +msgstr "StreamReader 物件" #: ../../library/codecs.rst:720 msgid "" @@ -1022,7 +1022,7 @@ msgstr "" #: ../../library/codecs.rst:811 msgid "StreamReaderWriter Objects" -msgstr "" +msgstr "StreamReaderWriter 物件" #: ../../library/codecs.rst:813 msgid "" @@ -1054,7 +1054,7 @@ msgstr "" #: ../../library/codecs.rst:835 msgid "StreamRecoder Objects" -msgstr "" +msgstr "StreamRecoder 物件" #: ../../library/codecs.rst:837 msgid "" @@ -1189,35 +1189,35 @@ msgstr "" #: ../../library/codecs.rst:937 msgid "``U-00000000`` ... ``U-0000007F``" -msgstr "" +msgstr "``U-00000000`` ... ``U-0000007F``" #: ../../library/codecs.rst:937 msgid "0xxxxxxx" -msgstr "" +msgstr "0xxxxxxx" #: ../../library/codecs.rst:939 msgid "``U-00000080`` ... ``U-000007FF``" -msgstr "" +msgstr "``U-00000080`` ... ``U-000007FF``" #: ../../library/codecs.rst:939 msgid "110xxxxx 10xxxxxx" -msgstr "" +msgstr "110xxxxx 10xxxxxx" #: ../../library/codecs.rst:941 msgid "``U-00000800`` ... ``U-0000FFFF``" -msgstr "" +msgstr "``U-00000800`` ... ``U-0000FFFF``" #: ../../library/codecs.rst:941 msgid "1110xxxx 10xxxxxx 10xxxxxx" -msgstr "" +msgstr "1110xxxx 10xxxxxx 10xxxxxx" #: ../../library/codecs.rst:943 msgid "``U-00010000`` ... ``U-0010FFFF``" -msgstr "" +msgstr "``U-00010000`` ... ``U-0010FFFF``" #: ../../library/codecs.rst:943 msgid "11110xxx 10xxxxxx 10xxxxxx 10xxxxxx" -msgstr "" +msgstr "11110xxx 10xxxxxx 10xxxxxx 10xxxxxx" #: ../../library/codecs.rst:946 msgid "" @@ -1338,91 +1338,91 @@ msgstr "" #: ../../library/codecs.rst:1021 msgid "Languages" -msgstr "" +msgstr "語言" #: ../../library/codecs.rst:1023 msgid "ascii" -msgstr "" +msgstr "ascii" #: ../../library/codecs.rst:1023 msgid "646, us-ascii" -msgstr "" +msgstr "646, us-ascii" #: ../../library/codecs.rst:1023 ../../library/codecs.rst:1029 #: ../../library/codecs.rst:1037 msgid "English" -msgstr "" +msgstr "英文" #: ../../library/codecs.rst:1025 msgid "big5" -msgstr "" +msgstr "big5" #: ../../library/codecs.rst:1025 msgid "big5-tw, csbig5" -msgstr "" +msgstr "big5-tw, csbig5" #: ../../library/codecs.rst:1025 ../../library/codecs.rst:1027 #: ../../library/codecs.rst:1085 msgid "Traditional Chinese" -msgstr "" +msgstr "繁體中文" #: ../../library/codecs.rst:1027 msgid "big5hkscs" -msgstr "" +msgstr "big5hkscs" #: ../../library/codecs.rst:1027 msgid "big5-hkscs, hkscs" -msgstr "" +msgstr "big5-hkscs, hkscs" #: ../../library/codecs.rst:1029 msgid "cp037" -msgstr "" +msgstr "cp037" #: ../../library/codecs.rst:1029 msgid "IBM037, IBM039" -msgstr "" +msgstr "IBM037, IBM039" #: ../../library/codecs.rst:1031 msgid "cp273" -msgstr "" +msgstr "cp273" #: ../../library/codecs.rst:1031 msgid "273, IBM273, csIBM273" -msgstr "" +msgstr "273, IBM273, csIBM273" #: ../../library/codecs.rst:1031 msgid "German" -msgstr "" +msgstr "德文" #: ../../library/codecs.rst:1035 msgid "cp424" -msgstr "" +msgstr "cp424" #: ../../library/codecs.rst:1035 msgid "EBCDIC-CP-HE, IBM424" -msgstr "" +msgstr "EBCDIC-CP-HE, IBM424" #: ../../library/codecs.rst:1035 ../../library/codecs.rst:1055 #: ../../library/codecs.rst:1065 ../../library/codecs.rst:1108 #: ../../library/codecs.rst:1171 msgid "Hebrew" -msgstr "" +msgstr "希伯來文" #: ../../library/codecs.rst:1037 msgid "cp437" -msgstr "" +msgstr "cp437" #: ../../library/codecs.rst:1037 msgid "437, IBM437" -msgstr "" +msgstr "437, IBM437" #: ../../library/codecs.rst:1039 msgid "cp500" -msgstr "" +msgstr "cp500" #: ../../library/codecs.rst:1039 msgid "EBCDIC-CP-BE, EBCDIC-CP-CH, IBM500" -msgstr "" +msgstr "EBCDIC-CP-BE, EBCDIC-CP-CH, IBM500" #: ../../library/codecs.rst:1039 ../../library/codecs.rst:1048 #: ../../library/codecs.rst:1059 ../../library/codecs.rst:1095 @@ -1433,30 +1433,30 @@ msgstr "" #: ../../library/codecs.rst:1042 msgid "cp720" -msgstr "" +msgstr "cp720" #: ../../library/codecs.rst:1042 ../../library/codecs.rst:1069 #: ../../library/codecs.rst:1110 ../../library/codecs.rst:1167 msgid "Arabic" -msgstr "" +msgstr "阿拉伯文" #: ../../library/codecs.rst:1044 msgid "cp737" -msgstr "" +msgstr "cp737" #: ../../library/codecs.rst:1044 ../../library/codecs.rst:1075 #: ../../library/codecs.rst:1079 ../../library/codecs.rst:1104 #: ../../library/codecs.rst:1169 ../../library/codecs.rst:1204 msgid "Greek" -msgstr "" +msgstr "希臘文" #: ../../library/codecs.rst:1046 msgid "cp775" -msgstr "" +msgstr "cp775" #: ../../library/codecs.rst:1046 msgid "IBM775" -msgstr "" +msgstr "IBM775" #: ../../library/codecs.rst:1046 ../../library/codecs.rst:1112 #: ../../library/codecs.rst:1162 ../../library/codecs.rst:1179 @@ -1465,19 +1465,19 @@ msgstr "" #: ../../library/codecs.rst:1048 msgid "cp850" -msgstr "" +msgstr "cp850" #: ../../library/codecs.rst:1048 msgid "850, IBM850" -msgstr "" +msgstr "850, IBM850" #: ../../library/codecs.rst:1050 msgid "cp852" -msgstr "" +msgstr "cp852" #: ../../library/codecs.rst:1050 msgid "852, IBM852" -msgstr "" +msgstr "852, IBM852" #: ../../library/codecs.rst:1050 ../../library/codecs.rst:1097 #: ../../library/codecs.rst:1158 ../../library/codecs.rst:1208 @@ -1486,11 +1486,11 @@ msgstr "" #: ../../library/codecs.rst:1052 msgid "cp855" -msgstr "" +msgstr "cp855" #: ../../library/codecs.rst:1052 msgid "855, IBM855" -msgstr "" +msgstr "855, IBM855" #: ../../library/codecs.rst:1052 ../../library/codecs.rst:1099 #: ../../library/codecs.rst:1164 ../../library/codecs.rst:1201 @@ -1499,37 +1499,37 @@ msgstr "" #: ../../library/codecs.rst:1055 msgid "cp856" -msgstr "" +msgstr "cp856" #: ../../library/codecs.rst:1057 msgid "cp857" -msgstr "" +msgstr "cp857" #: ../../library/codecs.rst:1057 msgid "857, IBM857" -msgstr "" +msgstr "857, IBM857" #: ../../library/codecs.rst:1057 ../../library/codecs.rst:1089 #: ../../library/codecs.rst:1106 ../../library/codecs.rst:1173 #: ../../library/codecs.rst:1213 msgid "Turkish" -msgstr "" +msgstr "土耳其文" #: ../../library/codecs.rst:1059 msgid "cp858" -msgstr "" +msgstr "cp858" #: ../../library/codecs.rst:1059 msgid "858, IBM858" -msgstr "" +msgstr "858, IBM858" #: ../../library/codecs.rst:1061 msgid "cp860" -msgstr "" +msgstr "cp860" #: ../../library/codecs.rst:1061 msgid "860, IBM860" -msgstr "" +msgstr "860, IBM860" #: ../../library/codecs.rst:1061 msgid "Portuguese" @@ -1537,11 +1537,11 @@ msgstr "" #: ../../library/codecs.rst:1063 msgid "cp861" -msgstr "" +msgstr "cp861" #: ../../library/codecs.rst:1063 msgid "861, CP-IS, IBM861" -msgstr "" +msgstr "861, CP-IS, IBM861" #: ../../library/codecs.rst:1063 ../../library/codecs.rst:1206 msgid "Icelandic" @@ -1549,19 +1549,19 @@ msgstr "" #: ../../library/codecs.rst:1065 msgid "cp862" -msgstr "" +msgstr "cp862" #: ../../library/codecs.rst:1065 msgid "862, IBM862" -msgstr "" +msgstr "862, IBM862" #: ../../library/codecs.rst:1067 msgid "cp863" -msgstr "" +msgstr "cp863" #: ../../library/codecs.rst:1067 msgid "863, IBM863" -msgstr "" +msgstr "863, IBM863" #: ../../library/codecs.rst:1067 msgid "Canadian" @@ -1569,19 +1569,19 @@ msgstr "" #: ../../library/codecs.rst:1069 msgid "cp864" -msgstr "" +msgstr "cp864" #: ../../library/codecs.rst:1069 msgid "IBM864" -msgstr "" +msgstr "IBM864" #: ../../library/codecs.rst:1071 msgid "cp865" -msgstr "" +msgstr "cp865" #: ../../library/codecs.rst:1071 msgid "865, IBM865" -msgstr "" +msgstr "865, IBM865" #: ../../library/codecs.rst:1071 msgid "Danish, Norwegian" @@ -1589,43 +1589,43 @@ msgstr "" #: ../../library/codecs.rst:1073 msgid "cp866" -msgstr "" +msgstr "cp866" #: ../../library/codecs.rst:1073 msgid "866, IBM866" -msgstr "" +msgstr "866, IBM866" #: ../../library/codecs.rst:1073 ../../library/codecs.rst:1189 msgid "Russian" -msgstr "" +msgstr "俄羅斯文" #: ../../library/codecs.rst:1075 msgid "cp869" -msgstr "" +msgstr "cp869" #: ../../library/codecs.rst:1075 msgid "869, CP-GR, IBM869" -msgstr "" +msgstr "869, CP-GR, IBM869" #: ../../library/codecs.rst:1077 msgid "cp874" -msgstr "" +msgstr "cp874" #: ../../library/codecs.rst:1077 msgid "Thai" -msgstr "" +msgstr "泰文" #: ../../library/codecs.rst:1079 msgid "cp875" -msgstr "" +msgstr "cp875" #: ../../library/codecs.rst:1081 msgid "cp932" -msgstr "" +msgstr "cp932" #: ../../library/codecs.rst:1081 msgid "932, ms932, mskanji, ms-kanji" -msgstr "" +msgstr "932, ms932, mskanji, ms-kanji" #: ../../library/codecs.rst:1081 ../../library/codecs.rst:1116 #: ../../library/codecs.rst:1118 ../../library/codecs.rst:1120 @@ -1634,32 +1634,32 @@ msgstr "" #: ../../library/codecs.rst:1150 ../../library/codecs.rst:1218 #: ../../library/codecs.rst:1221 ../../library/codecs.rst:1224 msgid "Japanese" -msgstr "" +msgstr "日文" #: ../../library/codecs.rst:1083 msgid "cp949" -msgstr "" +msgstr "cp949" #: ../../library/codecs.rst:1083 msgid "949, ms949, uhc" -msgstr "" +msgstr "949, ms949, uhc" #: ../../library/codecs.rst:1083 ../../library/codecs.rst:1122 #: ../../library/codecs.rst:1152 ../../library/codecs.rst:1187 msgid "Korean" -msgstr "" +msgstr "韓文" #: ../../library/codecs.rst:1085 msgid "cp950" -msgstr "" +msgstr "cp950" #: ../../library/codecs.rst:1085 msgid "950, ms950" -msgstr "" +msgstr "950, ms950" #: ../../library/codecs.rst:1087 msgid "cp1006" -msgstr "" +msgstr "cp1006" #: ../../library/codecs.rst:1087 msgid "Urdu" @@ -1667,161 +1667,163 @@ msgstr "" #: ../../library/codecs.rst:1089 msgid "cp1026" -msgstr "" +msgstr "cp1026" #: ../../library/codecs.rst:1089 msgid "ibm1026" -msgstr "" +msgstr "ibm1026" #: ../../library/codecs.rst:1091 msgid "cp1125" -msgstr "" +msgstr "cp1125" #: ../../library/codecs.rst:1091 msgid "1125, ibm1125, cp866u, ruscii" -msgstr "" +msgstr "1125, ibm1125, cp866u, ruscii" #: ../../library/codecs.rst:1091 ../../library/codecs.rst:1195 msgid "Ukrainian" -msgstr "" +msgstr "烏克蘭文" #: ../../library/codecs.rst:1095 msgid "cp1140" -msgstr "" +msgstr "cp1140" #: ../../library/codecs.rst:1095 msgid "ibm1140" -msgstr "" +msgstr "ibm1140" #: ../../library/codecs.rst:1097 msgid "cp1250" -msgstr "" +msgstr "cp1250" #: ../../library/codecs.rst:1097 msgid "windows-1250" -msgstr "" +msgstr "windows-1250" #: ../../library/codecs.rst:1099 msgid "cp1251" -msgstr "" +msgstr "cp1251" #: ../../library/codecs.rst:1099 msgid "windows-1251" -msgstr "" +msgstr "windows-1251" #: ../../library/codecs.rst:1102 msgid "cp1252" -msgstr "" +msgstr "cp1252" #: ../../library/codecs.rst:1102 msgid "windows-1252" -msgstr "" +msgstr "windows-1252" #: ../../library/codecs.rst:1104 msgid "cp1253" -msgstr "" +msgstr "cp1253" #: ../../library/codecs.rst:1104 msgid "windows-1253" -msgstr "" +msgstr "windows-1253" #: ../../library/codecs.rst:1106 msgid "cp1254" -msgstr "" +msgstr "cp1254" #: ../../library/codecs.rst:1106 msgid "windows-1254" -msgstr "" +msgstr "windows-1254" #: ../../library/codecs.rst:1108 msgid "cp1255" -msgstr "" +msgstr "cp1255" #: ../../library/codecs.rst:1108 msgid "windows-1255" -msgstr "" +msgstr "windows-1255" #: ../../library/codecs.rst:1110 msgid "cp1256" -msgstr "" +msgstr "cp1256" #: ../../library/codecs.rst:1110 msgid "windows-1256" -msgstr "" +msgstr "windows-1256" #: ../../library/codecs.rst:1112 msgid "cp1257" -msgstr "" +msgstr "cp1257" #: ../../library/codecs.rst:1112 msgid "windows-1257" -msgstr "" +msgstr "windows-1257" #: ../../library/codecs.rst:1114 msgid "cp1258" -msgstr "" +msgstr "cp1258" #: ../../library/codecs.rst:1114 msgid "windows-1258" -msgstr "" +msgstr "windows-1258" #: ../../library/codecs.rst:1114 msgid "Vietnamese" -msgstr "" +msgstr "越南文" #: ../../library/codecs.rst:1116 msgid "euc_jp" -msgstr "" +msgstr "euc_jp" #: ../../library/codecs.rst:1116 msgid "eucjp, ujis, u-jis" -msgstr "" +msgstr "eucjp, ujis, u-jis" #: ../../library/codecs.rst:1118 msgid "euc_jis_2004" -msgstr "" +msgstr "euc_jis_2004" #: ../../library/codecs.rst:1118 msgid "jisx0213, eucjis2004" -msgstr "" +msgstr "jisx0213, eucjis2004" #: ../../library/codecs.rst:1120 msgid "euc_jisx0213" -msgstr "" +msgstr "euc_jisx0213" #: ../../library/codecs.rst:1120 msgid "eucjisx0213" -msgstr "" +msgstr "eucjisx0213" #: ../../library/codecs.rst:1122 msgid "euc_kr" -msgstr "" +msgstr "euc_kr" #: ../../library/codecs.rst:1122 msgid "euckr, korean, ksc5601, ks_c-5601, ks_c-5601-1987, ksx1001, ks_x-1001" -msgstr "" +msgstr "euckr, korean, ksc5601, ks_c-5601, ks_c-5601-1987, ksx1001, ks_x-1001" #: ../../library/codecs.rst:1126 msgid "gb2312" -msgstr "" +msgstr "gb2312" #: ../../library/codecs.rst:1126 msgid "" "chinese, csiso58gb231280, euc-cn, euccn, eucgb2312-cn, gb2312-1980, " "gb2312-80, iso-ir-58" msgstr "" +"chinese, csiso58gb231280, euc-cn, euccn, eucgb2312-cn, gb2312-1980, " +"gb2312-80, iso-ir-58" #: ../../library/codecs.rst:1126 ../../library/codecs.rst:1135 msgid "Simplified Chinese" -msgstr "" +msgstr "簡體中文" #: ../../library/codecs.rst:1131 msgid "gbk" -msgstr "" +msgstr "gbk" #: ../../library/codecs.rst:1131 msgid "936, cp936, ms936" -msgstr "" +msgstr "936, cp936, ms936" #: ../../library/codecs.rst:1131 ../../library/codecs.rst:1133 msgid "Unified Chinese" @@ -1829,11 +1831,11 @@ msgstr "" #: ../../library/codecs.rst:1133 msgid "gb18030" -msgstr "" +msgstr "gb18030" #: ../../library/codecs.rst:1133 msgid "gb18030-2000" -msgstr "" +msgstr "gb18030-2000" #: ../../library/codecs.rst:1135 msgid "hz" @@ -1841,31 +1843,31 @@ msgstr "" #: ../../library/codecs.rst:1135 msgid "hzgb, hz-gb, hz-gb-2312" -msgstr "" +msgstr "hzgb, hz-gb, hz-gb-2312" #: ../../library/codecs.rst:1137 msgid "iso2022_jp" -msgstr "" +msgstr "iso2022_jp" #: ../../library/codecs.rst:1137 msgid "csiso2022jp, iso2022jp, iso-2022-jp" -msgstr "" +msgstr "csiso2022jp, iso2022jp, iso-2022-jp" #: ../../library/codecs.rst:1140 msgid "iso2022_jp_1" -msgstr "" +msgstr "iso2022_jp_1" #: ../../library/codecs.rst:1140 msgid "iso2022jp-1, iso-2022-jp-1" -msgstr "" +msgstr "iso2022jp-1, iso-2022-jp-1" #: ../../library/codecs.rst:1142 msgid "iso2022_jp_2" -msgstr "" +msgstr "iso2022_jp_2" #: ../../library/codecs.rst:1142 msgid "iso2022jp-2, iso-2022-jp-2" -msgstr "" +msgstr "iso2022jp-2, iso-2022-jp-2" #: ../../library/codecs.rst:1142 msgid "Japanese, Korean, Simplified Chinese, Western Europe, Greek" @@ -1873,59 +1875,59 @@ msgstr "" #: ../../library/codecs.rst:1145 msgid "iso2022_jp_2004" -msgstr "" +msgstr "iso2022_jp_2004" #: ../../library/codecs.rst:1145 msgid "iso2022jp-2004, iso-2022-jp-2004" -msgstr "" +msgstr "iso2022jp-2004, iso-2022-jp-2004" #: ../../library/codecs.rst:1148 msgid "iso2022_jp_3" -msgstr "" +msgstr "iso2022_jp_3" #: ../../library/codecs.rst:1148 msgid "iso2022jp-3, iso-2022-jp-3" -msgstr "" +msgstr "iso2022jp-3, iso-2022-jp-3" #: ../../library/codecs.rst:1150 msgid "iso2022_jp_ext" -msgstr "" +msgstr "iso2022_jp_ext" #: ../../library/codecs.rst:1150 msgid "iso2022jp-ext, iso-2022-jp-ext" -msgstr "" +msgstr "iso2022jp-ext, iso-2022-jp-ext" #: ../../library/codecs.rst:1152 msgid "iso2022_kr" -msgstr "" +msgstr "iso2022_kr" #: ../../library/codecs.rst:1152 msgid "csiso2022kr, iso2022kr, iso-2022-kr" -msgstr "" +msgstr "csiso2022kr, iso2022kr, iso-2022-kr" #: ../../library/codecs.rst:1155 msgid "latin_1" -msgstr "" +msgstr "latin_1" #: ../../library/codecs.rst:1155 msgid "iso-8859-1, iso8859-1, 8859, cp819, latin, latin1, L1" -msgstr "" +msgstr "iso-8859-1, iso8859-1, 8859, cp819, latin, latin1, L1" #: ../../library/codecs.rst:1158 msgid "iso8859_2" -msgstr "" +msgstr "iso8859_2" #: ../../library/codecs.rst:1158 msgid "iso-8859-2, latin2, L2" -msgstr "" +msgstr "iso-8859-2, latin2, L2" #: ../../library/codecs.rst:1160 msgid "iso8859_3" -msgstr "" +msgstr "iso8859_3" #: ../../library/codecs.rst:1160 msgid "iso-8859-3, latin3, L3" -msgstr "" +msgstr "iso-8859-3, latin3, L3" #: ../../library/codecs.rst:1160 msgid "Esperanto, Maltese" @@ -1933,59 +1935,59 @@ msgstr "" #: ../../library/codecs.rst:1162 msgid "iso8859_4" -msgstr "" +msgstr "iso8859_4" #: ../../library/codecs.rst:1162 msgid "iso-8859-4, latin4, L4" -msgstr "" +msgstr "iso-8859-4, latin4, L4" #: ../../library/codecs.rst:1164 msgid "iso8859_5" -msgstr "" +msgstr "iso8859_5" #: ../../library/codecs.rst:1164 msgid "iso-8859-5, cyrillic" -msgstr "" +msgstr "iso-8859-5, cyrillic" #: ../../library/codecs.rst:1167 msgid "iso8859_6" -msgstr "" +msgstr "iso8859_6" #: ../../library/codecs.rst:1167 msgid "iso-8859-6, arabic" -msgstr "" +msgstr "iso-8859-6, arabic" #: ../../library/codecs.rst:1169 msgid "iso8859_7" -msgstr "" +msgstr "iso8859_7" #: ../../library/codecs.rst:1169 msgid "iso-8859-7, greek, greek8" -msgstr "" +msgstr "iso-8859-7, greek, greek8" #: ../../library/codecs.rst:1171 msgid "iso8859_8" -msgstr "" +msgstr "iso8859_8" #: ../../library/codecs.rst:1171 msgid "iso-8859-8, hebrew" -msgstr "" +msgstr "iso-8859-8, hebrew" #: ../../library/codecs.rst:1173 msgid "iso8859_9" -msgstr "" +msgstr "iso8859_9" #: ../../library/codecs.rst:1173 msgid "iso-8859-9, latin5, L5" -msgstr "" +msgstr "iso-8859-9, latin5, L5" #: ../../library/codecs.rst:1175 msgid "iso8859_10" -msgstr "" +msgstr "iso8859_10" #: ../../library/codecs.rst:1175 msgid "iso-8859-10, latin6, L6" -msgstr "" +msgstr "iso-8859-10, latin6, L6" #: ../../library/codecs.rst:1175 msgid "Nordic languages" @@ -1993,11 +1995,11 @@ msgstr "" #: ../../library/codecs.rst:1177 msgid "iso8859_11" -msgstr "" +msgstr "iso8859_11" #: ../../library/codecs.rst:1177 msgid "iso-8859-11, thai" -msgstr "" +msgstr "iso-8859-11, thai" #: ../../library/codecs.rst:1177 msgid "Thai languages" @@ -2005,19 +2007,19 @@ msgstr "" #: ../../library/codecs.rst:1179 msgid "iso8859_13" -msgstr "" +msgstr "iso8859_13" #: ../../library/codecs.rst:1179 msgid "iso-8859-13, latin7, L7" -msgstr "" +msgstr "iso-8859-13, latin7, L7" #: ../../library/codecs.rst:1181 msgid "iso8859_14" -msgstr "" +msgstr "iso8859_14" #: ../../library/codecs.rst:1181 msgid "iso-8859-14, latin8, L8" -msgstr "" +msgstr "iso-8859-14, latin8, L8" #: ../../library/codecs.rst:1181 msgid "Celtic languages" @@ -2025,19 +2027,19 @@ msgstr "" #: ../../library/codecs.rst:1183 msgid "iso8859_15" -msgstr "" +msgstr "iso8859_15" #: ../../library/codecs.rst:1183 msgid "iso-8859-15, latin9, L9" -msgstr "" +msgstr "iso-8859-15, latin9, L9" #: ../../library/codecs.rst:1185 msgid "iso8859_16" -msgstr "" +msgstr "iso8859_16" #: ../../library/codecs.rst:1185 msgid "iso-8859-16, latin10, L10" -msgstr "" +msgstr "iso-8859-16, latin10, L10" #: ../../library/codecs.rst:1185 msgid "South-Eastern Europe" @@ -2049,15 +2051,15 @@ msgstr "" #: ../../library/codecs.rst:1187 msgid "cp1361, ms1361" -msgstr "" +msgstr "cp1361, ms1361" #: ../../library/codecs.rst:1189 msgid "koi8_r" -msgstr "" +msgstr "koi8_r" #: ../../library/codecs.rst:1191 msgid "koi8_t" -msgstr "" +msgstr "koi8_t" #: ../../library/codecs.rst:1191 msgid "Tajik" @@ -2065,15 +2067,15 @@ msgstr "" #: ../../library/codecs.rst:1195 msgid "koi8_u" -msgstr "" +msgstr "koi8_u" #: ../../library/codecs.rst:1197 msgid "kz1048" -msgstr "" +msgstr "kz1048" #: ../../library/codecs.rst:1197 msgid "kz_1048, strk1048_2002, rk1048" -msgstr "" +msgstr "kz_1048, strk1048_2002, rk1048" #: ../../library/codecs.rst:1197 ../../library/codecs.rst:1215 msgid "Kazakh" @@ -2081,7 +2083,7 @@ msgstr "" #: ../../library/codecs.rst:1201 msgid "mac_cyrillic" -msgstr "" +msgstr "mac_cyrillic" #: ../../library/codecs.rst:1201 msgid "maccyrillic" @@ -2089,7 +2091,7 @@ msgstr "" #: ../../library/codecs.rst:1204 msgid "mac_greek" -msgstr "" +msgstr "mac_greek" #: ../../library/codecs.rst:1204 msgid "macgreek" @@ -2097,7 +2099,7 @@ msgstr "" #: ../../library/codecs.rst:1206 msgid "mac_iceland" -msgstr "" +msgstr "mac_iceland" #: ../../library/codecs.rst:1206 msgid "maciceland" @@ -2105,23 +2107,23 @@ msgstr "" #: ../../library/codecs.rst:1208 msgid "mac_latin2" -msgstr "" +msgstr "mac_latin2" #: ../../library/codecs.rst:1208 msgid "maclatin2, maccentraleurope, mac_centeuro" -msgstr "" +msgstr "maclatin2, maccentraleurope, mac_centeuro" #: ../../library/codecs.rst:1211 msgid "mac_roman" -msgstr "" +msgstr "mac_roman" #: ../../library/codecs.rst:1211 msgid "macroman, macintosh" -msgstr "" +msgstr "macroman, macintosh" #: ../../library/codecs.rst:1213 msgid "mac_turkish" -msgstr "" +msgstr "mac_turkish" #: ../../library/codecs.rst:1213 msgid "macturkish" @@ -2129,43 +2131,43 @@ msgstr "" #: ../../library/codecs.rst:1215 msgid "ptcp154" -msgstr "" +msgstr "ptcp154" #: ../../library/codecs.rst:1215 msgid "csptcp154, pt154, cp154, cyrillic-asian" -msgstr "" +msgstr "csptcp154, pt154, cp154, cyrillic-asian" #: ../../library/codecs.rst:1218 msgid "shift_jis" -msgstr "" +msgstr "shift_jis" #: ../../library/codecs.rst:1218 msgid "csshiftjis, shiftjis, sjis, s_jis" -msgstr "" +msgstr "csshiftjis, shiftjis, sjis, s_jis" #: ../../library/codecs.rst:1221 msgid "shift_jis_2004" -msgstr "" +msgstr "shift_jis_2004" #: ../../library/codecs.rst:1221 msgid "shiftjis2004, sjis_2004, sjis2004" -msgstr "" +msgstr "shiftjis2004, sjis_2004, sjis2004" #: ../../library/codecs.rst:1224 msgid "shift_jisx0213" -msgstr "" +msgstr "shift_jisx0213" #: ../../library/codecs.rst:1224 msgid "shiftjisx0213, sjisx0213, s_jisx0213" -msgstr "" +msgstr "shiftjisx0213, sjisx0213, s_jisx0213" #: ../../library/codecs.rst:1227 msgid "utf_32" -msgstr "" +msgstr "utf_32" #: ../../library/codecs.rst:1227 msgid "U32, utf32" -msgstr "" +msgstr "U32, utf32" #: ../../library/codecs.rst:1227 ../../library/codecs.rst:1229 #: ../../library/codecs.rst:1231 ../../library/codecs.rst:1233 @@ -2177,63 +2179,63 @@ msgstr "" #: ../../library/codecs.rst:1229 msgid "utf_32_be" -msgstr "" +msgstr "utf_32_be" #: ../../library/codecs.rst:1229 msgid "UTF-32BE" -msgstr "" +msgstr "UTF-32BE" #: ../../library/codecs.rst:1231 msgid "utf_32_le" -msgstr "" +msgstr "utf_32_le" #: ../../library/codecs.rst:1231 msgid "UTF-32LE" -msgstr "" +msgstr "UTF-32LE" #: ../../library/codecs.rst:1233 msgid "utf_16" -msgstr "" +msgstr "utf_16" #: ../../library/codecs.rst:1233 msgid "U16, utf16" -msgstr "" +msgstr "U16, utf16" #: ../../library/codecs.rst:1235 msgid "utf_16_be" -msgstr "" +msgstr "utf_16_be" #: ../../library/codecs.rst:1235 msgid "UTF-16BE" -msgstr "" +msgstr "UTF-16BE" #: ../../library/codecs.rst:1237 msgid "utf_16_le" -msgstr "" +msgstr "utf_16_le" #: ../../library/codecs.rst:1237 msgid "UTF-16LE" -msgstr "" +msgstr "UTF-16LE" #: ../../library/codecs.rst:1239 msgid "utf_7" -msgstr "" +msgstr "utf_7" #: ../../library/codecs.rst:1239 msgid "U7, unicode-1-1-utf-7" -msgstr "" +msgstr "U7, unicode-1-1-utf-7" #: ../../library/codecs.rst:1241 msgid "utf_8" -msgstr "" +msgstr "utf_8" #: ../../library/codecs.rst:1241 msgid "U8, UTF, utf8, cp65001" -msgstr "" +msgstr "U8, UTF, utf8, cp65001" #: ../../library/codecs.rst:1243 msgid "utf_8_sig" -msgstr "" +msgstr "utf_8_sig" #: ../../library/codecs.rst:1246 msgid "" @@ -2273,7 +2275,7 @@ msgstr "" #: ../../library/codecs.rst:1278 msgid "idna" -msgstr "" +msgstr "idna" #: ../../library/codecs.rst:1278 msgid "" @@ -2283,11 +2285,11 @@ msgstr "" #: ../../library/codecs.rst:1284 msgid "mbcs" -msgstr "" +msgstr "mbcs" #: ../../library/codecs.rst:1284 msgid "ansi, dbcs" -msgstr "" +msgstr "ansi, dbcs" #: ../../library/codecs.rst:1284 msgid "" @@ -2296,7 +2298,7 @@ msgstr "" #: ../../library/codecs.rst:1288 msgid "oem" -msgstr "" +msgstr "oem" #: ../../library/codecs.rst:1288 msgid "" @@ -2321,7 +2323,7 @@ msgstr "" #: ../../library/codecs.rst:1300 msgid "raw_unicode_escape" -msgstr "" +msgstr "raw_unicode_escape" #: ../../library/codecs.rst:1300 msgid "" @@ -2342,7 +2344,7 @@ msgstr "" #: ../../library/codecs.rst:1314 msgid "unicode_escape" -msgstr "" +msgstr "unicode_escape" #: ../../library/codecs.rst:1314 msgid "" @@ -2372,11 +2374,11 @@ msgstr "" #: ../../library/codecs.rst:1345 msgid "base64_codec [#b64]_" -msgstr "" +msgstr "base64_codec [#b64]_" #: ../../library/codecs.rst:1345 msgid "base64, base_64" -msgstr "" +msgstr "base64, base_64" #: ../../library/codecs.rst:1345 msgid "" @@ -2391,15 +2393,15 @@ msgstr "" #: ../../library/codecs.rst:1345 msgid ":meth:`base64.encodebytes` / :meth:`base64.decodebytes`" -msgstr "" +msgstr ":meth:`base64.encodebytes` / :meth:`base64.decodebytes`" #: ../../library/codecs.rst:1356 msgid "bz2_codec" -msgstr "" +msgstr "bz2_codec" #: ../../library/codecs.rst:1356 msgid "bz2" -msgstr "" +msgstr "bz2" #: ../../library/codecs.rst:1356 msgid "Compress the operand using bz2." @@ -2407,15 +2409,15 @@ msgstr "" #: ../../library/codecs.rst:1356 msgid ":meth:`bz2.compress` / :meth:`bz2.decompress`" -msgstr "" +msgstr ":meth:`bz2.compress` / :meth:`bz2.decompress`" #: ../../library/codecs.rst:1359 msgid "hex_codec" -msgstr "" +msgstr "hex_codec" #: ../../library/codecs.rst:1359 msgid "hex" -msgstr "" +msgstr "hex" #: ../../library/codecs.rst:1359 msgid "" @@ -2424,15 +2426,15 @@ msgstr "" #: ../../library/codecs.rst:1359 msgid ":meth:`binascii.b2a_hex` / :meth:`binascii.a2b_hex`" -msgstr "" +msgstr ":meth:`binascii.b2a_hex` / :meth:`binascii.a2b_hex`" #: ../../library/codecs.rst:1364 msgid "quopri_codec" -msgstr "" +msgstr "quopri_codec" #: ../../library/codecs.rst:1364 msgid "quopri, quotedprintable, quoted_printable" -msgstr "" +msgstr "quopri, quotedprintable, quoted_printable" #: ../../library/codecs.rst:1364 msgid "Convert the operand to MIME quoted printable." @@ -2440,15 +2442,15 @@ msgstr "" #: ../../library/codecs.rst:1364 msgid ":meth:`quopri.encode` with ``quotetabs=True`` / :meth:`quopri.decode`" -msgstr "" +msgstr ":meth:`quopri.encode` with ``quotetabs=True`` / :meth:`quopri.decode`" #: ../../library/codecs.rst:1368 msgid "uu_codec" -msgstr "" +msgstr "uu_codec" #: ../../library/codecs.rst:1368 msgid "uu" -msgstr "" +msgstr "uu" #: ../../library/codecs.rst:1368 msgid "Convert the operand using uuencode." @@ -2456,15 +2458,15 @@ msgstr "" #: ../../library/codecs.rst:1368 msgid ":meth:`uu.encode` / :meth:`uu.decode`" -msgstr "" +msgstr ":meth:`uu.encode` / :meth:`uu.decode`" #: ../../library/codecs.rst:1371 msgid "zlib_codec" -msgstr "" +msgstr "zlib_codec" #: ../../library/codecs.rst:1371 msgid "zip, zlib" -msgstr "" +msgstr "zip, zlib" #: ../../library/codecs.rst:1371 msgid "Compress the operand using gzip." @@ -2472,7 +2474,7 @@ msgstr "" #: ../../library/codecs.rst:1371 msgid ":meth:`zlib.compress` / :meth:`zlib.decompress`" -msgstr "" +msgstr ":meth:`zlib.compress` / :meth:`zlib.decompress`" #: ../../library/codecs.rst:1375 msgid "" @@ -2502,7 +2504,7 @@ msgstr "" #: ../../library/codecs.rst:1400 msgid "rot_13" -msgstr "" +msgstr "rot_13" #: ../../library/codecs.rst:1400 msgid "rot13" @@ -2611,7 +2613,7 @@ msgstr "" #: ../../library/codecs.rst:1487 msgid ":ref:`Availability `: Windows only." -msgstr "" +msgstr ":ref:`適用 `:只有 Windows。" #: ../../library/codecs.rst:1488 msgid "Support any error handler." diff --git a/library/codeop.po b/library/codeop.po index bd94fbfc9c..a28bfc44c0 100644 --- a/library/codeop.po +++ b/library/codeop.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/codeop.rst:10 msgid "**Source code:** :source:`Lib/codeop.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/codeop.py`" #: ../../library/codeop.rst:14 msgid "" diff --git a/library/collections.abc.po b/library/collections.abc.po index 1b7dfb99c2..a214b20ff2 100644 --- a/library/collections.abc.po +++ b/library/collections.abc.po @@ -28,7 +28,7 @@ msgstr "" #: ../../library/collections.abc.rst:13 msgid "**Source code:** :source:`Lib/_collections_abc.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/_collections_abc.py`" #: ../../library/collections.abc.rst:23 msgid "" @@ -104,7 +104,7 @@ msgstr "" #: ../../library/collections.abc.rst:121 msgid "ABC" -msgstr "" +msgstr "ABC" #: ../../library/collections.abc.rst:121 msgid "Inherits from" @@ -172,11 +172,11 @@ msgstr ":class:`Iterator`" #: ../../library/collections.abc.rst:128 ../../library/collections.abc.rst:176 msgid "``send``, ``throw``" -msgstr "``send``, ``throw``" +msgstr "``send``\\ 、\\ ``throw``" #: ../../library/collections.abc.rst:128 msgid "``close``, ``__iter__``, ``__next__``" -msgstr "``close``, ``__iter__``, ``__next__``" +msgstr "``close``\\ 、\\ ``__iter__``\\ 、\\ ``__next__``" #: ../../library/collections.abc.rst:129 msgid ":class:`Sized` [1]_" @@ -200,11 +200,11 @@ msgstr ":class:`Collection` [1]_" #: ../../library/collections.abc.rst:131 msgid ":class:`Sized`, :class:`Iterable`, :class:`Container`" -msgstr ":class:`Sized`, :class:`Iterable`, :class:`Container`" +msgstr ":class:`Sized`\\ 、\\ :class:`Iterable`\\ 、\\ :class:`Container`" #: ../../library/collections.abc.rst:131 ../../library/collections.abc.rst:147 msgid "``__contains__``, ``__iter__``, ``__len__``" -msgstr "``__contains__``, ``__iter__``, ``__len__``" +msgstr "``__contains__``\\ 、\\ ``__iter__``\\ 、\\ ``__len__``" #: ../../library/collections.abc.rst:135 ../../library/collections.abc.rst:138 #: ../../library/collections.abc.rst:144 @@ -217,12 +217,14 @@ msgstr ":class:`Reversible`, :class:`Collection`" #: ../../library/collections.abc.rst:135 ../../library/collections.abc.rst:144 msgid "``__getitem__``, ``__len__``" -msgstr "``__getitem__``, ``__len__``" +msgstr "``__getitem__``\\ 、\\ ``__len__``" #: ../../library/collections.abc.rst:135 msgid "" "``__contains__``, ``__iter__``, ``__reversed__``, ``index``, and ``count``" msgstr "" +"``__contains__``\\ 、\\ ``__iter__``\\ 、\\ ``__reversed__``\\ 、\\ " +"``index`` 和 ``count``" #: ../../library/collections.abc.rst:138 msgid ":class:`MutableSequence`" @@ -232,6 +234,8 @@ msgstr ":class:`MutableSequence`" msgid "" "``__getitem__``, ``__setitem__``, ``__delitem__``, ``__len__``, ``insert``" msgstr "" +"``__getitem__``\\ 、\\ ``__setitem__``\\ 、\\ ``__delitem__``\\ 、\\ " +"``__len__``\\ 、\\ ``insert``" #: ../../library/collections.abc.rst:138 msgid "" @@ -260,6 +264,9 @@ msgid "" "``__le__``, ``__lt__``, ``__eq__``, ``__ne__``, ``__gt__``, ``__ge__``, " "``__and__``, ``__or__``, ``__sub__``, ``__xor__``, and ``isdisjoint``" msgstr "" +"``__le__``\\ 、\\ ``__lt__``\\ 、\\ ``__eq__``\\ 、\\ ``__ne__``\\ 、\\ " +"``__gt__``\\ 、\\ ``__ge__``\\ 、\\ ``__and__``\\ 、\\ ``__or__``\\ 、\\ " +"``__sub__``\\ 、\\ ``__xor__`` 與 ``isdisjoint``" #: ../../library/collections.abc.rst:151 msgid ":class:`MutableSet`" @@ -267,7 +274,7 @@ msgstr ":class:`MutableSet`" #: ../../library/collections.abc.rst:151 msgid "``__contains__``, ``__iter__``, ``__len__``, ``add``, ``discard``" -msgstr "" +msgstr "``__contains__``\\ 、\\ ``__iter__``\\ 、\\ ``__len__``\\ 、\\ ``add``\\ 、\\ ``discard``" #: ../../library/collections.abc.rst:151 msgid "" @@ -281,13 +288,15 @@ msgstr ":class:`Mapping`" #: ../../library/collections.abc.rst:157 msgid "``__getitem__``, ``__iter__``, ``__len__``" -msgstr "" +msgstr "``__getitem__``\\ 、\\ ``__iter__``\\ 、\\ ``__len__``" #: ../../library/collections.abc.rst:157 msgid "" "``__contains__``, ``keys``, ``items``, ``values``, ``get``, ``__eq__``, and " "``__ne__``" msgstr "" +"``__contains__``\\ 、\\ ``keys``\\ 、\\ ``items``\\ 、\\ ``values``\\ 、\\ " +"``get``\\ 、\\ ``__eq__`` 和 ``__ne__``" #: ../../library/collections.abc.rst:161 msgid ":class:`MutableMapping`" @@ -297,6 +306,8 @@ msgstr ":class:`MutableMapping`" msgid "" "``__getitem__``, ``__setitem__``, ``__delitem__``, ``__iter__``, ``__len__``" msgstr "" +"``__getitem__``\\ 、\\ ``__setitem__``\\ 、\\ ``__delitem__``\\ 、\\ " +"``__iter__``\\ 、\\ ``__len__``" #: ../../library/collections.abc.rst:161 msgid "" @@ -318,12 +329,12 @@ msgstr ":class:`ItemsView`" #: ../../library/collections.abc.rst:169 ../../library/collections.abc.rst:171 msgid ":class:`MappingView`, :class:`Set`" -msgstr ":class:`MappingView`, :class:`Set`" +msgstr ":class:`MappingView`\\ 、\\ :class:`Set`" #: ../../library/collections.abc.rst:169 ../../library/collections.abc.rst:171 #: ../../library/collections.abc.rst:173 msgid "``__contains__``, ``__iter__``" -msgstr "``__contains__``, ``__iter__``" +msgstr "``__contains__``\\ 、\\ ``__iter__``" #: ../../library/collections.abc.rst:171 msgid ":class:`KeysView`" @@ -335,7 +346,7 @@ msgstr ":class:`ValuesView`" #: ../../library/collections.abc.rst:173 msgid ":class:`MappingView`, :class:`Collection`" -msgstr ":class:`MappingView`, :class:`Collection`" +msgstr ":class:`MappingView`\\ 、\\ :class:`Collection`" #: ../../library/collections.abc.rst:175 msgid ":class:`Awaitable` [1]_" @@ -387,15 +398,15 @@ msgstr ":class:`AsyncIterator`" #: ../../library/collections.abc.rst:179 msgid "``asend``, ``athrow``" -msgstr "``asend``, ``athrow``" +msgstr "``asend``\\ 、\\ ``athrow``" #: ../../library/collections.abc.rst:179 msgid "``aclose``, ``__aiter__``, ``__anext__``" -msgstr "``aclose``, ``__aiter__``, ``__anext__``" +msgstr "``aclose``\\ 、\\ ``__aiter__``\\ 、\\ ``__anext__``" #: ../../library/collections.abc.rst:184 msgid "Footnotes" -msgstr "" +msgstr "註解" #: ../../library/collections.abc.rst:185 msgid "" diff --git a/library/colorsys.po b/library/colorsys.po index c47adcbb20..0be20f5a53 100644 --- a/library/colorsys.po +++ b/library/colorsys.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/colorsys.rst:9 msgid "**Source code:** :source:`Lib/colorsys.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/colorsys.py`" #: ../../library/colorsys.rst:13 msgid "" @@ -46,32 +46,35 @@ msgstr "" #: ../../library/colorsys.rst:27 msgid "The :mod:`colorsys` module defines the following functions:" -msgstr "" +msgstr ":mod:`colorsys` 模組定義了以下函式:" #: ../../library/colorsys.rst:32 msgid "Convert the color from RGB coordinates to YIQ coordinates." -msgstr "" +msgstr "將顏色自 RGB 座標轉換至 YIQ 座標。" #: ../../library/colorsys.rst:37 msgid "Convert the color from YIQ coordinates to RGB coordinates." -msgstr "" +msgstr "將顏色自 YIQ 座標轉換至 RGB 座標。" #: ../../library/colorsys.rst:42 msgid "Convert the color from RGB coordinates to HLS coordinates." -msgstr "" +msgstr "將顏色自 RGB 座標轉換至 HLS 座標。" #: ../../library/colorsys.rst:47 msgid "Convert the color from HLS coordinates to RGB coordinates." -msgstr "" +msgstr "將顏色自 HLS 座標轉換至 RGB 座標。" #: ../../library/colorsys.rst:52 msgid "Convert the color from RGB coordinates to HSV coordinates." -msgstr "" +msgstr "將顏色自 RGB 座標轉換至 HSV 座標。" #: ../../library/colorsys.rst:57 msgid "Convert the color from HSV coordinates to RGB coordinates." -msgstr "" +msgstr "將顏色自 HSV 座標轉換至 RGB 座標。" #: ../../library/colorsys.rst:59 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" diff --git a/library/compileall.po b/library/compileall.po index c834f75fce..d432f26092 100644 --- a/library/compileall.po +++ b/library/compileall.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/compileall.rst:7 msgid "**Source code:** :source:`Lib/compileall.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/compileall.py`" #: ../../library/compileall.rst:11 msgid "" @@ -378,7 +378,7 @@ msgstr "" #: ../../library/compileall.rst:337 msgid "Module :mod:`py_compile`" -msgstr "" +msgstr ":mod:`py_compile` 模組" #: ../../library/compileall.rst:338 msgid "Byte-compile a single source file." diff --git a/library/concurrent.futures.po b/library/concurrent.futures.po index 40e9d0d2d8..f86274485e 100644 --- a/library/concurrent.futures.po +++ b/library/concurrent.futures.po @@ -148,7 +148,7 @@ msgstr "" #: ../../library/concurrent.futures.rst:111 msgid "ThreadPoolExecutor" -msgstr "" +msgstr "ThreadPoolExecutor" #: ../../library/concurrent.futures.rst:113 msgid "" @@ -165,6 +165,9 @@ msgstr "" #: ../../library/concurrent.futures.rst:135 msgid "And::" msgstr "" +"和:\n" +"\n" +"::" #: ../../library/concurrent.futures.rst:149 msgid "" @@ -218,11 +221,11 @@ msgstr "" #: ../../library/concurrent.futures.rst:187 msgid "ThreadPoolExecutor Example" -msgstr "" +msgstr "ThreadPoolExecutor 範例" #: ../../library/concurrent.futures.rst:219 msgid "ProcessPoolExecutor" -msgstr "" +msgstr "ProcessPoolExecutor" #: ../../library/concurrent.futures.rst:221 msgid "" @@ -286,7 +289,7 @@ msgstr "" #: ../../library/concurrent.futures.rst:271 msgid "ProcessPoolExecutor Example" -msgstr "" +msgstr "ProcessPoolExecutor 範例" #: ../../library/concurrent.futures.rst:309 msgid "Future Objects" @@ -445,7 +448,7 @@ msgstr "" #: ../../library/concurrent.futures.rst:433 msgid "Module Functions" -msgstr "" +msgstr "模組函式" #: ../../library/concurrent.futures.rst:437 msgid "" @@ -472,7 +475,7 @@ msgstr "" #: ../../library/concurrent.futures.rst:454 msgid "Constant" -msgstr "" +msgstr "常數" #: ../../library/concurrent.futures.rst:454 msgid "Description" @@ -480,7 +483,7 @@ msgstr "描述" #: ../../library/concurrent.futures.rst:456 msgid ":const:`FIRST_COMPLETED`" -msgstr "" +msgstr ":const:`FIRST_COMPLETED`" #: ../../library/concurrent.futures.rst:456 msgid "The function will return when any future finishes or is cancelled." @@ -488,7 +491,7 @@ msgstr "" #: ../../library/concurrent.futures.rst:459 msgid ":const:`FIRST_EXCEPTION`" -msgstr "" +msgstr ":const:`FIRST_EXCEPTION`" #: ../../library/concurrent.futures.rst:459 msgid "" @@ -499,7 +502,7 @@ msgstr "" #: ../../library/concurrent.futures.rst:465 msgid ":const:`ALL_COMPLETED`" -msgstr "" +msgstr ":const:`ALL_COMPLETED`" #: ../../library/concurrent.futures.rst:465 msgid "The function will return when all futures finish or are cancelled." diff --git a/library/configparser.po b/library/configparser.po index 4f5a0d6d0b..3943a0147e 100644 --- a/library/configparser.po +++ b/library/configparser.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/configparser.rst:14 msgid "**Source code:** :source:`Lib/configparser.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/configparser.py`" #: ../../library/configparser.rst:24 msgid "" @@ -42,7 +42,7 @@ msgstr "" #: ../../library/configparser.rst:38 msgid "Module :mod:`shlex`" -msgstr "" +msgstr ":mod:`shlex` 模組" #: ../../library/configparser.rst:37 msgid "" @@ -52,7 +52,7 @@ msgstr "" #: ../../library/configparser.rst:41 msgid "Module :mod:`json`" -msgstr "" +msgstr ":mod:`json` 模組" #: ../../library/configparser.rst:41 msgid "" @@ -660,7 +660,7 @@ msgstr "" #: ../../library/configparser.rst:902 msgid "ConfigParser Objects" -msgstr "" +msgstr "ConfigParser 物件" #: ../../library/configparser.rst:906 msgid "" @@ -1038,7 +1038,7 @@ msgstr "" #: ../../library/configparser.rst:1236 msgid "RawConfigParser Objects" -msgstr "" +msgstr "RawConfigParser 物件" #: ../../library/configparser.rst:1246 msgid "" @@ -1088,7 +1088,7 @@ msgstr "" #: ../../library/configparser.rst:1287 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/configparser.rst:1291 msgid "Base class for all other :mod:`configparser` exceptions." diff --git a/library/contextlib.po b/library/contextlib.po index f793d27cd6..79c1bd27b9 100644 --- a/library/contextlib.po +++ b/library/contextlib.po @@ -25,7 +25,7 @@ msgstr "" #: ../../library/contextlib.rst:7 msgid "**Source code:** :source:`Lib/contextlib.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/contextlib.py`" #: ../../library/contextlib.rst:11 msgid "" @@ -137,6 +137,9 @@ msgstr "" #: ../../library/contextlib.rst:111 msgid "A simple example::" msgstr "" +"一個簡單範例:\n" +"\n" +"::" #: ../../library/contextlib.rst:129 msgid "" @@ -205,6 +208,9 @@ msgstr "" #: ../../library/contextlib.rst:233 msgid "An example using *enter_result*::" msgstr "" +"一個使用 *enter_result* 的範例:\n" +"\n" +"::" #: ../../library/contextlib.rst:246 msgid "" @@ -235,6 +241,9 @@ msgstr "" #: ../../library/contextlib.rst:279 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/contextlib.rst:289 msgid "This code is equivalent to::" @@ -311,6 +320,9 @@ msgstr "" #: ../../library/contextlib.rst:367 msgid "Example of ``ContextDecorator``::" msgstr "" +"``ContextDecorator`` 範例:\n" +"\n" +"::" #: ../../library/contextlib.rst:396 msgid "" @@ -349,6 +361,9 @@ msgstr "" #: ../../library/contextlib.rst:436 msgid "Example of ``AsyncContextDecorator``::" msgstr "" +"``AsyncContextDecorator`` 範例:\n" +"\n" +"::" #: ../../library/contextlib.rst:473 msgid "" diff --git a/library/contextvars.po b/library/contextvars.po index 9a886a11ee..065bc27fe1 100644 --- a/library/contextvars.po +++ b/library/contextvars.po @@ -121,6 +121,9 @@ msgstr "" #: ../../library/contextvars.rst:85 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/contextvars.rst:99 msgid "" diff --git a/library/copy.po b/library/copy.po index e7d3dbd557..9e17f4e1be 100644 --- a/library/copy.po +++ b/library/copy.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/copy.rst:7 msgid "**Source code:** :source:`Lib/copy.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/copy.py`" #: ../../library/copy.rst:11 msgid "" @@ -143,7 +143,7 @@ msgstr "" #: ../../library/copy.rst:95 msgid "Module :mod:`pickle`" -msgstr "" +msgstr ":mod:`pickle` 模組" #: ../../library/copy.rst:95 msgid "" diff --git a/library/copyreg.po b/library/copyreg.po index 6b9cb2216d..b4984f53e0 100644 --- a/library/copyreg.po +++ b/library/copyreg.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/copyreg.rst:7 msgid "**Source code:** :source:`Lib/copyreg.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/copyreg.py`" #: ../../library/copyreg.rst:15 msgid "" @@ -66,7 +66,7 @@ msgstr "" #: ../../library/copyreg.rst:46 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/copyreg.rst:48 msgid "" diff --git a/library/crypt.po b/library/crypt.po index 09a7930c52..73116666d9 100644 --- a/library/crypt.po +++ b/library/crypt.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/crypt.rst:12 msgid "**Source code:** :source:`Lib/crypt.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/crypt.py`" #: ../../library/crypt.rst:20 msgid "" @@ -45,7 +45,7 @@ msgstr "" #: ../../library/crypt.rst:34 msgid ":ref:`Availability `: Unix. Not available on VxWorks." -msgstr "" +msgstr ":ref:`適用 `:Unix,在 VxWorks 上不支援。" #: ../../library/crypt.rst:36 msgid "Hashing Methods" @@ -89,7 +89,7 @@ msgstr "" #: ../../library/crypt.rst:72 msgid "Module Attributes" -msgstr "" +msgstr "模組屬性" #: ../../library/crypt.rst:78 msgid "" @@ -99,11 +99,11 @@ msgstr "" #: ../../library/crypt.rst:84 msgid "Module Functions" -msgstr "" +msgstr "模組函式" #: ../../library/crypt.rst:86 msgid "The :mod:`crypt` module defines the following functions:" -msgstr "" +msgstr ":mod:`crypt` 模組定義了以下函式:" #: ../../library/crypt.rst:90 msgid "" @@ -176,7 +176,7 @@ msgstr "" #: ../../library/crypt.rst:145 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/crypt.rst:147 msgid "" diff --git a/library/csv.po b/library/csv.po index df86197788..aad783555f 100644 --- a/library/csv.po +++ b/library/csv.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/csv.rst:9 msgid "**Source code:** :source:`Lib/csv.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/csv.py`" #: ../../library/csv.rst:17 msgid "" @@ -67,11 +67,11 @@ msgstr "" #: ../../library/csv.rst:48 msgid "Module Contents" -msgstr "" +msgstr "模組內容" #: ../../library/csv.rst:50 msgid "The :mod:`csv` module defines the following functions:" -msgstr "" +msgstr ":mod:`csv` 模組定義了以下函式:" #: ../../library/csv.rst:58 msgid "" @@ -101,6 +101,9 @@ msgstr "" #: ../../library/csv.rst:212 msgid "A short usage example::" msgstr "" +"一個簡短的用法範例:\n" +"\n" +"::" #: ../../library/csv.rst:88 msgid "" @@ -539,7 +542,7 @@ msgstr "" #: ../../library/csv.rst:514 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/csv.rst:516 msgid "The simplest example of reading a CSV file::" diff --git a/library/ctypes.po b/library/ctypes.po index b4f08a7e6c..ce2cbf41a0 100644 --- a/library/ctypes.po +++ b/library/ctypes.po @@ -413,7 +413,7 @@ msgstr "" #: ../../library/ctypes.rst:258 msgid "string or ``None``" -msgstr "" +msgstr "字串或 ``None``" #: ../../library/ctypes.rst:260 msgid ":class:`c_void_p`" @@ -1206,6 +1206,9 @@ msgstr "" #: ../../library/ctypes.rst:1280 msgid "Here are some examples::" msgstr "" +"以下是一些範例:\n" +"\n" +"::" #: ../../library/ctypes.rst:1291 msgid "" diff --git a/library/curses.panel.po b/library/curses.panel.po index d036db6133..9b64270b15 100644 --- a/library/curses.panel.po +++ b/library/curses.panel.po @@ -31,7 +31,7 @@ msgstr "" #: ../../library/curses.panel.rst:19 msgid "Functions" -msgstr "" +msgstr "函式" #: ../../library/curses.panel.rst:21 msgid "The module :mod:`curses.panel` defines the following functions:" diff --git a/library/curses.po b/library/curses.po index a80329cb85..4cf2c1f8aa 100644 --- a/library/curses.po +++ b/library/curses.po @@ -108,7 +108,7 @@ msgstr "" #: ../../library/curses.rst:66 msgid "Functions" -msgstr "" +msgstr "函式" #: ../../library/curses.rst:68 msgid "The module :mod:`curses` defines the following exception:" @@ -894,7 +894,7 @@ msgstr "" #: ../../library/curses.rst:818 msgid "Parameter" -msgstr "" +msgstr "參數" #: ../../library/curses.rst:818 msgid "Description" @@ -2512,7 +2512,7 @@ msgstr "KEY_END" #: ../../library/curses.rst:1639 msgid ":kbd:`Page Up`" -msgstr "" +msgstr ":kbd:`Page Up`" #: ../../library/curses.rst:1639 msgid "KEY_PPAGE" @@ -2520,7 +2520,7 @@ msgstr "KEY_PPAGE" #: ../../library/curses.rst:1641 msgid ":kbd:`Page Down`" -msgstr "" +msgstr ":kbd:`Page Down`" #: ../../library/curses.rst:1641 msgid "KEY_NPAGE" diff --git a/library/datetime.po b/library/datetime.po index 0c409a84af..d940029061 100644 --- a/library/datetime.po +++ b/library/datetime.po @@ -20,11 +20,11 @@ msgstr "" #: ../../library/datetime.rst:2 msgid ":mod:`datetime` --- Basic date and time types" -msgstr "" +msgstr ":mod:`datetime` --- 日期與時間的基本型別" #: ../../library/datetime.rst:11 msgid "**Source code:** :source:`Lib/datetime.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/datetime.py`" #: ../../library/datetime.rst:17 msgid "" @@ -39,7 +39,7 @@ msgstr "" #: ../../library/datetime.rst:25 msgid "Module :mod:`calendar`" -msgstr "" +msgstr ":mod:`calendar` 模組" #: ../../library/datetime.rst:25 msgid "General calendar related functions." @@ -47,7 +47,7 @@ msgstr "" #: ../../library/datetime.rst:28 msgid "Module :mod:`time`" -msgstr "" +msgstr ":mod:`time` 模組" #: ../../library/datetime.rst:28 msgid "Time access and conversions." @@ -55,7 +55,7 @@ msgstr "" #: ../../library/datetime.rst:31 msgid "Module :mod:`zoneinfo`" -msgstr "" +msgstr ":mod:`zoneinfo` 模組" #: ../../library/datetime.rst:31 msgid "Concrete time zones representing the IANA time zone database." @@ -122,7 +122,7 @@ msgstr "" #: ../../library/datetime.rst:72 msgid "Constants" -msgstr "" +msgstr "常數" #: ../../library/datetime.rst:74 msgid "The :mod:`datetime` module exports the following constants:" @@ -239,7 +239,7 @@ msgstr "" #: ../../library/datetime.rst:171 msgid "``d.tzinfo.utcoffset(d)`` does not return ``None``" -msgstr "" +msgstr "``d.tzinfo.utcoffset(d)`` 不會回傳 ``None``" #: ../../library/datetime.rst:173 msgid "Otherwise, *d* is naive." @@ -269,7 +269,7 @@ msgstr "" #: ../../library/datetime.rst:188 msgid ":class:`timedelta` Objects" -msgstr "" +msgstr ":class:`timedelta` 物件" #: ../../library/datetime.rst:190 msgid "" @@ -386,7 +386,7 @@ msgstr "" #: ../../library/datetime.rst:274 msgid "Attribute" -msgstr "" +msgstr "屬性" #: ../../library/datetime.rst:274 msgid "Value" @@ -394,7 +394,7 @@ msgstr "" #: ../../library/datetime.rst:276 msgid "``days``" -msgstr "" +msgstr "``days``" #: ../../library/datetime.rst:276 msgid "Between -999999999 and 999999999 inclusive" @@ -402,7 +402,7 @@ msgstr "" #: ../../library/datetime.rst:278 msgid "``seconds``" -msgstr "" +msgstr "``seconds``" #: ../../library/datetime.rst:278 msgid "Between 0 and 86399 inclusive" @@ -410,7 +410,7 @@ msgstr "" #: ../../library/datetime.rst:280 msgid "``microseconds``" -msgstr "" +msgstr "``microseconds``" #: ../../library/datetime.rst:280 msgid "Between 0 and 999999 inclusive" @@ -665,7 +665,7 @@ msgstr "" #: ../../library/datetime.rst:430 msgid "Examples of usage: :class:`timedelta`" -msgstr "" +msgstr "用法範例:\\ :class:`timedelta`" #: ../../library/datetime.rst:432 msgid "An additional example of normalization::" @@ -677,7 +677,7 @@ msgstr "" #: ../../library/datetime.rst:463 msgid ":class:`date` Objects" -msgstr "" +msgstr ":class:`date` 物件" #: ../../library/datetime.rst:465 msgid "" @@ -830,7 +830,7 @@ msgstr "``timedelta = date1 - date2``" #: ../../library/datetime.rst:590 ../../library/datetime.rst:1133 msgid "\\(3)" -msgstr "" +msgstr "\\(3)" #: ../../library/datetime.rst:592 msgid "``date1 < date2``" @@ -888,6 +888,9 @@ msgstr "" #: ../../library/datetime.rst:632 ../../library/datetime.rst:1829 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/datetime.rst:642 ../../library/datetime.rst:1311 msgid "" @@ -902,6 +905,9 @@ msgstr "" #: ../../library/datetime.rst:646 ../../library/datetime.rst:1313 msgid "``d.timetuple()`` is equivalent to::" msgstr "" +"``d.timetuple()`` 等價於:\n" +"\n" +"::" #: ../../library/datetime.rst:650 msgid "" @@ -1006,7 +1012,7 @@ msgstr "" #: ../../library/datetime.rst:748 msgid "Examples of Usage: :class:`date`" -msgstr "" +msgstr "用法範例:\\ :class:`date`" #: ../../library/datetime.rst:750 msgid "Example of counting days to an event::" @@ -1018,7 +1024,7 @@ msgstr "" #: ../../library/datetime.rst:817 msgid ":class:`.datetime` Objects" -msgstr "" +msgstr ":class:`.datetime` 物件" #: ../../library/datetime.rst:819 msgid "" @@ -1089,6 +1095,9 @@ msgstr "" #: ../../library/datetime.rst:854 msgid "Equivalent to::" msgstr "" +"等價於:\n" +"\n" +"::" #: ../../library/datetime.rst:858 msgid "See also :meth:`now`, :meth:`fromtimestamp`." @@ -1283,6 +1292,9 @@ msgstr "" #: ../../library/datetime.rst:1773 msgid "Examples::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/datetime.rst:1028 msgid "" @@ -1301,6 +1313,9 @@ msgstr "" #: ../../library/datetime.rst:1040 msgid "This is equivalent to::" msgstr "" +"這等價於:\n" +"\n" +"::" #: ../../library/datetime.rst:1044 msgid "" @@ -1832,7 +1847,7 @@ msgstr "" #: ../../library/datetime.rst:1649 msgid ":class:`.time` Objects" -msgstr "" +msgstr ":class:`.time` 物件" #: ../../library/datetime.rst:1651 msgid "" @@ -2019,7 +2034,7 @@ msgstr "" #: ../../library/datetime.rst:1924 msgid ":class:`tzinfo` Objects" -msgstr "" +msgstr ":class:`tzinfo` 物件" #: ../../library/datetime.rst:1928 msgid "" @@ -2143,6 +2158,9 @@ msgstr "" #: ../../library/datetime.rst:2017 msgid "or::" msgstr "" +"或是:\n" +"\n" +"::" #: ../../library/datetime.rst:2029 msgid "" @@ -2289,7 +2307,7 @@ msgstr "" #: ../../library/datetime.rst:2186 msgid ":mod:`zoneinfo`" -msgstr "" +msgstr ":mod:`zoneinfo`" #: ../../library/datetime.rst:2181 msgid "" @@ -2319,7 +2337,7 @@ msgstr "" #: ../../library/datetime.rst:2199 msgid ":class:`timezone` Objects" -msgstr "" +msgstr ":class:`timezone` 物件" #: ../../library/datetime.rst:2201 msgid "" @@ -2391,7 +2409,7 @@ msgstr "" #: ../../library/datetime.rst:2275 msgid ":meth:`strftime` and :meth:`strptime` Behavior" -msgstr "" +msgstr ":meth:`strftime` 與 :meth:`strptime` 的行為" #: ../../library/datetime.rst:2277 msgid "" @@ -2490,7 +2508,7 @@ msgstr "" #: ../../library/datetime.rst:2308 ../../library/datetime.rst:2411 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/datetime.rst:2308 ../../library/datetime.rst:2411 msgid "Notes" @@ -2689,7 +2707,7 @@ msgstr "" #: ../../library/datetime.rst:2358 msgid "\\(4), \\(9)" -msgstr "" +msgstr "\\(4), \\(9)" #: ../../library/datetime.rst:2361 msgid "``%f``" diff --git a/library/dbm.po b/library/dbm.po index 593633f572..2d74e9e2ff 100644 --- a/library/dbm.po +++ b/library/dbm.po @@ -25,7 +25,7 @@ msgstr "" #: ../../library/dbm.rst:7 msgid "**Source code:** :source:`Lib/dbm/__init__.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/dbm/__init__.py`" #: ../../library/dbm.rst:11 msgid "" @@ -176,7 +176,7 @@ msgstr "" #: ../../library/dbm.rst:121 msgid "Module :mod:`shelve`" -msgstr "" +msgstr ":mod:`shelve` 模組" #: ../../library/dbm.rst:122 msgid "Persistence module which stores non-string data." @@ -192,7 +192,7 @@ msgstr "" #: ../../library/dbm.rst:135 msgid "**Source code:** :source:`Lib/dbm/gnu.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/dbm/gnu.py`" #: ../../library/dbm.rst:139 msgid "" @@ -317,7 +317,7 @@ msgstr "" #: ../../library/dbm.rst:247 msgid "**Source code:** :source:`Lib/dbm/ndbm.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/dbm/ndbm.py`" #: ../../library/dbm.rst:251 msgid "" @@ -374,7 +374,7 @@ msgstr "" #: ../../library/dbm.rst:312 msgid "**Source code:** :source:`Lib/dbm/dumb.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/dbm/dumb.py`" #: ../../library/dbm.rst:318 msgid "" diff --git a/library/decimal.po b/library/decimal.po index 740e4f53fa..b668d7b744 100644 --- a/library/decimal.po +++ b/library/decimal.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/decimal.rst:15 msgid "**Source code:** :source:`Lib/decimal.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/decimal.py`" #: ../../library/decimal.rst:33 msgid "" @@ -1436,7 +1436,7 @@ msgstr "" #: ../../library/decimal.rst:1461 msgid "Constants" -msgstr "" +msgstr "常數" #: ../../library/decimal.rst:1463 msgid "" diff --git a/library/dialog.po b/library/dialog.po index bae56f1a69..e55be960c5 100644 --- a/library/dialog.po +++ b/library/dialog.po @@ -28,7 +28,7 @@ msgstr "" #: ../../library/dialog.rst:11 msgid "**Source code:** :source:`Lib/tkinter/simpledialog.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tkinter/simpledialog.py`" #: ../../library/dialog.rst:15 msgid "" @@ -64,7 +64,7 @@ msgstr "" #: ../../library/dialog.rst:49 msgid "**Source code:** :source:`Lib/tkinter/filedialog.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tkinter/filedialog.py`" #: ../../library/dialog.rst:53 msgid "" @@ -270,7 +270,7 @@ msgstr "" #: ../../library/dialog.rst:214 msgid "**Source code:** :source:`Lib/tkinter/commondialog.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tkinter/commondialog.py`" #: ../../library/dialog.rst:218 msgid "" @@ -284,4 +284,4 @@ msgstr "" #: ../../library/dialog.rst:230 msgid "Modules :mod:`tkinter.messagebox`, :ref:`tut-files`" -msgstr "" +msgstr ":mod:`tkinter.messagebox` 模組、\\ :ref:`tut-files`" diff --git a/library/difflib.po b/library/difflib.po index 2c98238a1d..cbaffa6c41 100644 --- a/library/difflib.po +++ b/library/difflib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/difflib.rst:11 msgid "**Source code:** :source:`Lib/difflib.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/difflib.py`" #: ../../library/difflib.rst:20 msgid "" @@ -348,7 +348,7 @@ msgstr "" #: ../../library/difflib.rst:267 msgid "Example:" -msgstr "" +msgstr "範例:" #: ../../library/difflib.rst:284 msgid "" @@ -419,7 +419,7 @@ msgstr "" #: ../../library/difflib.rst:364 msgid "SequenceMatcher Objects" -msgstr "" +msgstr "SequenceMatcher 物件" #: ../../library/difflib.rst:366 msgid "The :class:`SequenceMatcher` class has this constructor:" @@ -574,7 +574,7 @@ msgstr "" #: ../../library/difflib.rst:500 msgid "``'replace'``" -msgstr "" +msgstr "``'replace'``" #: ../../library/difflib.rst:500 msgid "``a[i1:i2]`` should be replaced by ``b[j1:j2]``." @@ -582,7 +582,7 @@ msgstr "" #: ../../library/difflib.rst:503 msgid "``'delete'``" -msgstr "" +msgstr "``'delete'``" #: ../../library/difflib.rst:503 msgid "``a[i1:i2]`` should be deleted. Note that ``j1 == j2`` in this case." @@ -590,7 +590,7 @@ msgstr "" #: ../../library/difflib.rst:506 msgid "``'insert'``" -msgstr "" +msgstr "``'insert'``" #: ../../library/difflib.rst:506 msgid "" @@ -600,7 +600,7 @@ msgstr "" #: ../../library/difflib.rst:510 msgid "``'equal'``" -msgstr "" +msgstr "``'equal'``" #: ../../library/difflib.rst:510 msgid "``a[i1:i2] == b[j1:j2]`` (the sub-sequences are equal)." @@ -609,6 +609,9 @@ msgstr "" #: ../../library/difflib.rst:514 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/difflib.rst:531 msgid "Return a :term:`generator` of groups with up to *n* lines of context." diff --git a/library/dis.po b/library/dis.po index 4d2b56a02a..c649dd92e2 100644 --- a/library/dis.po +++ b/library/dis.po @@ -26,7 +26,7 @@ msgstr ":mod:`dis` --- Python bytecode的反組譯器" #: ../../library/dis.rst:7 msgid "**Source code:** :source:`Lib/dis.py`" -msgstr "**原始碼:**:source:`Lib/dis.py`" +msgstr "**原始碼:**\\ :source:`Lib/dis.py`" #: ../../library/dis.rst:11 msgid "" @@ -139,6 +139,9 @@ msgstr "" #: ../../library/dis.rst:99 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/dis.rst:112 msgid "Analysis functions" diff --git a/library/doctest.po b/library/doctest.po index e5300a9759..9f58852e71 100644 --- a/library/doctest.po +++ b/library/doctest.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/doctest.rst:12 msgid "**Source code:** :source:`Lib/doctest.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/doctest.py`" #: ../../library/doctest.rst:16 msgid "" @@ -366,6 +366,9 @@ msgstr "" #: ../../library/doctest.rst:409 msgid "Simple example::" msgstr "" +"簡單範例:\n" +"\n" +"::" #: ../../library/doctest.rst:416 msgid "" @@ -1299,7 +1302,7 @@ msgstr "" #: ../../library/doctest.rst:1185 msgid "DocTest Objects" -msgstr "" +msgstr "DocTest 物件" #: ../../library/doctest.rst:1190 msgid "" @@ -1356,7 +1359,7 @@ msgstr "" #: ../../library/doctest.rst:1241 msgid "Example Objects" -msgstr "" +msgstr "Example 物件" #: ../../library/doctest.rst:1246 msgid "" @@ -1419,7 +1422,7 @@ msgstr "" #: ../../library/doctest.rst:1303 msgid "DocTestFinder objects" -msgstr "" +msgstr "DocTestFinder 物件" #: ../../library/doctest.rst:1308 msgid "" @@ -1518,7 +1521,7 @@ msgstr "" #: ../../library/doctest.rst:1369 msgid "DocTestParser objects" -msgstr "" +msgstr "DocTestParser 物件" #: ../../library/doctest.rst:1374 msgid "" @@ -1561,7 +1564,7 @@ msgstr "" #: ../../library/doctest.rst:1409 msgid "DocTestRunner objects" -msgstr "" +msgstr "DocTestRunner 物件" #: ../../library/doctest.rst:1414 msgid "" @@ -1707,7 +1710,7 @@ msgstr "" #: ../../library/doctest.rst:1525 msgid "OutputChecker objects" -msgstr "" +msgstr "OutputChecker 物件" #: ../../library/doctest.rst:1530 msgid "" diff --git a/library/email.charset.po b/library/email.charset.po index d2abb0f4a6..4324d78f48 100644 --- a/library/email.charset.po +++ b/library/email.charset.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.charset.rst:7 msgid "**Source code:** :source:`Lib/email/charset.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/charset.py`" #: ../../library/email.charset.rst:11 msgid "" diff --git a/library/email.compat32-message.po b/library/email.compat32-message.po index 9af70d1788..98d14db02a 100644 --- a/library/email.compat32-message.po +++ b/library/email.compat32-message.po @@ -462,6 +462,9 @@ msgstr "" #: ../../library/email.compat32-message.rst:404 msgid "Here's an example::" msgstr "" +"以下是個範例:\n" +"\n" +"::" #: ../../library/email.compat32-message.rst:408 msgid "This will add a header that looks like ::" diff --git a/library/email.contentmanager.po b/library/email.contentmanager.po index 1450ea9d50..20f7dba66f 100644 --- a/library/email.contentmanager.po +++ b/library/email.contentmanager.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.contentmanager.rst:10 msgid "**Source code:** :source:`Lib/email/contentmanager.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/contentmanager.py`" #: ../../library/email.contentmanager.rst:14 msgid "[1]_" @@ -274,7 +274,7 @@ msgstr "" #: ../../library/email.contentmanager.rst:196 msgid "Footnotes" -msgstr "" +msgstr "註解" #: ../../library/email.contentmanager.rst:197 msgid "" diff --git a/library/email.encoders.po b/library/email.encoders.po index 68ac3163b3..7fb15d5f34 100644 --- a/library/email.encoders.po +++ b/library/email.encoders.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.encoders.rst:7 msgid "**Source code:** :source:`Lib/email/encoders.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/encoders.py`" #: ../../library/email.encoders.rst:11 msgid "" diff --git a/library/email.errors.po b/library/email.errors.po index 23c005e5b0..44fb8f00c9 100644 --- a/library/email.errors.po +++ b/library/email.errors.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.errors.rst:7 msgid "**Source code:** :source:`Lib/email/errors.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/errors.py`" #: ../../library/email.errors.rst:11 msgid "" diff --git a/library/email.examples.po b/library/email.examples.po index a450583431..912d23a158 100644 --- a/library/email.examples.po +++ b/library/email.examples.po @@ -75,7 +75,7 @@ msgstr "" #: ../../library/email.examples.rst:66 msgid "Footnotes" -msgstr "" +msgstr "註解" #: ../../library/email.examples.rst:67 msgid "" diff --git a/library/email.generator.po b/library/email.generator.po index ab04b2a2d1..9e7f86a7e4 100644 --- a/library/email.generator.po +++ b/library/email.generator.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.generator.rst:7 msgid "**Source code:** :source:`Lib/email/generator.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/generator.py`" #: ../../library/email.generator.rst:11 msgid "" diff --git a/library/email.header.po b/library/email.header.po index eacdfa1c5f..ae0b67bfe5 100644 --- a/library/email.header.po +++ b/library/email.header.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.header.rst:7 msgid "**Source code:** :source:`Lib/email/header.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/header.py`" #: ../../library/email.header.rst:11 msgid "" @@ -266,6 +266,9 @@ msgstr "" #: ../../library/email.header.rst:186 msgid "Here's an example::" msgstr "" +"以下是個範例:\n" +"\n" +"::" #: ../../library/email.header.rst:195 msgid "" diff --git a/library/email.headerregistry.po b/library/email.headerregistry.po index 07a9b041aa..9eecb70b49 100644 --- a/library/email.headerregistry.po +++ b/library/email.headerregistry.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.headerregistry.rst:10 msgid "**Source code:** :source:`Lib/email/headerregistry.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/headerregistry.py`" #: ../../library/email.headerregistry.rst:14 msgid "[1]_" @@ -372,52 +372,52 @@ msgstr "" #: ../../library/email.headerregistry.rst:0 msgid "subject" -msgstr "" +msgstr "subject" #: ../../library/email.headerregistry.rst:324 msgid "UniqueUnstructuredHeader" -msgstr "" +msgstr "UniqueUnstructuredHeader" #: ../../library/email.headerregistry.rst:0 msgid "date" -msgstr "" +msgstr "date" #: ../../library/email.headerregistry.rst:325 #: ../../library/email.headerregistry.rst:327 msgid "UniqueDateHeader" -msgstr "" +msgstr "UniqueDateHeader" #: ../../library/email.headerregistry.rst:0 msgid "resent-date" -msgstr "" +msgstr "resent-date" #: ../../library/email.headerregistry.rst:326 msgid "DateHeader" -msgstr "" +msgstr "DateHeader" #: ../../library/email.headerregistry.rst:0 msgid "orig-date" -msgstr "" +msgstr "orig-date" #: ../../library/email.headerregistry.rst:0 msgid "sender" -msgstr "" +msgstr "sender" #: ../../library/email.headerregistry.rst:328 msgid "UniqueSingleAddressHeader" -msgstr "" +msgstr "UniqueSingleAddressHeader" #: ../../library/email.headerregistry.rst:0 msgid "resent-sender" -msgstr "" +msgstr "resent-sender" #: ../../library/email.headerregistry.rst:329 msgid "SingleAddressHeader" -msgstr "" +msgstr "SingleAddressHeader" #: ../../library/email.headerregistry.rst:0 msgid "to" -msgstr "" +msgstr "to" #: ../../library/email.headerregistry.rst:330 #: ../../library/email.headerregistry.rst:332 @@ -425,86 +425,86 @@ msgstr "" #: ../../library/email.headerregistry.rst:336 #: ../../library/email.headerregistry.rst:338 msgid "UniqueAddressHeader" -msgstr "" +msgstr "UniqueAddressHeader" #: ../../library/email.headerregistry.rst:0 msgid "resent-to" -msgstr "" +msgstr "resent-to" #: ../../library/email.headerregistry.rst:331 #: ../../library/email.headerregistry.rst:333 #: ../../library/email.headerregistry.rst:335 #: ../../library/email.headerregistry.rst:337 msgid "AddressHeader" -msgstr "" +msgstr "AddressHeader" #: ../../library/email.headerregistry.rst:0 msgid "cc" -msgstr "" +msgstr "cc" #: ../../library/email.headerregistry.rst:0 msgid "resent-cc" -msgstr "" +msgstr "resent-cc" #: ../../library/email.headerregistry.rst:0 msgid "bcc" -msgstr "" +msgstr "bcc" #: ../../library/email.headerregistry.rst:0 msgid "resent-bcc" -msgstr "" +msgstr "resent-bcc" #: ../../library/email.headerregistry.rst:0 msgid "from" -msgstr "" +msgstr "from" #: ../../library/email.headerregistry.rst:0 msgid "resent-from" -msgstr "" +msgstr "resent-from" #: ../../library/email.headerregistry.rst:0 msgid "reply-to" -msgstr "" +msgstr "reply-to" #: ../../library/email.headerregistry.rst:0 msgid "mime-version" -msgstr "" +msgstr "mime-version" #: ../../library/email.headerregistry.rst:339 msgid "MIMEVersionHeader" -msgstr "" +msgstr "MIMEVersionHeader" #: ../../library/email.headerregistry.rst:0 msgid "content-type" -msgstr "" +msgstr "content-type" #: ../../library/email.headerregistry.rst:340 msgid "ContentTypeHeader" -msgstr "" +msgstr "ContentTypeHeader" #: ../../library/email.headerregistry.rst:0 msgid "content-disposition" -msgstr "" +msgstr "content-disposition" #: ../../library/email.headerregistry.rst:341 msgid "ContentDispositionHeader" -msgstr "" +msgstr "ContentDispositionHeader" #: ../../library/email.headerregistry.rst:0 msgid "content-transfer-encoding" -msgstr "" +msgstr "content-transfer-encoding" #: ../../library/email.headerregistry.rst:342 msgid "ContentTransferEncodingHeader" -msgstr "" +msgstr "ContentTransferEncodingHeader" #: ../../library/email.headerregistry.rst:0 msgid "message-id" -msgstr "" +msgstr "message-id" #: ../../library/email.headerregistry.rst:343 msgid "MessageIDHeader" -msgstr "" +msgstr "MessageIDHeader" #: ../../library/email.headerregistry.rst:345 msgid "``HeaderRegistry`` has the following methods:" @@ -640,7 +640,7 @@ msgstr "" #: ../../library/email.headerregistry.rst:460 msgid "Footnotes" -msgstr "" +msgstr "註解" #: ../../library/email.headerregistry.rst:461 msgid "" diff --git a/library/email.iterators.po b/library/email.iterators.po index d0f3c074e3..4990b74787 100644 --- a/library/email.iterators.po +++ b/library/email.iterators.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.iterators.rst:7 msgid "**Source code:** :source:`Lib/email/iterators.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/iterators.py`" #: ../../library/email.iterators.rst:11 msgid "" diff --git a/library/email.message.po b/library/email.message.po index 9a26bd95b3..73287d68a4 100644 --- a/library/email.message.po +++ b/library/email.message.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.message.rst:10 msgid "**Source code:** :source:`Lib/email/message.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/message.py`" #: ../../library/email.message.rst:14 msgid "[1]_" @@ -347,6 +347,9 @@ msgstr "" #: ../../library/email.message.rst:287 msgid "Here is an example::" msgstr "" +"以下是個範例:\n" +"\n" +"::" #: ../../library/email.message.rst:291 msgid "This will add a header that looks like ::" @@ -811,7 +814,7 @@ msgstr "" #: ../../library/email.message.rst:748 msgid "Footnotes" -msgstr "" +msgstr "註解" #: ../../library/email.message.rst:749 msgid "" diff --git a/library/email.mime.po b/library/email.mime.po index 0785cd6f11..c126440701 100644 --- a/library/email.mime.po +++ b/library/email.mime.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.mime.rst:7 msgid "**Source code:** :source:`Lib/email/mime/`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/mime/`" #: ../../library/email.mime.rst:11 msgid "" @@ -59,7 +59,7 @@ msgstr "" #: ../../library/email.mime.rst:35 msgid "Module: :mod:`email.mime.base`" -msgstr "" +msgstr "模組:\\ :mod:`email.mime.base`" #: ../../library/email.mime.rst:37 msgid "" @@ -101,7 +101,7 @@ msgstr "" #: ../../library/email.mime.rst:65 msgid "Module: :mod:`email.mime.nonmultipart`" -msgstr "" +msgstr "模組:\\ :mod:`email.mime.nonmultipart`" #: ../../library/email.mime.rst:67 msgid "" @@ -115,7 +115,7 @@ msgstr "" #: ../../library/email.mime.rst:80 msgid "Module: :mod:`email.mime.multipart`" -msgstr "" +msgstr "模組:\\ :mod:`email.mime.multipart`" #: ../../library/email.mime.rst:82 msgid "" @@ -159,7 +159,7 @@ msgstr "" #: ../../library/email.mime.rst:113 msgid "Module: :mod:`email.mime.application`" -msgstr "" +msgstr "模組:\\ :mod:`email.mime.application`" #: ../../library/email.mime.rst:115 msgid "" @@ -188,7 +188,7 @@ msgstr "" #: ../../library/email.mime.rst:144 msgid "Module: :mod:`email.mime.audio`" -msgstr "" +msgstr "模組:\\ :mod:`email.mime.audio`" #: ../../library/email.mime.rst:146 msgid "" @@ -216,7 +216,7 @@ msgstr "" #: ../../library/email.mime.rst:178 msgid "Module: :mod:`email.mime.image`" -msgstr "" +msgstr "模組:\\ :mod:`email.mime.image`" #: ../../library/email.mime.rst:180 msgid "" @@ -250,7 +250,7 @@ msgstr "" #: ../../library/email.mime.rst:211 msgid "Module: :mod:`email.mime.message`" -msgstr "" +msgstr "模組:\\ :mod:`email.mime.message`" #: ../../library/email.mime.rst:213 msgid "" @@ -269,7 +269,7 @@ msgstr "" #: ../../library/email.mime.rst:231 msgid "Module: :mod:`email.mime.text`" -msgstr "" +msgstr "模組:\\ :mod:`email.mime.text`" #: ../../library/email.mime.rst:233 msgid "" diff --git a/library/email.parser.po b/library/email.parser.po index b0067f781c..0b4d2cebdb 100644 --- a/library/email.parser.po +++ b/library/email.parser.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.parser.rst:7 msgid "**Source code:** :source:`Lib/email/parser.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/parser.py`" #: ../../library/email.parser.rst:11 msgid "" diff --git a/library/email.po b/library/email.po index 476a99486a..7e7f1f9e9a 100644 --- a/library/email.po +++ b/library/email.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.rst:11 msgid "**Source code:** :source:`Lib/email/__init__.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/__init__.py`" #: ../../library/email.rst:15 msgid "" @@ -158,7 +158,7 @@ msgstr "" #: ../../library/email.rst:136 msgid "Module :mod:`smtplib`" -msgstr "" +msgstr ":mod:`smtplib` 模組" #: ../../library/email.rst:136 msgid "SMTP (Simple Mail Transport Protocol) client" @@ -166,7 +166,7 @@ msgstr "" #: ../../library/email.rst:139 msgid "Module :mod:`poplib`" -msgstr "" +msgstr ":mod:`poplib` 模組" #: ../../library/email.rst:139 msgid "POP (Post Office Protocol) client" @@ -174,7 +174,7 @@ msgstr "" #: ../../library/email.rst:142 msgid "Module :mod:`imaplib`" -msgstr "" +msgstr ":mod:`imaplib` 模組" #: ../../library/email.rst:142 msgid "IMAP (Internet Message Access Protocol) client" @@ -182,7 +182,7 @@ msgstr "" #: ../../library/email.rst:145 msgid "Module :mod:`nntplib`" -msgstr "" +msgstr ":mod:`nntplib` 模組" #: ../../library/email.rst:145 msgid "NNTP (Net News Transport Protocol) client" @@ -190,7 +190,7 @@ msgstr "" #: ../../library/email.rst:149 msgid "Module :mod:`mailbox`" -msgstr "" +msgstr ":mod:`mailbox` 模組" #: ../../library/email.rst:148 msgid "" @@ -200,7 +200,7 @@ msgstr "" #: ../../library/email.rst:151 msgid "Module :mod:`smtpd`" -msgstr "" +msgstr ":mod:`smtpd` 模組" #: ../../library/email.rst:152 msgid "SMTP server framework (primarily useful for testing)" diff --git a/library/email.policy.po b/library/email.policy.po index 75fd92ca57..9d462b4732 100644 --- a/library/email.policy.po +++ b/library/email.policy.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.policy.rst:12 msgid "**Source code:** :source:`Lib/email/policy.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/policy.py`" #: ../../library/email.policy.rst:16 msgid "" @@ -197,7 +197,7 @@ msgstr "" #: ../../library/email.policy.rst:190 msgid "``7bit``" -msgstr "" +msgstr "``7bit``" #: ../../library/email.policy.rst:190 msgid "" @@ -208,7 +208,7 @@ msgstr "" #: ../../library/email.policy.rst:194 msgid "``8bit``" -msgstr "" +msgstr "``8bit``" #: ../../library/email.policy.rst:194 msgid "" @@ -482,7 +482,7 @@ msgstr "" #: ../../library/email.policy.rst:411 msgid "``all``" -msgstr "" +msgstr "``all``" #: ../../library/email.policy.rst:411 msgid "all values are refolded." @@ -490,7 +490,7 @@ msgstr "" #: ../../library/email.policy.rst:414 msgid "The default is ``long``." -msgstr "" +msgstr "預設為 ``long``\\ 。" #: ../../library/email.policy.rst:419 msgid "" @@ -730,7 +730,7 @@ msgstr "" #: ../../library/email.policy.rst:649 msgid "Footnotes" -msgstr "" +msgstr "註解" #: ../../library/email.policy.rst:650 msgid "" diff --git a/library/email.utils.po b/library/email.utils.po index ddad6eaf20..ab2576e4b8 100644 --- a/library/email.utils.po +++ b/library/email.utils.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/email.utils.rst:7 msgid "**Source code:** :source:`Lib/email/utils.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/email/utils.py`" #: ../../library/email.utils.rst:11 msgid "" @@ -239,7 +239,7 @@ msgstr "" #: ../../library/email.utils.rst:217 msgid "Footnotes" -msgstr "" +msgstr "註解" #: ../../library/email.utils.rst:218 msgid "" diff --git a/library/ensurepip.po b/library/ensurepip.po index b637ac9cb5..ea10868153 100644 --- a/library/ensurepip.po +++ b/library/ensurepip.po @@ -48,7 +48,7 @@ msgstr "" #: ../../library/ensurepip.rst:34 msgid ":ref:`installing-index`" -msgstr "" +msgstr ":ref:`installing-index`" #: ../../library/ensurepip.rst:34 msgid "The end user guide for installing Python packages" @@ -131,7 +131,7 @@ msgstr "" #: ../../library/ensurepip.rst:83 msgid "Module API" -msgstr "" +msgstr "模組 API" #: ../../library/ensurepip.rst:85 msgid ":mod:`ensurepip` exposes two functions for programmatic use:" diff --git a/library/enum.po b/library/enum.po index c57b08d3a7..2fdda712c6 100644 --- a/library/enum.po +++ b/library/enum.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/enum.rst:14 msgid "**Source code:** :source:`Lib/enum.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/enum.py`" #: ../../library/enum.rst:18 msgid "" @@ -45,7 +45,7 @@ msgstr "" #: ../../library/enum.rst:30 msgid "Module Contents" -msgstr "" +msgstr "模組內容" #: ../../library/enum.rst:32 msgid "" @@ -493,7 +493,7 @@ msgstr "" #: ../../library/enum.rst:0 msgid "module" -msgstr "" +msgstr "模組" #: ../../library/enum.rst:543 msgid "name of module where new Enum class can be found." @@ -980,7 +980,7 @@ msgstr "" #: ../../library/enum.rst:1126 msgid "_Private__names" -msgstr "" +msgstr "_Private__names" #: ../../library/enum.rst:1128 msgid "" diff --git a/library/faulthandler.po b/library/faulthandler.po index eec87a933c..4a987a36f8 100644 --- a/library/faulthandler.po +++ b/library/faulthandler.po @@ -222,7 +222,7 @@ msgstr "" #: ../../library/faulthandler.rst:162 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/faulthandler.rst:164 msgid "" diff --git a/library/fcntl.po b/library/fcntl.po index 0854dfce02..7d2a4fa0ee 100644 --- a/library/fcntl.po +++ b/library/fcntl.po @@ -158,7 +158,10 @@ msgstr "" #: ../../library/fcntl.rst:109 msgid "An example::" -msgstr "例子::" +msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/fcntl.rst:122 msgid "" @@ -263,7 +266,7 @@ msgstr "" #: ../../library/fcntl.rst:192 msgid "Module :mod:`os`" -msgstr "" +msgstr ":mod:`os` 模組" #: ../../library/fcntl.rst:190 msgid "" diff --git a/library/filecmp.po b/library/filecmp.po index ba475ab9ed..2d0d72b690 100644 --- a/library/filecmp.po +++ b/library/filecmp.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/filecmp.rst:9 msgid "**Source code:** :source:`Lib/filecmp.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/filecmp.py`" #: ../../library/filecmp.rst:13 msgid "" diff --git a/library/fileinput.po b/library/fileinput.po index ebad494852..f3bb61deea 100644 --- a/library/fileinput.po +++ b/library/fileinput.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/fileinput.rst:10 msgid "**Source code:** :source:`Lib/fileinput.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/fileinput.py`" #: ../../library/fileinput.rst:14 msgid "" @@ -227,7 +227,7 @@ msgstr "" #: ../../library/fileinput.rst:174 msgid "The ``'rU'`` and ``'U'`` modes." -msgstr "" +msgstr "``'rU'`` 和 ``'U'`` 模式。" #: ../../library/fileinput.rst:177 msgid "Support for :meth:`__getitem__` method is deprecated." diff --git a/library/fnmatch.po b/library/fnmatch.po index 637dab7e76..568a2ab875 100644 --- a/library/fnmatch.po +++ b/library/fnmatch.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/fnmatch.rst:7 msgid "**Source code:** :source:`Lib/fnmatch.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/fnmatch.py`" #: ../../library/fnmatch.rst:15 msgid "" @@ -125,11 +125,11 @@ msgstr "" #: ../../library/fnmatch.rst:87 msgid "Example:" -msgstr "" +msgstr "範例:" #: ../../library/fnmatch.rst:101 msgid "Module :mod:`glob`" -msgstr "" +msgstr ":mod:`glob` 模組" #: ../../library/fnmatch.rst:102 msgid "Unix shell-style path expansion." diff --git a/library/fractions.po b/library/fractions.po index 68205babf0..ad4183d9e5 100644 --- a/library/fractions.po +++ b/library/fractions.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/fractions.rst:10 msgid "**Source code:** :source:`Lib/fractions.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/fractions.py`" #: ../../library/fractions.rst:14 msgid "" @@ -160,7 +160,7 @@ msgstr "" #: ../../library/fractions.rst:181 msgid "Module :mod:`numbers`" -msgstr "" +msgstr ":mod:`numbers` 模組" #: ../../library/fractions.rst:182 msgid "The abstract base classes making up the numeric tower." diff --git a/library/ftplib.po b/library/ftplib.po index 05afb811c9..e4986b18ea 100644 --- a/library/ftplib.po +++ b/library/ftplib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/ftplib.rst:7 msgid "**Source code:** :source:`Lib/ftplib.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/ftplib.py`" #: ../../library/ftplib.rst:15 msgid "" @@ -151,7 +151,7 @@ msgstr "" #: ../../library/ftplib.rst:171 msgid "Module :mod:`netrc`" -msgstr "" +msgstr ":mod:`netrc` 模組" #: ../../library/ftplib.rst:170 msgid "" @@ -162,7 +162,7 @@ msgstr "" #: ../../library/ftplib.rst:178 msgid "FTP Objects" -msgstr "" +msgstr "FTP 物件" #: ../../library/ftplib.rst:180 msgid "" diff --git a/library/functools.po b/library/functools.po index aea977d307..7175d64ba4 100644 --- a/library/functools.po +++ b/library/functools.po @@ -26,7 +26,7 @@ msgstr "" #: ../../library/functools.rst:14 msgid "**Source code:** :source:`Lib/functools.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/functools.py`" #: ../../library/functools.rst:23 msgid "" @@ -56,6 +56,9 @@ msgstr "" #: ../../library/functools.rst:39 ../../library/functools.rst:264 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/functools.rst:57 msgid "" @@ -69,6 +72,9 @@ msgstr "" #: ../../library/functools.rst:356 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/functools.rst:73 msgid "" @@ -558,7 +564,7 @@ msgstr "" #: ../../library/functools.rst:671 msgid ":class:`partial` Objects" -msgstr "" +msgstr ":class:`partial` 物件" #: ../../library/functools.rst:673 msgid "" diff --git a/library/getopt.po b/library/getopt.po index ab438fc56d..ec0821cad1 100644 --- a/library/getopt.po +++ b/library/getopt.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/getopt.rst:8 msgid "**Source code:** :source:`Lib/getopt.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/getopt.py`" #: ../../library/getopt.rst:12 msgid "" @@ -143,7 +143,7 @@ msgstr "" #: ../../library/getopt.rst:162 msgid "Module :mod:`argparse`" -msgstr "" +msgstr ":mod:`argparse` 模組" #: ../../library/getopt.rst:163 msgid "Alternative command line option and argument parsing library." diff --git a/library/getpass.po b/library/getpass.po index 4eccd9ce9e..2e885906b5 100644 --- a/library/getpass.po +++ b/library/getpass.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/getpass.rst:11 msgid "**Source code:** :source:`Lib/getpass.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/getpass.py`" #: ../../library/getpass.rst:15 msgid "The :mod:`getpass` module provides two functions:" diff --git a/library/gettext.po b/library/gettext.po index 5c334e557d..f400d9f1b5 100644 --- a/library/gettext.po +++ b/library/gettext.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/gettext.rst:10 msgid "**Source code:** :source:`Lib/gettext.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/gettext.py`" #: ../../library/gettext.rst:14 msgid "" @@ -201,7 +201,7 @@ msgstr "" #: ../../library/gettext.rst:176 msgid ":file:`{localedir}/{language}/LC_MESSAGES/{domain}.mo`" -msgstr "" +msgstr ":file:`{localedir}/{language}/LC_MESSAGES/{domain}.mo`" #: ../../library/gettext.rst:178 msgid "" @@ -478,6 +478,9 @@ msgstr "" #: ../../library/gettext.rst:418 msgid "Here is an example::" msgstr "" +"以下是個範例:\n" +"\n" +"::" #: ../../library/gettext.rst:430 msgid "" @@ -754,7 +757,7 @@ msgstr "" #: ../../library/gettext.rst:701 msgid "Acknowledgements" -msgstr "" +msgstr "致謝" #: ../../library/gettext.rst:703 msgid "" @@ -812,4 +815,4 @@ msgstr "" #: ../../library/gettext.rst:732 msgid "See the footnote for :func:`bindtextdomain` above." -msgstr "" +msgstr "請見上方 :func:`bindtextdomain` 之註解。" diff --git a/library/glob.po b/library/glob.po index 0271211a0a..ecd0606b8d 100644 --- a/library/glob.po +++ b/library/glob.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/glob.rst:7 msgid "**Source code:** :source:`Lib/glob.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/glob.py`" #: ../../library/glob.rst:21 msgid "" @@ -142,7 +142,7 @@ msgstr "" #: ../../library/glob.rst:137 msgid "Module :mod:`fnmatch`" -msgstr "" +msgstr ":mod:`fnmatch` 模組" #: ../../library/glob.rst:138 msgid "Shell-style filename (not path) expansion" diff --git a/library/graphlib.po b/library/graphlib.po index 4db9c2e786..41422bf926 100644 --- a/library/graphlib.po +++ b/library/graphlib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/graphlib.rst:8 msgid "**Source code:** :source:`Lib/graphlib.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/graphlib.py`" #: ../../library/graphlib.rst:20 msgid "Provides functionality to topologically sort a graph of hashable nodes." @@ -205,7 +205,7 @@ msgstr "" #: ../../library/graphlib.rst:198 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/graphlib.rst:199 msgid "The :mod:`graphlib` module defines the following exception classes:" diff --git a/library/grp.po b/library/grp.po index 3d1c86019f..86e76fe3d8 100644 --- a/library/grp.po +++ b/library/grp.po @@ -41,7 +41,7 @@ msgstr "" #: ../../library/grp.rst:18 msgid "Attribute" -msgstr "" +msgstr "屬性" #: ../../library/grp.rst:18 msgid "Meaning" @@ -53,7 +53,7 @@ msgstr "0" #: ../../library/grp.rst:20 msgid "gr_name" -msgstr "" +msgstr "gr_name" #: ../../library/grp.rst:20 msgid "the name of the group" @@ -65,7 +65,7 @@ msgstr "1" #: ../../library/grp.rst:22 msgid "gr_passwd" -msgstr "" +msgstr "gr_passwd" #: ../../library/grp.rst:22 msgid "the (encrypted) group password; often empty" @@ -77,7 +77,7 @@ msgstr "2" #: ../../library/grp.rst:25 msgid "gr_gid" -msgstr "" +msgstr "gr_gid" #: ../../library/grp.rst:25 msgid "the numerical group ID" @@ -85,11 +85,11 @@ msgstr "" #: ../../library/grp.rst:27 msgid "3" -msgstr "" +msgstr "3" #: ../../library/grp.rst:27 msgid "gr_mem" -msgstr "" +msgstr "gr_mem" #: ../../library/grp.rst:27 msgid "all the group member's user names" @@ -134,7 +134,7 @@ msgstr "" #: ../../library/grp.rst:64 msgid "Module :mod:`pwd`" -msgstr "" +msgstr ":mod:`pwd` 模組" #: ../../library/grp.rst:64 msgid "An interface to the user database, similar to this." @@ -142,7 +142,7 @@ msgstr "" #: ../../library/grp.rst:66 msgid "Module :mod:`spwd`" -msgstr "" +msgstr ":mod:`spwd` 模組" #: ../../library/grp.rst:67 msgid "An interface to the shadow password database, similar to this." diff --git a/library/gzip.po b/library/gzip.po index 8318b6bc9e..d0b7fe07a1 100644 --- a/library/gzip.po +++ b/library/gzip.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/gzip.rst:7 msgid "**Source code:** :source:`Lib/gzip.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/gzip.py`" #: ../../library/gzip.rst:11 msgid "" @@ -294,7 +294,7 @@ msgstr "" #: ../../library/gzip.rst:226 msgid "Module :mod:`zlib`" -msgstr "" +msgstr ":mod:`zlib` 模組" #: ../../library/gzip.rst:226 msgid "" diff --git a/library/hashlib.po b/library/hashlib.po index 457eb2e51c..567f350b30 100644 --- a/library/hashlib.po +++ b/library/hashlib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/hashlib.rst:10 msgid "**Source code:** :source:`Lib/hashlib.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/hashlib.py`" #: ../../library/hashlib.rst:23 msgid "" @@ -96,7 +96,7 @@ msgstr "" #: ../../library/hashlib.rst:80 msgid ":func:`blake2b` and :func:`blake2s` were added." -msgstr "" +msgstr "加入 :func:`blake2b` 和 :func:`blake2s`\\ 。" #: ../../library/hashlib.rst:85 msgid "" @@ -320,7 +320,7 @@ msgstr "" #: ../../library/hashlib.rst:295 msgid "BLAKE2" -msgstr "" +msgstr "BLAKE2" #: ../../library/hashlib.rst:302 msgid "" @@ -404,43 +404,43 @@ msgstr "" #: ../../library/hashlib.rst:355 msgid "digest_size" -msgstr "" +msgstr "digest_size" #: ../../library/hashlib.rst:355 msgid "len(key)" -msgstr "" +msgstr "len(key)" #: ../../library/hashlib.rst:355 msgid "len(salt)" -msgstr "" +msgstr "len(salt)" #: ../../library/hashlib.rst:355 msgid "len(person)" -msgstr "" +msgstr "len(person)" #: ../../library/hashlib.rst:357 msgid "BLAKE2b" -msgstr "" +msgstr "BLAKE2b" #: ../../library/hashlib.rst:357 msgid "64" -msgstr "" +msgstr "64" #: ../../library/hashlib.rst:357 msgid "16" -msgstr "" +msgstr "16" #: ../../library/hashlib.rst:358 msgid "BLAKE2s" -msgstr "" +msgstr "BLAKE2s" #: ../../library/hashlib.rst:358 msgid "32" -msgstr "" +msgstr "32" #: ../../library/hashlib.rst:358 msgid "8" -msgstr "" +msgstr "8" #: ../../library/hashlib.rst:363 msgid "" @@ -512,7 +512,7 @@ msgstr "" #: ../../library/hashlib.rst:402 msgid "Constants" -msgstr "" +msgstr "常數" #: ../../library/hashlib.rst:407 msgid "Salt length (maximum length accepted by constructors)." @@ -533,7 +533,7 @@ msgstr "" #: ../../library/hashlib.rst:429 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/hashlib.rst:432 msgid "Simple hashing" @@ -772,7 +772,7 @@ msgstr "" #: ../../library/hashlib.rst:740 msgid "Module :mod:`hmac`" -msgstr "" +msgstr ":mod:`hmac` 模組" #: ../../library/hashlib.rst:740 msgid "A module to generate message authentication codes using hashes." @@ -780,7 +780,7 @@ msgstr "" #: ../../library/hashlib.rst:743 msgid "Module :mod:`base64`" -msgstr "" +msgstr ":mod:`base64` 模組" #: ../../library/hashlib.rst:743 msgid "Another way to encode binary hashes for non-binary environments." @@ -792,13 +792,15 @@ msgstr "https://blake2.net" #: ../../library/hashlib.rst:746 msgid "Official BLAKE2 website." -msgstr "" +msgstr "BLAKE2 官方網站。" #: ../../library/hashlib.rst:749 msgid "" "https://csrc.nist.gov/csrc/media/publications/fips/180/2/archive/2002-08-01/" "documents/fips180-2.pdf" msgstr "" +"https://csrc.nist.gov/csrc/media/publications/fips/180/2/archive/2002-08-01/" +"documents/fips180-2.pdf" #: ../../library/hashlib.rst:749 msgid "The FIPS 180-2 publication on Secure Hash Algorithms." diff --git a/library/heapq.po b/library/heapq.po index 08128f9333..a0a3d77d20 100644 --- a/library/heapq.po +++ b/library/heapq.po @@ -26,7 +26,7 @@ msgstr ":mod:`heapq` --- 堆積佇列 (heap queue) 演算法" #: ../../library/heapq.rst:12 msgid "**Source code:** :source:`Lib/heapq.py`" -msgstr "**原始碼:** :source:`Lib/heapq.py`" +msgstr "**原始碼:**\\ :source:`Lib/heapq.py`" #: ../../library/heapq.rst:16 msgid "" diff --git a/library/hmac.po b/library/hmac.po index 8d17c686ba..c82895aa12 100644 --- a/library/hmac.po +++ b/library/hmac.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/hmac.rst:10 msgid "**Source code:** :source:`Lib/hmac.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/hmac.py`" #: ../../library/hmac.rst:14 msgid "This module implements the HMAC algorithm as described by :rfc:`2104`." @@ -172,7 +172,7 @@ msgstr "" #: ../../library/hmac.rst:149 msgid "Module :mod:`hashlib`" -msgstr "" +msgstr ":mod:`hashlib` 模組" #: ../../library/hmac.rst:150 msgid "The Python module providing secure hash functions." diff --git a/library/html.entities.po b/library/html.entities.po index 9c1b65db19..276b3a1bf4 100644 --- a/library/html.entities.po +++ b/library/html.entities.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/html.entities.rst:9 msgid "**Source code:** :source:`Lib/html/entities.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/html/entities.py`" #: ../../library/html.entities.rst:13 msgid "" diff --git a/library/html.parser.po b/library/html.parser.po index 12da14c89f..346c1f3610 100644 --- a/library/html.parser.po +++ b/library/html.parser.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/html.parser.rst:7 msgid "**Source code:** :source:`Lib/html/parser.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/html/parser.py`" #: ../../library/html.parser.rst:15 msgid "" @@ -261,7 +261,7 @@ msgstr "" #: ../../library/html.parser.rst:230 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/html.parser.rst:232 msgid "" diff --git a/library/html.po b/library/html.po index 254bae0d6d..d509d377b4 100644 --- a/library/html.po +++ b/library/html.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/html.rst:7 msgid "**Source code:** :source:`Lib/html/__init__.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/html/__init__.py`" #: ../../library/html.rst:11 msgid "This module defines utilities to manipulate HTML." diff --git a/library/http.client.po b/library/http.client.po index ee79c16324..79dc9e6921 100644 --- a/library/http.client.po +++ b/library/http.client.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/http.client.rst:7 msgid "**Source code:** :source:`Lib/http/client.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/http/client.py`" #: ../../library/http.client.rst:17 msgid "" @@ -264,7 +264,7 @@ msgstr "" #: ../../library/http.client.rst:254 msgid "HTTPConnection Objects" -msgstr "" +msgstr "HTTPConnection 物件" #: ../../library/http.client.rst:256 msgid ":class:`HTTPConnection` instances have the following methods:" @@ -483,7 +483,7 @@ msgstr "" #: ../../library/http.client.rst:448 msgid "HTTPResponse Objects" -msgstr "" +msgstr "HTTPResponse 物件" #: ../../library/http.client.rst:450 msgid "" @@ -580,7 +580,7 @@ msgstr "" #: ../../library/http.client.rst:537 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/http.client.rst:539 msgid "Here is an example session that uses the ``GET`` method::" @@ -608,7 +608,7 @@ msgstr "" #: ../../library/http.client.rst:617 msgid "HTTPMessage Objects" -msgstr "" +msgstr "HTTPMessage 物件" #: ../../library/http.client.rst:619 msgid "" diff --git a/library/http.cookiejar.po b/library/http.cookiejar.po index ad1c109ec9..607872ead8 100644 --- a/library/http.cookiejar.po +++ b/library/http.cookiejar.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/http.cookiejar.rst:10 msgid "**Source code:** :source:`Lib/http/cookiejar.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/http/cookiejar.py`" #: ../../library/http.cookiejar.rst:14 msgid "" @@ -148,7 +148,7 @@ msgstr "" #: ../../library/http.cookiejar.rst:118 msgid "Module :mod:`urllib.request`" -msgstr "" +msgstr ":mod:`urllib.request` 模組" #: ../../library/http.cookiejar.rst:118 msgid "URL opening with automatic cookie handling." @@ -156,7 +156,7 @@ msgstr "" #: ../../library/http.cookiejar.rst:123 msgid "Module :mod:`http.cookies`" -msgstr "" +msgstr ":mod:`http.cookies` 模組" #: ../../library/http.cookiejar.rst:121 msgid "" @@ -166,7 +166,7 @@ msgstr "" #: ../../library/http.cookiejar.rst:129 msgid "https://curl.se/rfc/cookie_spec.html" -msgstr "" +msgstr "https://curl.se/rfc/cookie_spec.html" #: ../../library/http.cookiejar.rst:126 msgid "" @@ -196,7 +196,7 @@ msgstr "" #: ../../library/http.cookiejar.rst:139 msgid "http://kristol.org/cookie/errata.html" -msgstr "" +msgstr "http://kristol.org/cookie/errata.html" #: ../../library/http.cookiejar.rst:139 msgid "Unfinished errata to :rfc:`2965`." @@ -208,7 +208,7 @@ msgstr "" #: ../../library/http.cookiejar.rst:146 msgid "CookieJar and FileCookieJar Objects" -msgstr "" +msgstr "CookieJar 與 FileCookieJar 物件" #: ../../library/http.cookiejar.rst:148 msgid "" @@ -471,7 +471,7 @@ msgstr "" #: ../../library/http.cookiejar.rst:355 msgid "CookiePolicy Objects" -msgstr "" +msgstr "CookiePolicy 物件" #: ../../library/http.cookiejar.rst:357 msgid "" @@ -580,7 +580,7 @@ msgstr "" #: ../../library/http.cookiejar.rst:439 msgid "DefaultCookiePolicy Objects" -msgstr "" +msgstr "DefaultCookiePolicy 物件" #: ../../library/http.cookiejar.rst:441 msgid "Implements the standard rules for accepting and returning cookies." @@ -770,11 +770,11 @@ msgstr "" #: ../../library/http.cookiejar.rst:607 msgid "Equivalent to ``DomainStrictNoDots|DomainStrictNonDomain``." -msgstr "" +msgstr "等價於 ``DomainStrictNoDots|DomainStrictNonDomain``\\ 。" #: ../../library/http.cookiejar.rst:611 msgid "Cookie Objects" -msgstr "" +msgstr "Cookie 物件" #: ../../library/http.cookiejar.rst:613 msgid "" @@ -904,7 +904,7 @@ msgstr "" #: ../../library/http.cookiejar.rst:738 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/http.cookiejar.rst:740 msgid "" diff --git a/library/http.cookies.po b/library/http.cookies.po index 8856560094..78d3232070 100644 --- a/library/http.cookies.po +++ b/library/http.cookies.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/http.cookies.rst:10 msgid "**Source code:** :source:`Lib/http/cookies.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/http/cookies.py`" #: ../../library/http.cookies.rst:14 msgid "" @@ -91,7 +91,7 @@ msgstr "" #: ../../library/http.cookies.rst:66 msgid "Module :mod:`http.cookiejar`" -msgstr "" +msgstr ":mod:`http.cookiejar` 模組" #: ../../library/http.cookies.rst:65 msgid "" @@ -109,7 +109,7 @@ msgstr "" #: ../../library/http.cookies.rst:75 msgid "Cookie Objects" -msgstr "" +msgstr "Cookie 物件" #: ../../library/http.cookies.rst:80 msgid "" @@ -159,7 +159,7 @@ msgstr "" #: ../../library/http.cookies.rst:124 msgid "Morsel Objects" -msgstr "" +msgstr "Morsel 物件" #: ../../library/http.cookies.rst:129 msgid "Abstract a key/value pair, which has some :rfc:`2109` attributes." @@ -173,39 +173,39 @@ msgstr "" #: ../../library/http.cookies.rst:134 msgid "``expires``" -msgstr "" +msgstr "``expires``" #: ../../library/http.cookies.rst:135 msgid "``path``" -msgstr "" +msgstr "``path``" #: ../../library/http.cookies.rst:136 msgid "``comment``" -msgstr "" +msgstr "``comment``" #: ../../library/http.cookies.rst:137 msgid "``domain``" -msgstr "" +msgstr "``domain``" #: ../../library/http.cookies.rst:138 msgid "``max-age``" -msgstr "" +msgstr "``max-age``" #: ../../library/http.cookies.rst:139 msgid "``secure``" -msgstr "" +msgstr "``secure``" #: ../../library/http.cookies.rst:140 msgid "``version``" -msgstr "" +msgstr "``version``" #: ../../library/http.cookies.rst:141 msgid "``httponly``" -msgstr "" +msgstr "``httponly``" #: ../../library/http.cookies.rst:142 msgid "``samesite``" -msgstr "" +msgstr "``samesite``" #: ../../library/http.cookies.rst:144 msgid "" @@ -308,7 +308,7 @@ msgstr "" #: ../../library/http.cookies.rst:243 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/http.cookies.rst:245 msgid "" diff --git a/library/http.po b/library/http.po index fba170aec2..0f444a071c 100644 --- a/library/http.po +++ b/library/http.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/http.rst:7 msgid "**Source code:** :source:`Lib/http/__init__.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/http/__init__.py`" #: ../../library/http.rst:15 msgid "" @@ -69,6 +69,9 @@ msgstr "" #: ../../library/http.rst:34 msgid "Usage::" msgstr "" +"用法:\n" +"\n" +"::" #: ../../library/http.rst:53 msgid "HTTP status codes" @@ -183,7 +186,7 @@ msgstr "``203``" #: ../../library/http.rst:69 msgid "``NON_AUTHORITATIVE_INFORMATION``" -msgstr "" +msgstr "``NON_AUTHORITATIVE_INFORMATION``" #: ../../library/http.rst:69 msgid "HTTP/1.1 :rfc:`7231`, Section 6.3.4" @@ -663,7 +666,7 @@ msgstr "``428``" #: ../../library/http.rst:109 msgid "``PRECONDITION_REQUIRED``" -msgstr "" +msgstr "``PRECONDITION_REQUIRED``" #: ../../library/http.rst:109 ../../library/http.rst:110 #: ../../library/http.rst:111 diff --git a/library/http.server.po b/library/http.server.po index ee7f71e408..4b2072a5b1 100644 --- a/library/http.server.po +++ b/library/http.server.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/http.server.rst:7 msgid "**Source code:** :source:`Lib/http/server.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/http/server.py`" #: ../../library/http.server.rst:17 msgid "This module defines classes for implementing HTTP servers." @@ -158,7 +158,7 @@ msgstr "" #: ../../library/http.server.rst:132 msgid ":class:`BaseHTTPRequestHandler` has the following attributes:" -msgstr "" +msgstr ":class:`BaseHTTPRequestHandler` 擁有以下屬性:" #: ../../library/http.server.rst:136 msgid "" diff --git a/library/idle.po b/library/idle.po index fd7c778e10..bc6832c3c7 100644 --- a/library/idle.po +++ b/library/idle.po @@ -20,11 +20,11 @@ msgstr "" #: ../../library/idle.rst:4 msgid "IDLE" -msgstr "" +msgstr "IDLE" #: ../../library/idle.rst:8 msgid "**Source code:** :source:`Lib/idlelib/`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/idlelib/`" #: ../../library/idle.rst:17 msgid "IDLE is Python's Integrated Development and Learning Environment." @@ -72,7 +72,7 @@ msgstr "" #: ../../library/idle.rst:40 msgid "Menus" -msgstr "" +msgstr "目錄" #: ../../library/idle.rst:42 msgid "" @@ -102,7 +102,7 @@ msgstr "" #: ../../library/idle.rst:59 msgid "New File" -msgstr "" +msgstr "新增檔案" #: ../../library/idle.rst:59 msgid "Create a new file editing window." @@ -194,7 +194,7 @@ msgstr "" #: ../../library/idle.rst:100 msgid "Close" -msgstr "" +msgstr "關閉" #: ../../library/idle.rst:100 msgid "Close the current window (ask to save if unsaved)." @@ -202,7 +202,7 @@ msgstr "" #: ../../library/idle.rst:103 msgid "Exit" -msgstr "" +msgstr "離開" #: ../../library/idle.rst:103 msgid "Close all windows and quit IDLE (ask to save unsaved windows)." @@ -232,7 +232,7 @@ msgstr "" #: ../../library/idle.rst:116 ../../library/idle.rst:365 msgid "Cut" -msgstr "" +msgstr "剪下" #: ../../library/idle.rst:116 ../../library/idle.rst:365 msgid "" @@ -241,7 +241,7 @@ msgstr "" #: ../../library/idle.rst:119 ../../library/idle.rst:368 msgid "Copy" -msgstr "" +msgstr "複製" #: ../../library/idle.rst:119 ../../library/idle.rst:368 msgid "Copy selection into the system-wide clipboard." @@ -249,7 +249,7 @@ msgstr "" #: ../../library/idle.rst:122 ../../library/idle.rst:371 msgid "Paste" -msgstr "" +msgstr "貼上" #: ../../library/idle.rst:122 ../../library/idle.rst:371 msgid "Insert contents of the system-wide clipboard into the current window." @@ -261,7 +261,7 @@ msgstr "" #: ../../library/idle.rst:127 msgid "Select All" -msgstr "" +msgstr "選擇全部" #: ../../library/idle.rst:127 msgid "Select the entire contents of the current window." diff --git a/library/imaplib.po b/library/imaplib.po index bcd4456e5a..2c7d639540 100644 --- a/library/imaplib.po +++ b/library/imaplib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/imaplib.rst:14 msgid "**Source code:** :source:`Lib/imaplib.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/imaplib.py`" #: ../../library/imaplib.rst:23 msgid "" @@ -208,7 +208,7 @@ msgstr "" #: ../../library/imaplib.rst:185 msgid "IMAP4 Objects" -msgstr "" +msgstr "IMAP4 物件" #: ../../library/imaplib.rst:187 msgid "" @@ -478,6 +478,9 @@ msgstr "" #: ../../library/imaplib.rst:432 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/imaplib.rst:443 msgid "" @@ -668,7 +671,7 @@ msgstr "" #: ../../library/imaplib.rst:626 msgid "IMAP4 Example" -msgstr "" +msgstr "IMAP4 範例" #: ../../library/imaplib.rst:628 msgid "" diff --git a/library/imghdr.po b/library/imghdr.po index a5215e8cba..6f27eed9d5 100644 --- a/library/imghdr.po +++ b/library/imghdr.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/imghdr.rst:7 msgid "**Source code:** :source:`Lib/imghdr.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/imghdr.py`" #: ../../library/imghdr.rst:11 msgid "" @@ -191,3 +191,6 @@ msgstr "" #: ../../library/imghdr.rst:76 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" diff --git a/library/imp.po b/library/imp.po index 9ff2acb9b6..c4d9722141 100644 --- a/library/imp.po +++ b/library/imp.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/imp.rst:8 msgid "**Source code:** :source:`Lib/imp.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/imp.py`" #: ../../library/imp.rst:10 msgid "The :mod:`imp` module is deprecated in favor of :mod:`importlib`." @@ -450,7 +450,7 @@ msgstr "" #: ../../library/imp.rst:384 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/imp.rst:386 msgid "" diff --git a/library/importlib.metadata.po b/library/importlib.metadata.po index 6e332da8b9..373ec262ca 100644 --- a/library/importlib.metadata.po +++ b/library/importlib.metadata.po @@ -27,7 +27,7 @@ msgstr "" #: ../../library/importlib.metadata.rst:14 msgid "**Source code:** :source:`Lib/importlib/metadata/__init__.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/importlib/metadata/__init__.py`" #: ../../library/importlib.metadata.rst:16 msgid "" @@ -341,4 +341,4 @@ msgstr "" #: ../../library/importlib.metadata.rst:340 msgid "Footnotes" -msgstr "" +msgstr "註解" diff --git a/library/importlib.po b/library/importlib.po index 9038b42403..f08a7fe40d 100644 --- a/library/importlib.po +++ b/library/importlib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/importlib.rst:12 msgid "**Source code:** :source:`Lib/importlib/__init__.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/importlib/__init__.py`" #: ../../library/importlib.rst:17 msgid "Introduction" @@ -350,7 +350,7 @@ msgstr "" #: ../../library/importlib.rst:220 msgid "**Source code:** :source:`Lib/importlib/abc.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/importlib/abc.py`" #: ../../library/importlib.rst:225 msgid "" @@ -546,7 +546,7 @@ msgstr "" #: ../../library/importlib.rst:413 msgid ":meth:`~importlib.abc.Loader.create_module` must also be defined." -msgstr "" +msgstr ":meth:`~importlib.abc.Loader.create_module` 也必須被定義。" #: ../../library/importlib.rst:418 msgid "" @@ -1096,7 +1096,7 @@ msgstr "" #: ../../library/importlib.rst:879 msgid "**Source code:** :source:`Lib/importlib/resources.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/importlib/resources.py`" #: ../../library/importlib.rst:885 msgid "" @@ -1294,7 +1294,7 @@ msgstr "" #: ../../library/importlib.rst:1050 msgid "**Source code:** :source:`Lib/importlib/machinery.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/importlib/machinery.py`" #: ../../library/importlib.rst:1054 msgid "" @@ -1634,7 +1634,7 @@ msgstr "" #: ../../library/importlib.rst:1412 msgid "(``__name__``)" -msgstr "" +msgstr "(``__name__``)" #: ../../library/importlib.rst:1414 msgid "A string for the fully-qualified name of the module." @@ -1642,7 +1642,7 @@ msgstr "" #: ../../library/importlib.rst:1418 msgid "(``__loader__``)" -msgstr "" +msgstr "(``__loader__``)" #: ../../library/importlib.rst:1420 msgid "" @@ -1652,7 +1652,7 @@ msgstr "" #: ../../library/importlib.rst:1425 msgid "(``__file__``)" -msgstr "" +msgstr "(``__file__``)" #: ../../library/importlib.rst:1427 msgid "" @@ -1664,7 +1664,7 @@ msgstr "" #: ../../library/importlib.rst:1434 msgid "(``__path__``)" -msgstr "" +msgstr "(``__path__``)" #: ../../library/importlib.rst:1436 msgid "" @@ -1679,7 +1679,7 @@ msgstr "" #: ../../library/importlib.rst:1446 msgid "(``__cached__``)" -msgstr "" +msgstr "(``__cached__``)" #: ../../library/importlib.rst:1448 msgid "String for where the compiled module should be stored (or ``None``)." @@ -1687,7 +1687,7 @@ msgstr "" #: ../../library/importlib.rst:1452 msgid "(``__package__``)" -msgstr "" +msgstr "(``__package__``)" #: ../../library/importlib.rst:1454 msgid "" @@ -1708,7 +1708,7 @@ msgstr "" #: ../../library/importlib.rst:1470 msgid "**Source code:** :source:`Lib/importlib/util.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/importlib/util.py`" #: ../../library/importlib.rst:1474 msgid "" @@ -1994,7 +1994,7 @@ msgstr "" #: ../../library/importlib.rst:1735 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/importlib.rst:1738 msgid "Importing programmatically" diff --git a/library/inspect.po b/library/inspect.po index 1f370e2387..c9caf8a921 100644 --- a/library/inspect.po +++ b/library/inspect.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/inspect.rst:10 msgid "**Source code:** :source:`Lib/inspect.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/inspect.py`" #: ../../library/inspect.rst:14 msgid "" @@ -62,7 +62,7 @@ msgstr "" #: ../../library/inspect.rst:41 msgid "Attribute" -msgstr "" +msgstr "屬性" #: ../../library/inspect.rst:41 msgid "Description" @@ -70,7 +70,7 @@ msgstr "描述" #: ../../library/inspect.rst:43 msgid "module" -msgstr "" +msgstr "模組" #: ../../library/inspect.rst:43 ../../library/inspect.rst:48 #: ../../library/inspect.rst:58 ../../library/inspect.rst:76 @@ -157,7 +157,7 @@ msgstr "" #: ../../library/inspect.rst:76 msgid "function" -msgstr "" +msgstr "函式" #: ../../library/inspect.rst:78 msgid "name with which this function was defined" @@ -1048,15 +1048,15 @@ msgstr "" #: ../../library/inspect.rst:758 msgid "Name" -msgstr "" +msgstr "名稱" #: ../../library/inspect.rst:758 msgid "Meaning" -msgstr "" +msgstr "意義" #: ../../library/inspect.rst:760 msgid "*POSITIONAL_ONLY*" -msgstr "" +msgstr "*POSITIONAL_ONLY*" #: ../../library/inspect.rst:760 msgid "" @@ -1067,7 +1067,7 @@ msgstr "" #: ../../library/inspect.rst:765 msgid "*POSITIONAL_OR_KEYWORD*" -msgstr "" +msgstr "*POSITIONAL_OR_KEYWORD*" #: ../../library/inspect.rst:765 msgid "" @@ -1077,7 +1077,7 @@ msgstr "" #: ../../library/inspect.rst:770 msgid "*VAR_POSITIONAL*" -msgstr "" +msgstr "*VAR_POSITIONAL*" #: ../../library/inspect.rst:770 msgid "" @@ -1087,7 +1087,7 @@ msgstr "" #: ../../library/inspect.rst:775 msgid "*KEYWORD_ONLY*" -msgstr "" +msgstr "*KEYWORD_ONLY*" #: ../../library/inspect.rst:775 msgid "" @@ -1098,7 +1098,7 @@ msgstr "" #: ../../library/inspect.rst:780 msgid "*VAR_KEYWORD*" -msgstr "" +msgstr "*VAR_KEYWORD*" #: ../../library/inspect.rst:780 msgid "" diff --git a/library/io.po b/library/io.po index 5d85a5e74d..ac8d3ebe13 100644 --- a/library/io.po +++ b/library/io.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/io.rst:15 msgid "**Source code:** :source:`Lib/io.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/io.py`" #: ../../library/io.rst:22 msgid "Overview" @@ -300,7 +300,7 @@ msgstr "" #: ../../library/io.rst:237 msgid ":mod:`sys`" -msgstr "" +msgstr ":mod:`sys`" #: ../../library/io.rst:237 msgid "" @@ -377,7 +377,7 @@ msgstr "" #: ../../library/io.rst:287 msgid "ABC" -msgstr "" +msgstr "ABC" #: ../../library/io.rst:287 msgid "Inherits" @@ -398,7 +398,7 @@ msgstr ":class:`IOBase`" #: ../../library/io.rst:289 msgid "``fileno``, ``seek``, and ``truncate``" -msgstr "" +msgstr "``fileno``\\ 、\\ ``seek`` 和 ``truncate``" #: ../../library/io.rst:289 msgid "" @@ -413,7 +413,7 @@ msgstr ":class:`RawIOBase`" #: ../../library/io.rst:294 msgid "``readinto`` and ``write``" -msgstr "" +msgstr "``readinto`` 和 ``write``" #: ../../library/io.rst:294 msgid "Inherited :class:`IOBase` methods, ``read``, and ``readall``" @@ -425,7 +425,7 @@ msgstr ":class:`BufferedIOBase`" #: ../../library/io.rst:296 msgid "``detach``, ``read``, ``read1``, and ``write``" -msgstr "" +msgstr "``detach``\\ 、\\ ``read``\\ 、\\ ``read1`` 和 ``write``" #: ../../library/io.rst:296 msgid "Inherited :class:`IOBase` methods, ``readinto``, and ``readinto1``" @@ -437,7 +437,7 @@ msgstr ":class:`TextIOBase`" #: ../../library/io.rst:298 msgid "``detach``, ``read``, ``readline``, and ``write``" -msgstr "" +msgstr "``detach``\\ 、\\ ``read``\\ 、\\ ``readline`` 和 ``write``" #: ../../library/io.rst:298 msgid "" @@ -1444,6 +1444,9 @@ msgstr "" #: ../../library/io.rst:1067 msgid "Example usage::" msgstr "" +"使用範例:\n" +"\n" +"::" #: ../../library/io.rst:1089 msgid "" diff --git a/library/ipaddress.po b/library/ipaddress.po index af379b6744..0647527b27 100644 --- a/library/ipaddress.po +++ b/library/ipaddress.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/ipaddress.rst:9 msgid "**Source code:** :source:`Lib/ipaddress.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/ipaddress.py`" #: ../../library/ipaddress.rst:13 msgid "" @@ -326,7 +326,7 @@ msgstr "" #: ../../library/ipaddress.rst:310 msgid "is_global" -msgstr "" +msgstr "is_global" #: ../../library/ipaddress.rst:315 msgid "" diff --git a/library/itertools.po b/library/itertools.po index bf70c07882..5cac9d2ccd 100644 --- a/library/itertools.po +++ b/library/itertools.po @@ -64,16 +64,16 @@ msgstr "" #: ../../library/itertools.rst:38 ../../library/itertools.rst:48 #: ../../library/itertools.rst:68 msgid "Arguments" -msgstr "" +msgstr "引數" #: ../../library/itertools.rst:38 ../../library/itertools.rst:48 #: ../../library/itertools.rst:68 ../../library/itertools.rst:77 msgid "Results" -msgstr "" +msgstr "結果" #: ../../library/itertools.rst:38 ../../library/itertools.rst:48 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/itertools.rst:40 msgid ":func:`count`" @@ -432,6 +432,9 @@ msgstr "" #: ../../library/itertools.rst:649 msgid "Roughly equivalent to::" msgstr "" +"大致等價於:\n" +"\n" +"::" #: ../../library/itertools.rst:132 msgid "" @@ -612,6 +615,9 @@ msgstr "" #: ../../library/itertools.rst:408 msgid ":func:`groupby` is roughly equivalent to::" msgstr "" +":func:`groupby` 大致等價於:\n" +"\n" +"::" #: ../../library/itertools.rst:441 msgid "" diff --git a/library/json.po b/library/json.po index 2916629cbf..1d3c6814c5 100644 --- a/library/json.po +++ b/library/json.po @@ -25,7 +25,7 @@ msgstr "" #: ../../library/json.rst:10 msgid "**Source code:** :source:`Lib/json/__init__.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/json/__init__.py`" #: ../../library/json.rst:14 msgid "" @@ -331,39 +331,39 @@ msgstr "" #: ../../library/json.rst:311 ../../library/json.rst:400 msgid "JSON" -msgstr "" +msgstr "JSON" #: ../../library/json.rst:311 ../../library/json.rst:400 msgid "Python" -msgstr "" +msgstr "Python" #: ../../library/json.rst:313 ../../library/json.rst:402 msgid "object" -msgstr "" +msgstr "object" #: ../../library/json.rst:313 ../../library/json.rst:402 msgid "dict" -msgstr "" +msgstr "dict" #: ../../library/json.rst:315 ../../library/json.rst:404 msgid "array" -msgstr "" +msgstr "array" #: ../../library/json.rst:315 msgid "list" -msgstr "" +msgstr "list" #: ../../library/json.rst:317 ../../library/json.rst:406 msgid "string" -msgstr "" +msgstr "string" #: ../../library/json.rst:317 ../../library/json.rst:406 msgid "str" -msgstr "" +msgstr "str" #: ../../library/json.rst:319 msgid "number (int)" -msgstr "" +msgstr "number (int)" #: ../../library/json.rst:319 msgid "int" @@ -757,7 +757,7 @@ msgstr "" #: ../../library/json.rst:674 msgid "**Source code:** :source:`Lib/json/tool.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/json/tool.py`" #: ../../library/json.rst:678 msgid "" diff --git a/library/keyword.po b/library/keyword.po index bc76095306..5c82b6d7b8 100644 --- a/library/keyword.po +++ b/library/keyword.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/keyword.rst:7 msgid "**Source code:** :source:`Lib/keyword.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/keyword.py`" #: ../../library/keyword.rst:11 msgid "" diff --git a/library/linecache.po b/library/linecache.po index df14eddf03..5f0337e199 100644 --- a/library/linecache.po +++ b/library/linecache.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/linecache.rst:9 msgid "**Source code:** :source:`Lib/linecache.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/linecache.py`" #: ../../library/linecache.rst:13 msgid "" @@ -87,3 +87,6 @@ msgstr "" #: ../../library/linecache.rst:63 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" diff --git a/library/locale.po b/library/locale.po index 8d4a00cbe6..f8792e7c5a 100644 --- a/library/locale.po +++ b/library/locale.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/locale.rst:10 msgid "**Source code:** :source:`Lib/locale.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/locale.py`" #: ../../library/locale.rst:14 msgid "" @@ -102,11 +102,11 @@ msgstr "" #: ../../library/locale.rst:67 msgid ":const:`LC_NUMERIC`" -msgstr "" +msgstr ":const:`LC_NUMERIC`" #: ../../library/locale.rst:67 msgid "``'decimal_point'``" -msgstr "" +msgstr "``'decimal_point'``" #: ../../library/locale.rst:67 msgid "Decimal point character." @@ -114,7 +114,7 @@ msgstr "" #: ../../library/locale.rst:69 msgid "``'grouping'``" -msgstr "" +msgstr "``'grouping'``" #: ../../library/locale.rst:69 msgid "" @@ -126,7 +126,7 @@ msgstr "" #: ../../library/locale.rst:80 msgid "``'thousands_sep'``" -msgstr "" +msgstr "``'thousands_sep'``" #: ../../library/locale.rst:80 msgid "Character used between groups." @@ -134,11 +134,11 @@ msgstr "" #: ../../library/locale.rst:82 msgid ":const:`LC_MONETARY`" -msgstr "" +msgstr ":const:`LC_MONETARY`" #: ../../library/locale.rst:82 msgid "``'int_curr_symbol'``" -msgstr "" +msgstr "``'int_curr_symbol'``" #: ../../library/locale.rst:82 msgid "International currency symbol." @@ -146,7 +146,7 @@ msgstr "" #: ../../library/locale.rst:84 msgid "``'currency_symbol'``" -msgstr "" +msgstr "``'currency_symbol'``" #: ../../library/locale.rst:84 msgid "Local currency symbol." @@ -154,7 +154,7 @@ msgstr "" #: ../../library/locale.rst:86 msgid "``'p_cs_precedes/n_cs_precedes'``" -msgstr "" +msgstr "``'p_cs_precedes/n_cs_precedes'``" #: ../../library/locale.rst:86 msgid "" @@ -164,7 +164,7 @@ msgstr "" #: ../../library/locale.rst:91 msgid "``'p_sep_by_space/n_sep_by_space'``" -msgstr "" +msgstr "``'p_sep_by_space/n_sep_by_space'``" #: ../../library/locale.rst:91 msgid "" @@ -174,7 +174,7 @@ msgstr "" #: ../../library/locale.rst:96 msgid "``'mon_decimal_point'``" -msgstr "" +msgstr "``'mon_decimal_point'``" #: ../../library/locale.rst:96 msgid "Decimal point used for monetary values." @@ -182,7 +182,7 @@ msgstr "" #: ../../library/locale.rst:99 msgid "``'frac_digits'``" -msgstr "" +msgstr "``'frac_digits'``" #: ../../library/locale.rst:99 msgid "" @@ -191,7 +191,7 @@ msgstr "" #: ../../library/locale.rst:103 msgid "``'int_frac_digits'``" -msgstr "" +msgstr "``'int_frac_digits'``" #: ../../library/locale.rst:103 msgid "" @@ -201,7 +201,7 @@ msgstr "" #: ../../library/locale.rst:107 msgid "``'mon_thousands_sep'``" -msgstr "" +msgstr "``'mon_thousands_sep'``" #: ../../library/locale.rst:107 msgid "Group separator used for monetary values." @@ -209,7 +209,7 @@ msgstr "" #: ../../library/locale.rst:110 msgid "``'mon_grouping'``" -msgstr "" +msgstr "``'mon_grouping'``" #: ../../library/locale.rst:110 msgid "Equivalent to ``'grouping'``, used for monetary values." @@ -217,7 +217,7 @@ msgstr "" #: ../../library/locale.rst:113 msgid "``'positive_sign'``" -msgstr "" +msgstr "``'positive_sign'``" #: ../../library/locale.rst:113 msgid "Symbol used to annotate a positive monetary value." @@ -225,7 +225,7 @@ msgstr "" #: ../../library/locale.rst:116 msgid "``'negative_sign'``" -msgstr "" +msgstr "``'negative_sign'``" #: ../../library/locale.rst:116 msgid "Symbol used to annotate a negative monetary value." @@ -233,7 +233,7 @@ msgstr "" #: ../../library/locale.rst:119 msgid "``'p_sign_posn/n_sign_posn'``" -msgstr "" +msgstr "``'p_sign_posn/n_sign_posn'``" #: ../../library/locale.rst:119 msgid "" @@ -262,7 +262,7 @@ msgstr "" #: ../../library/locale.rst:132 msgid "``0``" -msgstr "" +msgstr "``0``" #: ../../library/locale.rst:132 msgid "Currency and value are surrounded by parentheses." @@ -270,7 +270,7 @@ msgstr "" #: ../../library/locale.rst:135 msgid "``1``" -msgstr "" +msgstr "``1``" #: ../../library/locale.rst:135 msgid "The sign should precede the value and currency symbol." @@ -278,7 +278,7 @@ msgstr "" #: ../../library/locale.rst:138 msgid "``2``" -msgstr "" +msgstr "``2``" #: ../../library/locale.rst:138 msgid "The sign should follow the value and currency symbol." @@ -286,7 +286,7 @@ msgstr "" #: ../../library/locale.rst:141 msgid "``3``" -msgstr "" +msgstr "``3``" #: ../../library/locale.rst:141 msgid "The sign should immediately precede the value." @@ -294,7 +294,7 @@ msgstr "" #: ../../library/locale.rst:144 msgid "``4``" -msgstr "" +msgstr "``4``" #: ../../library/locale.rst:144 msgid "The sign should immediately follow the value." @@ -302,7 +302,7 @@ msgstr "" #: ../../library/locale.rst:147 msgid "``CHAR_MAX``" -msgstr "" +msgstr "``CHAR_MAX``" #: ../../library/locale.rst:147 msgid "Nothing is specified in this locale." @@ -727,6 +727,9 @@ msgstr "" #: ../../library/locale.rst:507 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/locale.rst:520 msgid "Background, details, hints, tips and caveats" diff --git a/library/logging.config.po b/library/logging.config.po index 16493440fb..bf161fe097 100644 --- a/library/logging.config.po +++ b/library/logging.config.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/logging.config.rst:10 msgid "**Source code:** :source:`Lib/logging/config.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/logging/config.py`" #: ../../library/logging.config.rst:14 msgid "" @@ -33,11 +33,11 @@ msgstr "" #: ../../library/logging.config.rst:17 msgid ":ref:`Basic Tutorial `" -msgstr "" +msgstr ":ref:`基礎教學 `" #: ../../library/logging.config.rst:18 msgid ":ref:`Advanced Tutorial `" -msgstr "" +msgstr ":ref:`進階教學 `" #: ../../library/logging.config.rst:19 msgid ":ref:`Logging Cookbook `" @@ -139,7 +139,7 @@ msgstr "" #: ../../library/logging.config.rst:0 msgid "Parameters" -msgstr "" +msgstr "參數" #: ../../library/logging.config.rst:90 msgid "" @@ -616,6 +616,9 @@ msgstr "" #: ../../library/logging.config.rst:476 msgid "and::" msgstr "" +"和:\n" +"\n" +"::" #: ../../library/logging.config.rst:483 msgid "" @@ -900,7 +903,7 @@ msgstr "" #: ../../library/logging.config.rst:831 msgid "Module :mod:`logging`" -msgstr "" +msgstr ":mod:`logging` 模組" #: ../../library/logging.config.rst:831 msgid "API reference for the logging module." @@ -908,7 +911,7 @@ msgstr "" #: ../../library/logging.config.rst:833 msgid "Module :mod:`logging.handlers`" -msgstr "" +msgstr ":mod:`logging.handlers` 模組" #: ../../library/logging.config.rst:834 msgid "Useful handlers included with the logging module." diff --git a/library/logging.handlers.po b/library/logging.handlers.po index 1f49e90b64..2278a5b250 100644 --- a/library/logging.handlers.po +++ b/library/logging.handlers.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/logging.handlers.rst:10 msgid "**Source code:** :source:`Lib/logging/handlers.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/logging/handlers.py`" #: ../../library/logging.handlers.rst:14 msgid "" @@ -33,11 +33,11 @@ msgstr "" #: ../../library/logging.handlers.rst:17 msgid ":ref:`Basic Tutorial `" -msgstr "" +msgstr ":ref:`基礎教學 `" #: ../../library/logging.handlers.rst:18 msgid ":ref:`Advanced Tutorial `" -msgstr "" +msgstr ":ref:`進階教學 `" #: ../../library/logging.handlers.rst:19 msgid ":ref:`Logging Cookbook `" @@ -53,7 +53,7 @@ msgstr "" #: ../../library/logging.handlers.rst:33 msgid "StreamHandler" -msgstr "" +msgstr "StreamHandler" #: ../../library/logging.handlers.rst:35 msgid "" @@ -125,7 +125,7 @@ msgstr "" #: ../../library/logging.handlers.rst:89 msgid "FileHandler" -msgstr "" +msgstr "FileHandler" #: ../../library/logging.handlers.rst:91 msgid "" @@ -171,7 +171,7 @@ msgstr "" #: ../../library/logging.handlers.rst:124 msgid "NullHandler" -msgstr "" +msgstr "NullHandler" #: ../../library/logging.handlers.rst:128 msgid "" @@ -203,7 +203,7 @@ msgstr "" #: ../../library/logging.handlers.rst:156 msgid "WatchedFileHandler" -msgstr "" +msgstr "WatchedFileHandler" #: ../../library/logging.handlers.rst:160 msgid "" @@ -258,7 +258,7 @@ msgstr "" #: ../../library/logging.handlers.rst:211 msgid "BaseRotatingHandler" -msgstr "" +msgstr "BaseRotatingHandler" #: ../../library/logging.handlers.rst:213 msgid "" @@ -359,7 +359,7 @@ msgstr "" #: ../../library/logging.handlers.rst:292 msgid "RotatingFileHandler" -msgstr "" +msgstr "RotatingFileHandler" #: ../../library/logging.handlers.rst:294 msgid "" @@ -409,7 +409,7 @@ msgstr "" #: ../../library/logging.handlers.rst:342 msgid "TimedRotatingFileHandler" -msgstr "" +msgstr "TimedRotatingFileHandler" #: ../../library/logging.handlers.rst:344 msgid "" @@ -446,7 +446,7 @@ msgstr "" #: ../../library/logging.handlers.rst:362 msgid "``'S'``" -msgstr "" +msgstr "``'S'``" #: ../../library/logging.handlers.rst:362 msgid "Seconds" @@ -461,7 +461,7 @@ msgstr "" #: ../../library/logging.handlers.rst:364 msgid "``'M'``" -msgstr "" +msgstr "``'M'``" #: ../../library/logging.handlers.rst:364 msgid "Minutes" @@ -477,7 +477,7 @@ msgstr "" #: ../../library/logging.handlers.rst:368 msgid "``'D'``" -msgstr "" +msgstr "``'D'``" #: ../../library/logging.handlers.rst:368 msgid "Days" @@ -485,7 +485,7 @@ msgstr "" #: ../../library/logging.handlers.rst:370 msgid "``'W0'-'W6'``" -msgstr "" +msgstr "``'W0'-'W6'``" #: ../../library/logging.handlers.rst:370 msgid "Weekday (0=Monday)" @@ -498,7 +498,7 @@ msgstr "" #: ../../library/logging.handlers.rst:373 msgid "``'midnight'``" -msgstr "" +msgstr "``'midnight'``" #: ../../library/logging.handlers.rst:373 msgid "Roll over at midnight, if *atTime* not specified, else at time *atTime*" @@ -587,7 +587,7 @@ msgstr "" #: ../../library/logging.handlers.rst:447 msgid "SocketHandler" -msgstr "" +msgstr "SocketHandler" #: ../../library/logging.handlers.rst:449 msgid "" @@ -702,7 +702,7 @@ msgstr "" #: ../../library/logging.handlers.rst:543 msgid "DatagramHandler" -msgstr "" +msgstr "DatagramHandler" #: ../../library/logging.handlers.rst:545 msgid "" @@ -746,7 +746,7 @@ msgstr "" #: ../../library/logging.handlers.rst:583 msgid "SysLogHandler" -msgstr "" +msgstr "SysLogHandler" #: ../../library/logging.handlers.rst:585 msgid "" @@ -855,67 +855,67 @@ msgstr "" #: ../../library/logging.handlers.rst:665 msgid "``alert``" -msgstr "" +msgstr "``alert``" #: ../../library/logging.handlers.rst:665 msgid "LOG_ALERT" -msgstr "" +msgstr "LOG_ALERT" #: ../../library/logging.handlers.rst:667 msgid "``crit`` or ``critical``" -msgstr "" +msgstr "``crit`` 或 ``critical``" #: ../../library/logging.handlers.rst:667 msgid "LOG_CRIT" -msgstr "" +msgstr "LOG_CRIT" #: ../../library/logging.handlers.rst:669 msgid "``debug``" -msgstr "" +msgstr "``debug``" #: ../../library/logging.handlers.rst:669 msgid "LOG_DEBUG" -msgstr "" +msgstr "LOG_DEBUG" #: ../../library/logging.handlers.rst:671 msgid "``emerg`` or ``panic``" -msgstr "" +msgstr "``emerg`` 或 ``panic``" #: ../../library/logging.handlers.rst:671 msgid "LOG_EMERG" -msgstr "" +msgstr "LOG_EMERG" #: ../../library/logging.handlers.rst:673 msgid "``err`` or ``error``" -msgstr "" +msgstr "``err`` 或 ``error``" #: ../../library/logging.handlers.rst:673 msgid "LOG_ERR" -msgstr "" +msgstr "LOG_ERR" #: ../../library/logging.handlers.rst:675 msgid "``info``" -msgstr "" +msgstr "``info``" #: ../../library/logging.handlers.rst:675 msgid "LOG_INFO" -msgstr "" +msgstr "LOG_INFO" #: ../../library/logging.handlers.rst:677 msgid "``notice``" -msgstr "" +msgstr "``notice``" #: ../../library/logging.handlers.rst:677 msgid "LOG_NOTICE" -msgstr "" +msgstr "LOG_NOTICE" #: ../../library/logging.handlers.rst:679 msgid "``warn`` or ``warning``" -msgstr "" +msgstr "``warn`` 或 ``warning``" #: ../../library/logging.handlers.rst:679 msgid "LOG_WARNING" -msgstr "" +msgstr "LOG_WARNING" #: ../../library/logging.handlers.rst:682 msgid "**Facilities**" @@ -923,163 +923,163 @@ msgstr "" #: ../../library/logging.handlers.rst:687 msgid "``auth``" -msgstr "" +msgstr "``auth``" #: ../../library/logging.handlers.rst:687 msgid "LOG_AUTH" -msgstr "" +msgstr "LOG_AUTH" #: ../../library/logging.handlers.rst:689 msgid "``authpriv``" -msgstr "" +msgstr "``authpriv``" #: ../../library/logging.handlers.rst:689 msgid "LOG_AUTHPRIV" -msgstr "" +msgstr "LOG_AUTHPRIV" #: ../../library/logging.handlers.rst:691 msgid "``cron``" -msgstr "" +msgstr "``cron``" #: ../../library/logging.handlers.rst:691 msgid "LOG_CRON" -msgstr "" +msgstr "LOG_CRON" #: ../../library/logging.handlers.rst:693 msgid "``daemon``" -msgstr "" +msgstr "``daemon``" #: ../../library/logging.handlers.rst:693 msgid "LOG_DAEMON" -msgstr "" +msgstr "LOG_DAEMON" #: ../../library/logging.handlers.rst:695 msgid "``ftp``" -msgstr "" +msgstr "``ftp``" #: ../../library/logging.handlers.rst:695 msgid "LOG_FTP" -msgstr "" +msgstr "LOG_FTP" #: ../../library/logging.handlers.rst:697 msgid "``kern``" -msgstr "" +msgstr "``kern``" #: ../../library/logging.handlers.rst:697 msgid "LOG_KERN" -msgstr "" +msgstr "LOG_KERN" #: ../../library/logging.handlers.rst:699 msgid "``lpr``" -msgstr "" +msgstr "``lpr``" #: ../../library/logging.handlers.rst:699 msgid "LOG_LPR" -msgstr "" +msgstr "LOG_LPR" #: ../../library/logging.handlers.rst:701 msgid "``mail``" -msgstr "" +msgstr "``mail``" #: ../../library/logging.handlers.rst:701 msgid "LOG_MAIL" -msgstr "" +msgstr "LOG_MAIL" #: ../../library/logging.handlers.rst:703 msgid "``news``" -msgstr "" +msgstr "``news``" #: ../../library/logging.handlers.rst:703 msgid "LOG_NEWS" -msgstr "" +msgstr "LOG_NEWS" #: ../../library/logging.handlers.rst:705 msgid "``syslog``" -msgstr "" +msgstr "``syslog``" #: ../../library/logging.handlers.rst:705 msgid "LOG_SYSLOG" -msgstr "" +msgstr "LOG_SYSLOG" #: ../../library/logging.handlers.rst:707 msgid "``user``" -msgstr "" +msgstr "``user``" #: ../../library/logging.handlers.rst:707 msgid "LOG_USER" -msgstr "" +msgstr "LOG_USER" #: ../../library/logging.handlers.rst:709 msgid "``uucp``" -msgstr "" +msgstr "``uucp``" #: ../../library/logging.handlers.rst:709 msgid "LOG_UUCP" -msgstr "" +msgstr "LOG_UUCP" #: ../../library/logging.handlers.rst:711 msgid "``local0``" -msgstr "" +msgstr "``local0``" #: ../../library/logging.handlers.rst:711 msgid "LOG_LOCAL0" -msgstr "" +msgstr "LOG_LOCAL0" #: ../../library/logging.handlers.rst:713 msgid "``local1``" -msgstr "" +msgstr "``local1``" #: ../../library/logging.handlers.rst:713 msgid "LOG_LOCAL1" -msgstr "" +msgstr "LOG_LOCAL1" #: ../../library/logging.handlers.rst:715 msgid "``local2``" -msgstr "" +msgstr "``local2``" #: ../../library/logging.handlers.rst:715 msgid "LOG_LOCAL2" -msgstr "" +msgstr "LOG_LOCAL2" #: ../../library/logging.handlers.rst:717 msgid "``local3``" -msgstr "" +msgstr "``local3``" #: ../../library/logging.handlers.rst:717 msgid "LOG_LOCAL3" -msgstr "" +msgstr "LOG_LOCAL3" #: ../../library/logging.handlers.rst:719 msgid "``local4``" -msgstr "" +msgstr "``local4``" #: ../../library/logging.handlers.rst:719 msgid "LOG_LOCAL4" -msgstr "" +msgstr "LOG_LOCAL4" #: ../../library/logging.handlers.rst:721 msgid "``local5``" -msgstr "" +msgstr "``local5``" #: ../../library/logging.handlers.rst:721 msgid "LOG_LOCAL5" -msgstr "" +msgstr "LOG_LOCAL5" #: ../../library/logging.handlers.rst:723 msgid "``local6``" -msgstr "" +msgstr "``local6``" #: ../../library/logging.handlers.rst:723 msgid "LOG_LOCAL6" -msgstr "" +msgstr "LOG_LOCAL6" #: ../../library/logging.handlers.rst:725 msgid "``local7``" -msgstr "" +msgstr "``local7``" #: ../../library/logging.handlers.rst:725 msgid "LOG_LOCAL7" -msgstr "" +msgstr "LOG_LOCAL7" #: ../../library/logging.handlers.rst:730 msgid "" @@ -1092,7 +1092,7 @@ msgstr "" #: ../../library/logging.handlers.rst:740 msgid "NTEventLogHandler" -msgstr "" +msgstr "NTEventLogHandler" #: ../../library/logging.handlers.rst:742 msgid "" @@ -1161,7 +1161,7 @@ msgstr "" #: ../../library/logging.handlers.rst:807 msgid "SMTPHandler" -msgstr "" +msgstr "SMTPHandler" #: ../../library/logging.handlers.rst:809 msgid "" @@ -1212,7 +1212,7 @@ msgstr "" #: ../../library/logging.handlers.rst:848 msgid "MemoryHandler" -msgstr "" +msgstr "MemoryHandler" #: ../../library/logging.handlers.rst:850 msgid "" @@ -1292,7 +1292,7 @@ msgstr "" #: ../../library/logging.handlers.rst:927 msgid "HTTPHandler" -msgstr "" +msgstr "HTTPHandler" #: ../../library/logging.handlers.rst:929 msgid "" @@ -1347,7 +1347,7 @@ msgstr "" #: ../../library/logging.handlers.rst:977 msgid "QueueHandler" -msgstr "" +msgstr "QueueHandler" #: ../../library/logging.handlers.rst:981 msgid "" @@ -1415,7 +1415,7 @@ msgstr "" #: ../../library/logging.handlers.rst:1035 msgid "QueueListener" -msgstr "" +msgstr "QueueListener" #: ../../library/logging.handlers.rst:1039 msgid "" @@ -1523,7 +1523,7 @@ msgstr "" #: ../../library/logging.handlers.rst:1124 msgid "Module :mod:`logging`" -msgstr "" +msgstr ":mod:`logging` 模組" #: ../../library/logging.handlers.rst:1124 msgid "API reference for the logging module." @@ -1531,7 +1531,7 @@ msgstr "" #: ../../library/logging.handlers.rst:1126 msgid "Module :mod:`logging.config`" -msgstr "" +msgstr ":mod:`logging.config` 模組" #: ../../library/logging.handlers.rst:1127 msgid "Configuration API for the logging module." diff --git a/library/logging.po b/library/logging.po index 1bcea98686..2559ab01ec 100644 --- a/library/logging.po +++ b/library/logging.po @@ -25,7 +25,7 @@ msgstr "" #: ../../library/logging.rst:10 msgid "**Source code:** :source:`Lib/logging/__init__.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/logging/__init__.py`" #: ../../library/logging.rst:16 msgid "" @@ -35,11 +35,11 @@ msgstr "" #: ../../library/logging.rst:19 msgid ":ref:`Basic Tutorial `" -msgstr "" +msgstr ":ref:`基礎教學 `" #: ../../library/logging.rst:20 msgid ":ref:`Advanced Tutorial `" -msgstr "" +msgstr ":ref:`進階教學 `" #: ../../library/logging.rst:21 msgid ":ref:`Logging Cookbook `" @@ -480,47 +480,47 @@ msgstr "" #: ../../library/logging.rst:370 msgid "``CRITICAL``" -msgstr "" +msgstr "``CRITICAL``" #: ../../library/logging.rst:370 msgid "50" -msgstr "" +msgstr "50" #: ../../library/logging.rst:372 msgid "``ERROR``" -msgstr "" +msgstr "``ERROR``" #: ../../library/logging.rst:372 msgid "40" -msgstr "" +msgstr "40" #: ../../library/logging.rst:374 msgid "``WARNING``" -msgstr "" +msgstr "``WARNING``" #: ../../library/logging.rst:374 msgid "30" -msgstr "" +msgstr "30" #: ../../library/logging.rst:376 msgid "``INFO``" -msgstr "" +msgstr "``INFO``" #: ../../library/logging.rst:376 msgid "20" -msgstr "" +msgstr "20" #: ../../library/logging.rst:378 msgid "``DEBUG``" -msgstr "" +msgstr "``DEBUG``" #: ../../library/logging.rst:378 msgid "10" -msgstr "" +msgstr "10" #: ../../library/logging.rst:380 msgid "``NOTSET``" -msgstr "" +msgstr "``NOTSET``" #: ../../library/logging.rst:380 msgid "0" @@ -1012,7 +1012,7 @@ msgstr "" #: ../../library/logging.rst:790 ../../library/logging.rst:1179 msgid "Format" -msgstr "" +msgstr "格式" #: ../../library/logging.rst:790 ../../library/logging.rst:1179 msgid "Description" @@ -1040,7 +1040,7 @@ msgstr "" #: ../../library/logging.rst:797 msgid "``%(asctime)s``" -msgstr "" +msgstr "``%(asctime)s``" #: ../../library/logging.rst:797 msgid "" @@ -1055,7 +1055,7 @@ msgstr "" #: ../../library/logging.rst:803 msgid "``%(created)f``" -msgstr "" +msgstr "``%(created)f``" #: ../../library/logging.rst:803 msgid "" @@ -1079,7 +1079,7 @@ msgstr "" #: ../../library/logging.rst:809 msgid "``%(filename)s``" -msgstr "" +msgstr "``%(filename)s``" #: ../../library/logging.rst:809 msgid "Filename portion of ``pathname``." @@ -1091,7 +1091,7 @@ msgstr "" #: ../../library/logging.rst:811 msgid "``%(funcName)s``" -msgstr "" +msgstr "``%(funcName)s``" #: ../../library/logging.rst:811 msgid "Name of function containing the logging call." @@ -1103,7 +1103,7 @@ msgstr "" #: ../../library/logging.rst:813 msgid "``%(levelname)s``" -msgstr "" +msgstr "``%(levelname)s``" #: ../../library/logging.rst:813 msgid "" @@ -1117,7 +1117,7 @@ msgstr "" #: ../../library/logging.rst:817 msgid "``%(levelno)s``" -msgstr "" +msgstr "``%(levelno)s``" #: ../../library/logging.rst:817 msgid "" @@ -1131,7 +1131,7 @@ msgstr "" #: ../../library/logging.rst:822 msgid "``%(lineno)d``" -msgstr "" +msgstr "``%(lineno)d``" #: ../../library/logging.rst:822 msgid "Source line number where the logging call was issued (if available)." @@ -1143,7 +1143,7 @@ msgstr "" #: ../../library/logging.rst:825 msgid "``%(message)s``" -msgstr "" +msgstr "``%(message)s``" #: ../../library/logging.rst:825 msgid "" @@ -1153,11 +1153,11 @@ msgstr "" #: ../../library/logging.rst:829 msgid "module" -msgstr "" +msgstr "模組" #: ../../library/logging.rst:829 msgid "``%(module)s``" -msgstr "" +msgstr "``%(module)s``" #: ../../library/logging.rst:829 msgid "Module (name portion of ``filename``)." @@ -1169,7 +1169,7 @@ msgstr "" #: ../../library/logging.rst:831 msgid "``%(msecs)d``" -msgstr "" +msgstr "``%(msecs)d``" #: ../../library/logging.rst:831 msgid "" @@ -1193,7 +1193,7 @@ msgstr "" #: ../../library/logging.rst:839 msgid "``%(name)s``" -msgstr "" +msgstr "``%(name)s``" #: ../../library/logging.rst:839 msgid "Name of the logger used to log the call." @@ -1205,7 +1205,7 @@ msgstr "" #: ../../library/logging.rst:841 msgid "``%(pathname)s``" -msgstr "" +msgstr "``%(pathname)s``" #: ../../library/logging.rst:841 msgid "" @@ -1219,7 +1219,7 @@ msgstr "" #: ../../library/logging.rst:844 msgid "``%(process)d``" -msgstr "" +msgstr "``%(process)d``" #: ../../library/logging.rst:844 msgid "Process ID (if available)." @@ -1231,7 +1231,7 @@ msgstr "" #: ../../library/logging.rst:846 msgid "``%(processName)s``" -msgstr "" +msgstr "``%(processName)s``" #: ../../library/logging.rst:846 msgid "Process name (if available)." @@ -1243,7 +1243,7 @@ msgstr "" #: ../../library/logging.rst:848 msgid "``%(relativeCreated)d``" -msgstr "" +msgstr "``%(relativeCreated)d``" #: ../../library/logging.rst:848 msgid "" @@ -1253,7 +1253,7 @@ msgstr "" #: ../../library/logging.rst:852 msgid "stack_info" -msgstr "" +msgstr "stack_info" #: ../../library/logging.rst:852 msgid "" @@ -1268,7 +1268,7 @@ msgstr "" #: ../../library/logging.rst:858 msgid "``%(thread)d``" -msgstr "" +msgstr "``%(thread)d``" #: ../../library/logging.rst:858 msgid "Thread ID (if available)." @@ -1280,7 +1280,7 @@ msgstr "" #: ../../library/logging.rst:860 msgid "``%(threadName)s``" -msgstr "" +msgstr "``%(threadName)s``" #: ../../library/logging.rst:860 msgid "Thread name (if available)." @@ -1640,7 +1640,7 @@ msgstr "" #: ../../library/logging.rst:1181 msgid "*filename*" -msgstr "" +msgstr "*filename*" #: ../../library/logging.rst:1181 msgid "" @@ -1650,7 +1650,7 @@ msgstr "" #: ../../library/logging.rst:1185 msgid "*filemode*" -msgstr "" +msgstr "*filemode*" #: ../../library/logging.rst:1185 msgid "" @@ -1660,7 +1660,7 @@ msgstr "" #: ../../library/logging.rst:1189 msgid "*format*" -msgstr "" +msgstr "*format*" #: ../../library/logging.rst:1189 msgid "" @@ -1670,7 +1670,7 @@ msgstr "" #: ../../library/logging.rst:1194 msgid "*datefmt*" -msgstr "" +msgstr "*datefmt*" #: ../../library/logging.rst:1194 msgid "" @@ -1679,7 +1679,7 @@ msgstr "" #: ../../library/logging.rst:1197 msgid "*style*" -msgstr "" +msgstr "*style*" #: ../../library/logging.rst:1197 msgid "" @@ -1691,7 +1691,7 @@ msgstr "" #: ../../library/logging.rst:1205 msgid "*level*" -msgstr "" +msgstr "*level*" #: ../../library/logging.rst:1205 msgid "Set the root logger level to the specified :ref:`level `." @@ -1699,7 +1699,7 @@ msgstr "" #: ../../library/logging.rst:1208 msgid "*stream*" -msgstr "" +msgstr "*stream*" #: ../../library/logging.rst:1208 msgid "" @@ -1710,7 +1710,7 @@ msgstr "" #: ../../library/logging.rst:1214 msgid "*handlers*" -msgstr "" +msgstr "*handlers*" #: ../../library/logging.rst:1214 msgid "" @@ -1723,7 +1723,7 @@ msgstr "" #: ../../library/logging.rst:1223 msgid "*force*" -msgstr "" +msgstr "*force*" #: ../../library/logging.rst:1223 msgid "" @@ -1734,7 +1734,7 @@ msgstr "" #: ../../library/logging.rst:1229 msgid "*encoding*" -msgstr "" +msgstr "*encoding*" #: ../../library/logging.rst:1229 msgid "" @@ -1745,7 +1745,7 @@ msgstr "" #: ../../library/logging.rst:1234 msgid "*errors*" -msgstr "" +msgstr "*errors*" #: ../../library/logging.rst:1234 msgid "" @@ -1839,7 +1839,7 @@ msgstr "" #: ../../library/logging.rst:0 msgid "fn" -msgstr "" +msgstr "fn" #: ../../library/logging.rst:1299 msgid "The full pathname of the file where the logging call was made." @@ -1847,7 +1847,7 @@ msgstr "" #: ../../library/logging.rst:0 msgid "lno" -msgstr "" +msgstr "lno" #: ../../library/logging.rst:1300 msgid "The line number in the file where the logging call was made." @@ -1867,7 +1867,7 @@ msgstr "" #: ../../library/logging.rst:0 msgid "func" -msgstr "" +msgstr "func" #: ../../library/logging.rst:1304 msgid "The name of the function or method which invoked the logging call." @@ -1875,7 +1875,7 @@ msgstr "" #: ../../library/logging.rst:0 msgid "sinfo" -msgstr "" +msgstr "sinfo" #: ../../library/logging.rst:1306 msgid "" @@ -1885,7 +1885,7 @@ msgstr "" #: ../../library/logging.rst:0 msgid "kwargs" -msgstr "" +msgstr "kwargs" #: ../../library/logging.rst:1308 msgid "Additional keyword arguments." diff --git a/library/lzma.po b/library/lzma.po index 61d3eaf96a..bcd390d190 100644 --- a/library/lzma.po +++ b/library/lzma.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/lzma.rst:12 msgid "**Source code:** :source:`Lib/lzma.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/lzma.py`" #: ../../library/lzma.rst:16 msgid "" @@ -495,7 +495,7 @@ msgstr "" #: ../../library/lzma.rst:339 msgid ":const:`FILTER_DELTA`" -msgstr "" +msgstr ":const:`FILTER_DELTA`" #: ../../library/lzma.rst:347 msgid "Branch-Call-Jump (BCJ) filters:" @@ -503,27 +503,27 @@ msgstr "" #: ../../library/lzma.rst:342 msgid ":const:`FILTER_X86`" -msgstr "" +msgstr ":const:`FILTER_X86`" #: ../../library/lzma.rst:343 msgid ":const:`FILTER_IA64`" -msgstr "" +msgstr ":const:`FILTER_IA64`" #: ../../library/lzma.rst:344 msgid ":const:`FILTER_ARM`" -msgstr "" +msgstr ":const:`FILTER_ARM`" #: ../../library/lzma.rst:345 msgid ":const:`FILTER_ARMTHUMB`" -msgstr "" +msgstr ":const:`FILTER_ARMTHUMB`" #: ../../library/lzma.rst:346 msgid ":const:`FILTER_POWERPC`" -msgstr "" +msgstr ":const:`FILTER_POWERPC`" #: ../../library/lzma.rst:347 msgid ":const:`FILTER_SPARC`" -msgstr "" +msgstr ":const:`FILTER_SPARC`" #: ../../library/lzma.rst:349 msgid "" @@ -607,7 +607,7 @@ msgstr "" #: ../../library/lzma.rst:385 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/lzma.rst:387 msgid "Reading in a compressed file::" diff --git a/library/mailbox.po b/library/mailbox.po index f50572545d..4868816a00 100644 --- a/library/mailbox.po +++ b/library/mailbox.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/mailbox.rst:10 msgid "**Source code:** :source:`Lib/mailbox.py`" -msgstr "**原始碼:** :source:`Lib/mailbox.py`" +msgstr "**原始碼:**\\ :source:`Lib/mailbox.py`" #: ../../library/mailbox.rst:14 msgid "" @@ -46,7 +46,7 @@ msgstr "" #: ../../library/mailbox.rst:31 msgid ":class:`Mailbox` objects" -msgstr "" +msgstr ":class:`Mailbox` 物件" #: ../../library/mailbox.rst:35 msgid "A mailbox, which may be inspected and modified." @@ -861,7 +861,7 @@ msgstr "" #: ../../library/mailbox.rst:756 msgid ":class:`Message` objects" -msgstr "" +msgstr ":class:`Message` 物件" #: ../../library/mailbox.rst:761 msgid "" @@ -947,7 +947,7 @@ msgstr "" #: ../../library/mailbox.rst:816 ../../library/mailbox.rst:987 #: ../../library/mailbox.rst:1357 msgid "D" -msgstr "" +msgstr "D" #: ../../library/mailbox.rst:816 msgid "Draft" @@ -960,7 +960,7 @@ msgstr "" #: ../../library/mailbox.rst:818 ../../library/mailbox.rst:989 #: ../../library/mailbox.rst:1359 msgid "F" -msgstr "" +msgstr "F" #: ../../library/mailbox.rst:818 ../../library/mailbox.rst:989 #: ../../library/mailbox.rst:1359 @@ -974,7 +974,7 @@ msgstr "" #: ../../library/mailbox.rst:820 msgid "P" -msgstr "" +msgstr "P" #: ../../library/mailbox.rst:820 msgid "Passed" @@ -987,7 +987,7 @@ msgstr "" #: ../../library/mailbox.rst:822 ../../library/mailbox.rst:983 #: ../../library/mailbox.rst:1353 msgid "R" -msgstr "" +msgstr "R" #: ../../library/mailbox.rst:822 msgid "Replied" @@ -1001,7 +1001,7 @@ msgstr "" #: ../../library/mailbox.rst:824 msgid "S" -msgstr "" +msgstr "S" #: ../../library/mailbox.rst:824 msgid "Seen" @@ -1014,7 +1014,7 @@ msgstr "" #: ../../library/mailbox.rst:826 msgid "T" -msgstr "" +msgstr "T" #: ../../library/mailbox.rst:826 msgid "Trashed" @@ -1295,7 +1295,7 @@ msgstr "" #: ../../library/mailbox.rst:985 ../../library/mailbox.rst:1355 msgid "O" -msgstr "" +msgstr "O" #: ../../library/mailbox.rst:985 ../../library/mailbox.rst:1355 msgid "Old" @@ -1311,7 +1311,7 @@ msgstr "" #: ../../library/mailbox.rst:991 ../../library/mailbox.rst:1361 msgid "A" -msgstr "" +msgstr "A" #: ../../library/mailbox.rst:991 ../../library/mailbox.rst:1361 msgid "Answered" @@ -1703,7 +1703,7 @@ msgstr "" #: ../../library/mailbox.rst:1486 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/mailbox.rst:1488 msgid "" @@ -1744,7 +1744,7 @@ msgstr "" #: ../../library/mailbox.rst:1526 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/mailbox.rst:1528 msgid "" diff --git a/library/mailcap.po b/library/mailcap.po index ee7184580d..818d072ca5 100644 --- a/library/mailcap.po +++ b/library/mailcap.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/mailcap.rst:7 msgid "**Source code:** :source:`Lib/mailcap.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/mailcap.py`" #: ../../library/mailcap.rst:11 msgid "" diff --git a/library/math.po b/library/math.po index 8ef17dd897..ad14e0bd4c 100644 --- a/library/math.po +++ b/library/math.po @@ -20,7 +20,7 @@ msgstr "" #: ../../library/math.rst:2 msgid ":mod:`math` --- Mathematical functions" -msgstr "" +msgstr ":mod:`math` --- 數學函式" #: ../../library/math.rst:13 msgid "" @@ -279,7 +279,7 @@ msgstr "" #: ../../library/math.rst:238 msgid "Examples:" -msgstr "" +msgstr "範例:" #: ../../library/math.rst:240 msgid "``math.nextafter(x, math.inf)`` goes up: towards positive infinity." @@ -670,7 +670,7 @@ msgstr "" #: ../../library/math.rst:597 msgid "Constants" -msgstr "" +msgstr "常數" #: ../../library/math.rst:601 msgid "The mathematical constant *π* = 3.141592..., to available precision." @@ -725,7 +725,7 @@ msgstr "" #: ../../library/math.rst:657 msgid "Module :mod:`cmath`" -msgstr "" +msgstr ":mod:`cmath` 模組" #: ../../library/math.rst:658 msgid "Complex number versions of many of these functions." diff --git a/library/mimetypes.po b/library/mimetypes.po index 48ee1a0f5b..22e38b65ab 100644 --- a/library/mimetypes.po +++ b/library/mimetypes.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/mimetypes.rst:9 msgid "**Source code:** :source:`Lib/mimetypes.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/mimetypes.py`" #: ../../library/mimetypes.rst:15 msgid "" @@ -204,6 +204,9 @@ msgstr "" #: ../../library/mimetypes.rst:161 msgid "An example usage of the module::" msgstr "" +"模組的使用範例:\n" +"\n" +"::" #: ../../library/mimetypes.rst:178 msgid "MimeTypes Objects" @@ -311,4 +314,4 @@ msgstr "" #: ../../library/mimetypes.rst:270 msgid ":ref:`Availability `: Windows." -msgstr "" +msgstr ":ref:`適用 `:Windows。" diff --git a/library/modulefinder.po b/library/modulefinder.po index 6241bc9d0b..28b26de228 100644 --- a/library/modulefinder.po +++ b/library/modulefinder.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/modulefinder.rst:9 msgid "**Source code:** :source:`Lib/modulefinder.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/modulefinder.py`" #: ../../library/modulefinder.rst:13 msgid "" diff --git a/library/msilib.po b/library/msilib.po index b87461b4a3..ca3f4b29e8 100644 --- a/library/msilib.po +++ b/library/msilib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/msilib.rst:11 msgid "**Source code:** :source:`Lib/msilib/__init__.py`" -msgstr "**原始碼:** :source:`Lib/msilib/__init__.py`" +msgstr "**原始碼:**\\ :source:`Lib/msilib/__init__.py`" #: ../../library/msilib.rst:17 msgid "" @@ -373,7 +373,7 @@ msgstr "" #: ../../library/msilib.rst:328 msgid "CAB Objects" -msgstr "" +msgstr "CAB 物件" #: ../../library/msilib.rst:333 msgid "" diff --git a/library/multiprocessing.po b/library/multiprocessing.po index 84461bd88e..582a689807 100644 --- a/library/multiprocessing.po +++ b/library/multiprocessing.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/multiprocessing.rst:7 msgid "**Source code:** :source:`Lib/multiprocessing/`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/multiprocessing/`" #: ../../library/multiprocessing.rst:12 msgid "Introduction" @@ -362,6 +362,9 @@ msgstr "" #: ../../library/multiprocessing.rst:383 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/multiprocessing.rst:427 msgid "" @@ -397,7 +400,7 @@ msgstr "" #: ../../library/multiprocessing.rst:468 msgid ":class:`Process` and exceptions" -msgstr "" +msgstr ":class:`Process` 與例外" #: ../../library/multiprocessing.rst:473 msgid "" @@ -1016,7 +1019,7 @@ msgstr "" #: ../../library/multiprocessing.rst:958 msgid ":func:`os.cpu_count`" -msgstr "" +msgstr ":func:`os.cpu_count`" #: ../../library/multiprocessing.rst:962 msgid "" @@ -1741,7 +1744,7 @@ msgstr "" #: ../../library/multiprocessing.rst:1575 msgid "ctypes" -msgstr "" +msgstr "ctypes" #: ../../library/multiprocessing.rst:1575 msgid "sharedctypes using type" @@ -1753,47 +1756,47 @@ msgstr "" #: ../../library/multiprocessing.rst:1577 msgid "c_double(2.4)" -msgstr "" +msgstr "c_double(2.4)" #: ../../library/multiprocessing.rst:1577 msgid "RawValue(c_double, 2.4)" -msgstr "" +msgstr "RawValue(c_double, 2.4)" #: ../../library/multiprocessing.rst:1577 msgid "RawValue('d', 2.4)" -msgstr "" +msgstr "RawValue('d', 2.4)" #: ../../library/multiprocessing.rst:1578 msgid "MyStruct(4, 6)" -msgstr "" +msgstr "MyStruct(4, 6)" #: ../../library/multiprocessing.rst:1578 msgid "RawValue(MyStruct, 4, 6)" -msgstr "" +msgstr "RawValue(MyStruct, 4, 6)" #: ../../library/multiprocessing.rst:1579 msgid "(c_short * 7)()" -msgstr "" +msgstr "(c_short * 7)()" #: ../../library/multiprocessing.rst:1579 msgid "RawArray(c_short, 7)" -msgstr "" +msgstr "RawArray(c_short, 7)" #: ../../library/multiprocessing.rst:1579 msgid "RawArray('h', 7)" -msgstr "" +msgstr "RawArray('h', 7)" #: ../../library/multiprocessing.rst:1580 msgid "(c_int * 3)(9, 2, 8)" -msgstr "" +msgstr "(c_int * 3)(9, 2, 8)" #: ../../library/multiprocessing.rst:1580 msgid "RawArray(c_int, (9, 2, 8))" -msgstr "" +msgstr "RawArray(c_int, (9, 2, 8))" #: ../../library/multiprocessing.rst:1580 msgid "RawArray('i', (9, 2, 8))" -msgstr "" +msgstr "RawArray('i', (9, 2, 8))" #: ../../library/multiprocessing.rst:1584 msgid "" @@ -3196,7 +3199,7 @@ msgstr "" #: ../../library/multiprocessing.rst:2950 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/multiprocessing.rst:2952 msgid "Demonstration of how to create and use customized managers and proxies:" diff --git a/library/multiprocessing.shared_memory.po b/library/multiprocessing.shared_memory.po index 6335875a3e..1638968f34 100644 --- a/library/multiprocessing.shared_memory.po +++ b/library/multiprocessing.shared_memory.po @@ -25,7 +25,7 @@ msgstr "" #: ../../library/multiprocessing.shared_memory.rst:7 msgid "**Source code:** :source:`Lib/multiprocessing/shared_memory.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/multiprocessing/shared_memory.py`" #: ../../library/multiprocessing.shared_memory.rst:18 msgid "" diff --git a/library/netrc.po b/library/netrc.po index 6928da4b09..8c88fa15ed 100644 --- a/library/netrc.po +++ b/library/netrc.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/netrc.rst:11 msgid "**Source code:** :source:`Lib/netrc.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/netrc.py`" #: ../../library/netrc.rst:15 msgid "" @@ -75,7 +75,7 @@ msgstr "" #: ../../library/netrc.rst:58 msgid "netrc Objects" -msgstr "" +msgstr "netrc 物件" #: ../../library/netrc.rst:60 msgid "A :class:`~netrc.netrc` instance has the following methods:" diff --git a/library/nntplib.po b/library/nntplib.po index bb6fe01d0e..1c88ac2758 100644 --- a/library/nntplib.po +++ b/library/nntplib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/nntplib.rst:7 msgid "**Source code:** :source:`Lib/nntplib.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/nntplib.py`" #: ../../library/nntplib.rst:15 msgid "" @@ -161,7 +161,7 @@ msgstr "" #: ../../library/nntplib.rst:173 msgid "NNTP Objects" -msgstr "" +msgstr "NNTP 物件" #: ../../library/nntplib.rst:175 msgid "" @@ -171,7 +171,7 @@ msgstr "" #: ../../library/nntplib.rst:179 msgid "Attributes" -msgstr "" +msgstr "屬性" #: ../../library/nntplib.rst:183 msgid "" diff --git a/library/numbers.po b/library/numbers.po index 13b4c58695..f367ecb817 100644 --- a/library/numbers.po +++ b/library/numbers.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/numbers.rst:7 msgid "**Source code:** :source:`Lib/numbers.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/numbers.py`" #: ../../library/numbers.rst:11 msgid "" diff --git a/library/operator.po b/library/operator.po index 1b4f1919ff..ffc9250370 100644 --- a/library/operator.po +++ b/library/operator.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/operator.rst:9 msgid "**Source code:** :source:`Lib/operator.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/operator.py`" #: ../../library/operator.rst:18 msgid "" @@ -250,6 +250,9 @@ msgstr "" #: ../../library/operator.rst:354 msgid "Equivalent to::" msgstr "" +"等價於:\n" +"\n" +"::" #: ../../library/operator.rst:297 msgid "" @@ -319,7 +322,7 @@ msgstr "" #: ../../library/operator.rst:371 msgid "Function" -msgstr "" +msgstr "函式" #: ../../library/operator.rst:373 msgid "Addition" @@ -327,11 +330,11 @@ msgstr "" #: ../../library/operator.rst:373 msgid "``a + b``" -msgstr "" +msgstr "``a + b``" #: ../../library/operator.rst:373 msgid "``add(a, b)``" -msgstr "" +msgstr "``add(a, b)``" #: ../../library/operator.rst:375 msgid "Concatenation" @@ -339,11 +342,11 @@ msgstr "" #: ../../library/operator.rst:375 msgid "``seq1 + seq2``" -msgstr "" +msgstr "``seq1 + seq2``" #: ../../library/operator.rst:375 msgid "``concat(seq1, seq2)``" -msgstr "" +msgstr "``concat(seq1, seq2)``" #: ../../library/operator.rst:377 msgid "Containment Test" @@ -351,11 +354,11 @@ msgstr "" #: ../../library/operator.rst:377 msgid "``obj in seq``" -msgstr "" +msgstr "``obj in seq``" #: ../../library/operator.rst:377 msgid "``contains(seq, obj)``" -msgstr "" +msgstr "``contains(seq, obj)``" #: ../../library/operator.rst:379 ../../library/operator.rst:381 msgid "Division" @@ -363,19 +366,19 @@ msgstr "" #: ../../library/operator.rst:379 msgid "``a / b``" -msgstr "" +msgstr "``a / b``" #: ../../library/operator.rst:379 msgid "``truediv(a, b)``" -msgstr "" +msgstr "``truediv(a, b)``" #: ../../library/operator.rst:381 msgid "``a // b``" -msgstr "" +msgstr "``a // b``" #: ../../library/operator.rst:381 msgid "``floordiv(a, b)``" -msgstr "" +msgstr "``floordiv(a, b)``" #: ../../library/operator.rst:383 msgid "Bitwise And" @@ -383,11 +386,11 @@ msgstr "" #: ../../library/operator.rst:383 msgid "``a & b``" -msgstr "" +msgstr "``a & b``" #: ../../library/operator.rst:383 msgid "``and_(a, b)``" -msgstr "" +msgstr "``and_(a, b)``" #: ../../library/operator.rst:385 msgid "Bitwise Exclusive Or" @@ -395,11 +398,11 @@ msgstr "" #: ../../library/operator.rst:385 msgid "``a ^ b``" -msgstr "" +msgstr "``a ^ b``" #: ../../library/operator.rst:385 msgid "``xor(a, b)``" -msgstr "" +msgstr "``xor(a, b)``" #: ../../library/operator.rst:387 msgid "Bitwise Inversion" @@ -407,11 +410,11 @@ msgstr "" #: ../../library/operator.rst:387 msgid "``~ a``" -msgstr "" +msgstr "``~ a``" #: ../../library/operator.rst:387 msgid "``invert(a)``" -msgstr "" +msgstr "``invert(a)``" #: ../../library/operator.rst:389 msgid "Bitwise Or" @@ -419,11 +422,11 @@ msgstr "" #: ../../library/operator.rst:389 msgid "``a | b``" -msgstr "" +msgstr "``a | b``" #: ../../library/operator.rst:389 msgid "``or_(a, b)``" -msgstr "" +msgstr "``or_(a, b)``" #: ../../library/operator.rst:391 msgid "Exponentiation" @@ -431,11 +434,11 @@ msgstr "" #: ../../library/operator.rst:391 msgid "``a ** b``" -msgstr "" +msgstr "``a ** b``" #: ../../library/operator.rst:391 msgid "``pow(a, b)``" -msgstr "" +msgstr "``pow(a, b)``" #: ../../library/operator.rst:393 ../../library/operator.rst:395 msgid "Identity" @@ -443,19 +446,19 @@ msgstr "" #: ../../library/operator.rst:393 msgid "``a is b``" -msgstr "" +msgstr "``a is b``" #: ../../library/operator.rst:393 msgid "``is_(a, b)``" -msgstr "" +msgstr "``is_(a, b)``" #: ../../library/operator.rst:395 msgid "``a is not b``" -msgstr "" +msgstr "``a is not b``" #: ../../library/operator.rst:395 msgid "``is_not(a, b)``" -msgstr "" +msgstr "``is_not(a, b)``" #: ../../library/operator.rst:397 msgid "Indexed Assignment" @@ -463,11 +466,11 @@ msgstr "" #: ../../library/operator.rst:397 msgid "``obj[k] = v``" -msgstr "" +msgstr "``obj[k] = v``" #: ../../library/operator.rst:397 msgid "``setitem(obj, k, v)``" -msgstr "" +msgstr "``setitem(obj, k, v)``" #: ../../library/operator.rst:399 msgid "Indexed Deletion" @@ -475,11 +478,11 @@ msgstr "" #: ../../library/operator.rst:399 msgid "``del obj[k]``" -msgstr "" +msgstr "``del obj[k]``" #: ../../library/operator.rst:399 msgid "``delitem(obj, k)``" -msgstr "" +msgstr "``delitem(obj, k)``" #: ../../library/operator.rst:401 msgid "Indexing" @@ -487,11 +490,11 @@ msgstr "" #: ../../library/operator.rst:401 msgid "``obj[k]``" -msgstr "" +msgstr "``obj[k]``" #: ../../library/operator.rst:401 msgid "``getitem(obj, k)``" -msgstr "" +msgstr "``getitem(obj, k)``" #: ../../library/operator.rst:403 msgid "Left Shift" @@ -499,11 +502,11 @@ msgstr "" #: ../../library/operator.rst:403 msgid "``a << b``" -msgstr "" +msgstr "``a << b``" #: ../../library/operator.rst:403 msgid "``lshift(a, b)``" -msgstr "" +msgstr "``lshift(a, b)``" #: ../../library/operator.rst:405 msgid "Modulo" @@ -511,11 +514,11 @@ msgstr "" #: ../../library/operator.rst:405 msgid "``a % b``" -msgstr "" +msgstr "``a % b``" #: ../../library/operator.rst:405 msgid "``mod(a, b)``" -msgstr "" +msgstr "``mod(a, b)``" #: ../../library/operator.rst:407 msgid "Multiplication" @@ -523,11 +526,11 @@ msgstr "" #: ../../library/operator.rst:407 msgid "``a * b``" -msgstr "" +msgstr "``a * b``" #: ../../library/operator.rst:407 msgid "``mul(a, b)``" -msgstr "" +msgstr "``mul(a, b)``" #: ../../library/operator.rst:409 msgid "Matrix Multiplication" @@ -535,11 +538,11 @@ msgstr "" #: ../../library/operator.rst:409 msgid "``a @ b``" -msgstr "" +msgstr "``a @ b``" #: ../../library/operator.rst:409 msgid "``matmul(a, b)``" -msgstr "" +msgstr "``matmul(a, b)``" #: ../../library/operator.rst:411 msgid "Negation (Arithmetic)" @@ -547,11 +550,11 @@ msgstr "" #: ../../library/operator.rst:411 msgid "``- a``" -msgstr "" +msgstr "``- a``" #: ../../library/operator.rst:411 msgid "``neg(a)``" -msgstr "" +msgstr "``neg(a)``" #: ../../library/operator.rst:413 msgid "Negation (Logical)" @@ -559,11 +562,11 @@ msgstr "" #: ../../library/operator.rst:413 msgid "``not a``" -msgstr "" +msgstr "``not a``" #: ../../library/operator.rst:413 msgid "``not_(a)``" -msgstr "" +msgstr "``not_(a)``" #: ../../library/operator.rst:415 msgid "Positive" @@ -571,11 +574,11 @@ msgstr "" #: ../../library/operator.rst:415 msgid "``+ a``" -msgstr "" +msgstr "``+ a``" #: ../../library/operator.rst:415 msgid "``pos(a)``" -msgstr "" +msgstr "``pos(a)``" #: ../../library/operator.rst:417 msgid "Right Shift" @@ -583,11 +586,11 @@ msgstr "" #: ../../library/operator.rst:417 msgid "``a >> b``" -msgstr "" +msgstr "``a >> b``" #: ../../library/operator.rst:417 msgid "``rshift(a, b)``" -msgstr "" +msgstr "``rshift(a, b)``" #: ../../library/operator.rst:419 msgid "Slice Assignment" @@ -595,11 +598,11 @@ msgstr "" #: ../../library/operator.rst:419 msgid "``seq[i:j] = values``" -msgstr "" +msgstr "``seq[i:j] = values``" #: ../../library/operator.rst:419 msgid "``setitem(seq, slice(i, j), values)``" -msgstr "" +msgstr "``setitem(seq, slice(i, j), values)``" #: ../../library/operator.rst:421 msgid "Slice Deletion" @@ -607,11 +610,11 @@ msgstr "" #: ../../library/operator.rst:421 msgid "``del seq[i:j]``" -msgstr "" +msgstr "``del seq[i:j]``" #: ../../library/operator.rst:421 msgid "``delitem(seq, slice(i, j))``" -msgstr "" +msgstr "``delitem(seq, slice(i, j))``" #: ../../library/operator.rst:423 msgid "Slicing" @@ -619,11 +622,11 @@ msgstr "" #: ../../library/operator.rst:423 msgid "``seq[i:j]``" -msgstr "" +msgstr "``seq[i:j]``" #: ../../library/operator.rst:423 msgid "``getitem(seq, slice(i, j))``" -msgstr "" +msgstr "``getitem(seq, slice(i, j))``" #: ../../library/operator.rst:425 msgid "String Formatting" @@ -631,11 +634,11 @@ msgstr "" #: ../../library/operator.rst:425 msgid "``s % obj``" -msgstr "" +msgstr "``s % obj``" #: ../../library/operator.rst:425 msgid "``mod(s, obj)``" -msgstr "" +msgstr "``mod(s, obj)``" #: ../../library/operator.rst:427 msgid "Subtraction" @@ -643,11 +646,11 @@ msgstr "" #: ../../library/operator.rst:427 msgid "``a - b``" -msgstr "" +msgstr "``a - b``" #: ../../library/operator.rst:427 msgid "``sub(a, b)``" -msgstr "" +msgstr "``sub(a, b)``" #: ../../library/operator.rst:429 msgid "Truth Test" @@ -655,11 +658,11 @@ msgstr "" #: ../../library/operator.rst:429 msgid "``obj``" -msgstr "" +msgstr "``obj``" #: ../../library/operator.rst:429 msgid "``truth(obj)``" -msgstr "" +msgstr "``truth(obj)``" #: ../../library/operator.rst:431 ../../library/operator.rst:433 #: ../../library/operator.rst:439 ../../library/operator.rst:441 @@ -668,19 +671,19 @@ msgstr "" #: ../../library/operator.rst:431 msgid "``a < b``" -msgstr "" +msgstr "``a < b``" #: ../../library/operator.rst:431 msgid "``lt(a, b)``" -msgstr "" +msgstr "``lt(a, b)``" #: ../../library/operator.rst:433 msgid "``a <= b``" -msgstr "" +msgstr "``a <= b``" #: ../../library/operator.rst:433 msgid "``le(a, b)``" -msgstr "" +msgstr "``le(a, b)``" #: ../../library/operator.rst:435 msgid "Equality" @@ -688,11 +691,11 @@ msgstr "" #: ../../library/operator.rst:435 msgid "``a == b``" -msgstr "" +msgstr "``a == b``" #: ../../library/operator.rst:435 msgid "``eq(a, b)``" -msgstr "" +msgstr "``eq(a, b)``" #: ../../library/operator.rst:437 msgid "Difference" @@ -700,27 +703,27 @@ msgstr "" #: ../../library/operator.rst:437 msgid "``a != b``" -msgstr "" +msgstr "``a != b``" #: ../../library/operator.rst:437 msgid "``ne(a, b)``" -msgstr "" +msgstr "``ne(a, b)``" #: ../../library/operator.rst:439 msgid "``a >= b``" -msgstr "" +msgstr "``a >= b``" #: ../../library/operator.rst:439 msgid "``ge(a, b)``" -msgstr "" +msgstr "``ge(a, b)``" #: ../../library/operator.rst:441 msgid "``a > b``" -msgstr "" +msgstr "``a > b``" #: ../../library/operator.rst:441 msgid "``gt(a, b)``" -msgstr "" +msgstr "``gt(a, b)``" #: ../../library/operator.rst:445 msgid "In-place Operators" @@ -758,11 +761,11 @@ msgstr "" #: ../../library/operator.rst:480 msgid "``a = iadd(a, b)`` is equivalent to ``a += b``." -msgstr "" +msgstr "``a = iadd(a, b)`` 等價於 ``a += b``。" #: ../../library/operator.rst:486 msgid "``a = iand(a, b)`` is equivalent to ``a &= b``." -msgstr "" +msgstr "``a = iand(a, b)`` 等價於 ``a &= b``。" #: ../../library/operator.rst:492 msgid "" @@ -771,44 +774,44 @@ msgstr "" #: ../../library/operator.rst:498 msgid "``a = ifloordiv(a, b)`` is equivalent to ``a //= b``." -msgstr "" +msgstr "``a = ifloordiv(a, b)`` 等價於 ``a //= b``。" #: ../../library/operator.rst:504 msgid "``a = ilshift(a, b)`` is equivalent to ``a <<= b``." -msgstr "" +msgstr "``a = ilshift(a, b)`` 等價於 ``a <<= b``。" #: ../../library/operator.rst:510 msgid "``a = imod(a, b)`` is equivalent to ``a %= b``." -msgstr "" +msgstr "``a = imod(a, b)`` 等價於 ``a %= b``。" #: ../../library/operator.rst:516 msgid "``a = imul(a, b)`` is equivalent to ``a *= b``." -msgstr "" +msgstr "``a = imul(a, b)`` 等價於 ``a *= b``。" #: ../../library/operator.rst:522 msgid "``a = imatmul(a, b)`` is equivalent to ``a @= b``." -msgstr "" +msgstr "``a = imatmul(a, b)`` 等價於 ``a @= b``。" #: ../../library/operator.rst:530 msgid "``a = ior(a, b)`` is equivalent to ``a |= b``." -msgstr "" +msgstr "``a = ior(a, b)`` 等價於 ``a |= b``。" #: ../../library/operator.rst:536 msgid "``a = ipow(a, b)`` is equivalent to ``a **= b``." -msgstr "" +msgstr "``a = ipow(a, b)`` 等價於 ``a **= b``。" #: ../../library/operator.rst:542 msgid "``a = irshift(a, b)`` is equivalent to ``a >>= b``." -msgstr "" +msgstr "``a = irshift(a, b)`` 等價於 ``a >>= b``。" #: ../../library/operator.rst:548 msgid "``a = isub(a, b)`` is equivalent to ``a -= b``." -msgstr "" +msgstr "``a = isub(a, b)`` 等價於 ``a -= b``。" #: ../../library/operator.rst:554 msgid "``a = itruediv(a, b)`` is equivalent to ``a /= b``." -msgstr "" +msgstr "``a = itruediv(a, b)`` 等價於 ``a /= b``。" #: ../../library/operator.rst:560 msgid "``a = ixor(a, b)`` is equivalent to ``a ^= b``." -msgstr "" +msgstr "``a = ixor(a, b)`` 等價於 ``a ^= b``。" diff --git a/library/optparse.po b/library/optparse.po index 36c0b3b459..9f7d9ff4d3 100644 --- a/library/optparse.po +++ b/library/optparse.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/optparse.rst:11 msgid "**Source code:** :source:`Lib/optparse.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/optparse.py`" #: ../../library/optparse.rst:13 msgid "" @@ -371,7 +371,7 @@ msgstr "" #: ../../library/optparse.rst:291 msgid ":meth:`parse_args` returns two values:" -msgstr "" +msgstr ":meth:`parse_args` 回傳兩個值:" #: ../../library/optparse.rst:293 msgid "" @@ -427,6 +427,9 @@ msgstr "" #: ../../library/optparse.rst:330 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/optparse.rst:335 msgid "" @@ -521,7 +524,7 @@ msgstr "" #: ../../library/optparse.rst:407 ../../library/optparse.rst:928 msgid "``\"store_const\"``" -msgstr "" +msgstr "``\"store_const\"``" #: ../../library/optparse.rst:407 ../../library/optparse.rst:928 msgid "store a constant value" @@ -529,7 +532,7 @@ msgstr "" #: ../../library/optparse.rst:410 ../../library/optparse.rst:937 msgid "``\"append\"``" -msgstr "" +msgstr "``\"append\"``" #: ../../library/optparse.rst:410 ../../library/optparse.rst:937 msgid "append this option's argument to a list" @@ -537,7 +540,7 @@ msgstr "" #: ../../library/optparse.rst:413 ../../library/optparse.rst:943 msgid "``\"count\"``" -msgstr "" +msgstr "``\"count\"``" #: ../../library/optparse.rst:413 ../../library/optparse.rst:943 msgid "increment a counter by one" @@ -545,7 +548,7 @@ msgstr "" #: ../../library/optparse.rst:416 ../../library/optparse.rst:946 msgid "``\"callback\"``" -msgstr "" +msgstr "``\"callback\"``" #: ../../library/optparse.rst:416 ../../library/optparse.rst:946 msgid "call a specified function" @@ -997,7 +1000,7 @@ msgstr "" #: ../../library/optparse.rst:854 msgid "``prog``" -msgstr "" +msgstr "``prog``" #: ../../library/optparse.rst:853 msgid "" @@ -1093,7 +1096,7 @@ msgstr "" #: ../../library/optparse.rst:925 msgid "``\"store\"``" -msgstr "" +msgstr "``\"store\"``" #: ../../library/optparse.rst:925 msgid "store this option's argument (default)" @@ -1101,7 +1104,7 @@ msgstr "" #: ../../library/optparse.rst:931 msgid "``\"store_true\"``" -msgstr "" +msgstr "``\"store_true\"``" #: ../../library/optparse.rst:931 msgid "store ``True``" @@ -1109,7 +1112,7 @@ msgstr "" #: ../../library/optparse.rst:934 msgid "``\"store_false\"``" -msgstr "" +msgstr "``\"store_false\"``" #: ../../library/optparse.rst:934 msgid "store ``False``" @@ -1117,7 +1120,7 @@ msgstr "" #: ../../library/optparse.rst:940 msgid "``\"append_const\"``" -msgstr "" +msgstr "``\"append_const\"``" #: ../../library/optparse.rst:940 msgid "append a constant value to a list" @@ -1125,7 +1128,7 @@ msgstr "" #: ../../library/optparse.rst:949 ../../library/optparse.rst:1226 msgid "``\"help\"``" -msgstr "" +msgstr "``\"help\"``" #: ../../library/optparse.rst:949 msgid "" @@ -1152,6 +1155,9 @@ msgstr "" #: ../../library/optparse.rst:961 msgid "For example, when you call ::" msgstr "" +"例如說,當你呼叫:\n" +"\n" +"::" #: ../../library/optparse.rst:965 msgid "" @@ -1330,6 +1336,9 @@ msgstr "" #: ../../library/optparse.rst:1202 ../../library/optparse.rst:1240 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/optparse.rst:1108 msgid "As it parses the command line ::" @@ -1500,7 +1509,7 @@ msgstr "" #: ../../library/optparse.rst:1271 msgid "``\"version\"``" -msgstr "" +msgstr "``\"version\"``" #: ../../library/optparse.rst:1273 msgid "" @@ -1589,7 +1598,7 @@ msgstr "" #: ../../library/optparse.rst:1331 ../../library/optparse.rst:1345 #: ../../library/optparse.rst:1664 msgid "``args``" -msgstr "" +msgstr "``args``" #: ../../library/optparse.rst:1331 msgid "the list of arguments to process (default: ``sys.argv[1:]``)" @@ -1597,7 +1606,7 @@ msgstr "" #: ../../library/optparse.rst:1336 msgid "``values``" -msgstr "" +msgstr "``values``" #: ../../library/optparse.rst:1334 msgid "" @@ -1612,7 +1621,7 @@ msgstr "" #: ../../library/optparse.rst:1342 msgid "``options``" -msgstr "" +msgstr "``options``" #: ../../library/optparse.rst:1341 msgid "" @@ -1746,7 +1755,7 @@ msgstr "" #: ../../library/optparse.rst:1443 msgid "``\"resolve\"``" -msgstr "" +msgstr "``\"resolve\"``" #: ../../library/optparse.rst:1442 msgid "resolve option conflicts intelligently (see below)" @@ -1910,7 +1919,7 @@ msgstr "" #: ../../library/optparse.rst:1596 msgid ":attr:`~Option.type`" -msgstr "" +msgstr ":attr:`~Option.type`" #: ../../library/optparse.rst:1593 msgid "" @@ -1922,7 +1931,7 @@ msgstr "" #: ../../library/optparse.rst:1602 msgid ":attr:`~Option.nargs`" -msgstr "" +msgstr ":attr:`~Option.nargs`" #: ../../library/optparse.rst:1599 msgid "" @@ -1934,7 +1943,7 @@ msgstr "" #: ../../library/optparse.rst:1605 msgid ":attr:`~Option.callback_args`" -msgstr "" +msgstr ":attr:`~Option.callback_args`" #: ../../library/optparse.rst:1605 msgid "a tuple of extra positional arguments to pass to the callback" @@ -1942,7 +1951,7 @@ msgstr "" #: ../../library/optparse.rst:1609 msgid ":attr:`~Option.callback_kwargs`" -msgstr "" +msgstr ":attr:`~Option.callback_kwargs`" #: ../../library/optparse.rst:1608 msgid "a dictionary of extra keyword arguments to pass to the callback" @@ -1958,7 +1967,7 @@ msgstr "" #: ../../library/optparse.rst:1623 msgid "``option``" -msgstr "" +msgstr "``option``" #: ../../library/optparse.rst:1623 msgid "is the Option instance that's calling the callback" @@ -1966,7 +1975,7 @@ msgstr "" #: ../../library/optparse.rst:1630 msgid "``opt_str``" -msgstr "" +msgstr "``opt_str``" #: ../../library/optparse.rst:1626 msgid "" @@ -1979,7 +1988,7 @@ msgstr "" #: ../../library/optparse.rst:1637 msgid "``value``" -msgstr "" +msgstr "``value``" #: ../../library/optparse.rst:1633 msgid "" @@ -1993,7 +2002,7 @@ msgstr "" #: ../../library/optparse.rst:1660 msgid "``parser``" -msgstr "" +msgstr "``parser``" #: ../../library/optparse.rst:1640 msgid "" @@ -2003,7 +2012,7 @@ msgstr "" #: ../../library/optparse.rst:1647 msgid "``parser.largs``" -msgstr "" +msgstr "``parser.largs``" #: ../../library/optparse.rst:1644 msgid "" @@ -2015,7 +2024,7 @@ msgstr "" #: ../../library/optparse.rst:1653 msgid "``parser.rargs``" -msgstr "" +msgstr "``parser.rargs``" #: ../../library/optparse.rst:1650 msgid "" @@ -2026,7 +2035,7 @@ msgstr "" #: ../../library/optparse.rst:1660 msgid "``parser.values``" -msgstr "" +msgstr "``parser.values``" #: ../../library/optparse.rst:1656 msgid "" @@ -2045,7 +2054,7 @@ msgstr "" #: ../../library/optparse.rst:1669 msgid "``kwargs``" -msgstr "" +msgstr "``kwargs``" #: ../../library/optparse.rst:1667 msgid "" diff --git a/library/os.path.po b/library/os.path.po index ec69b4764f..9f21a280b0 100644 --- a/library/os.path.po +++ b/library/os.path.po @@ -132,7 +132,7 @@ msgstr "" #: ../../library/os.path.rst:407 ../../library/os.path.rst:423 #: ../../library/os.path.rst:439 msgid ":ref:`Availability `: Unix, Windows." -msgstr "" +msgstr ":ref:`適用 `:Unix、Windows。" #: ../../library/os.path.rst:99 msgid "Accepts a sequence of :term:`path-like objects `." diff --git a/library/os.po b/library/os.po index 53b207948b..2cfe0d7b6d 100644 --- a/library/os.po +++ b/library/os.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/os.rst:7 msgid "**Source code:** :source:`Lib/os.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/os.py`" #: ../../library/os.rst:11 msgid "" @@ -162,7 +162,7 @@ msgstr "" #: ../../library/os.rst:108 msgid ":func:`sys.getfilesystemencoding()` returns ``'UTF-8'``." -msgstr "" +msgstr ":func:`sys.getfilesystemencoding()` 回傳 ``'UTF-8'``。" #: ../../library/os.rst:109 msgid "" @@ -315,7 +315,7 @@ msgstr "" #: ../../library/os.rst:4706 ../../library/os.rst:4727 #: ../../library/os.rst:4737 ../../library/os.rst:4746 msgid ":ref:`Availability `: Unix." -msgstr "" +msgstr ":ref:`適用 `:Unix。" #: ../../library/os.rst:173 msgid "" @@ -459,7 +459,7 @@ msgstr "" #: ../../library/os.rst:301 msgid ":ref:`Availability `: most flavors of Unix, Windows." -msgstr "" +msgstr ":ref:`適用 `:大部分的 Unix、Windows。" #: ../../library/os.rst:306 msgid "" @@ -475,7 +475,7 @@ msgstr "" #: ../../library/os.rst:313 msgid ":ref:`Availability `: most flavors of Unix." -msgstr "" +msgstr ":ref:`適用 `:大部分的 Unix。" #: ../../library/os.rst:319 msgid "" @@ -545,7 +545,7 @@ msgstr "" #: ../../library/os.rst:4145 ../../library/os.rst:4239 #: ../../library/os.rst:4263 msgid ":ref:`Availability `: Unix, Windows." -msgstr "" +msgstr ":ref:`適用 `:Unix、Windows。" #: ../../library/os.rst:402 msgid "" @@ -754,7 +754,7 @@ msgstr "" #: ../../library/os.rst:684 msgid ":attr:`sysname` - operating system name" -msgstr "" +msgstr ":attr:`sysname` - 作業系統名稱" #: ../../library/os.rst:685 msgid ":attr:`nodename` - name of machine on network (implementation-defined)" @@ -766,7 +766,7 @@ msgstr "" #: ../../library/os.rst:687 msgid ":attr:`version` - operating system version" -msgstr "" +msgstr ":attr:`version` - 作業系統版本" #: ../../library/os.rst:688 msgid ":attr:`machine` - hardware identifier" @@ -788,7 +788,7 @@ msgstr "" #: ../../library/os.rst:701 msgid ":ref:`Availability `: recent flavors of Unix." -msgstr "" +msgstr ":ref:`適用 `:近期的 Unix。" #: ../../library/os.rst:702 ../../library/os.rst:4264 msgid "" @@ -1255,7 +1255,7 @@ msgstr "" #: ../../library/os.rst:1134 ../../library/os.rst:1160 #: ../../library/os.rst:3819 msgid ":ref:`Availability `: some flavors of Unix." -msgstr "" +msgstr ":ref:`適用 `:部分的 Unix。" #: ../../library/os.rst:1135 ../../library/os.rst:1147 msgid "The new file descriptors are now non-inheritable." @@ -1327,11 +1327,11 @@ msgstr "" #: ../../library/os.rst:1227 msgid ":data:`RWF_HIPRI`" -msgstr "" +msgstr ":data:`RWF_HIPRI`" #: ../../library/os.rst:1228 msgid ":data:`RWF_NOWAIT`" -msgstr "" +msgstr ":data:`RWF_NOWAIT`" #: ../../library/os.rst:1230 ../../library/os.rst:1473 msgid "" @@ -1373,7 +1373,7 @@ msgstr "" #: ../../library/os.rst:1256 msgid ":ref:`Availability `: Linux 4.14 and newer." -msgstr "" +msgstr ":ref:`適用 `:Linux 4.14 以上。" #: ../../library/os.rst:1262 msgid "" @@ -1389,7 +1389,7 @@ msgstr "" #: ../../library/os.rst:1270 msgid ":ref:`Availability `: Linux 4.6 and newer." -msgstr "" +msgstr ":ref:`適用 `:Linux 4.6 以上。" #: ../../library/os.rst:1276 msgid "" @@ -1412,15 +1412,15 @@ msgstr "" #: ../../library/os.rst:1297 msgid ":data:`RWF_DSYNC`" -msgstr "" +msgstr ":data:`RWF_DSYNC`" #: ../../library/os.rst:1298 msgid ":data:`RWF_SYNC`" -msgstr "" +msgstr ":data:`RWF_SYNC`" #: ../../library/os.rst:1299 msgid ":data:`RWF_APPEND`" -msgstr "" +msgstr ":data:`RWF_APPEND`" #: ../../library/os.rst:1301 msgid "Return the total number of bytes actually written." @@ -1445,7 +1445,7 @@ msgstr "" #: ../../library/os.rst:1321 ../../library/os.rst:1331 msgid ":ref:`Availability `: Linux 4.7 and newer." -msgstr "" +msgstr ":ref:`適用 `:Linux 4.7 以上。" #: ../../library/os.rst:1327 msgid "" @@ -1465,7 +1465,7 @@ msgstr "" #: ../../library/os.rst:1345 msgid ":ref:`Availability `: Linux 4.16 and newer." -msgstr "" +msgstr ":ref:`適用 `:Linux 4.16 以上。" #: ../../library/os.rst:1351 msgid "Read at most *n* bytes from file descriptor *fd*." @@ -1716,7 +1716,7 @@ msgstr "" #: ../../library/os.rst:3561 ../../library/os.rst:4157 #: ../../library/os.rst:4203 msgid ":ref:`Availability `: Windows." -msgstr "" +msgstr ":ref:`適用 `:Windows。" #: ../../library/os.rst:1621 msgid "Set the \"inheritable\" flag of the specified handle." @@ -1885,51 +1885,51 @@ msgstr "" #: ../../library/os.rst:1772 msgid ":data:`stat.UF_NODUMP`" -msgstr "" +msgstr ":data:`stat.UF_NODUMP`" #: ../../library/os.rst:1773 msgid ":data:`stat.UF_IMMUTABLE`" -msgstr "" +msgstr ":data:`stat.UF_IMMUTABLE`" #: ../../library/os.rst:1774 msgid ":data:`stat.UF_APPEND`" -msgstr "" +msgstr ":data:`stat.UF_APPEND`" #: ../../library/os.rst:1775 msgid ":data:`stat.UF_OPAQUE`" -msgstr "" +msgstr ":data:`stat.UF_OPAQUE`" #: ../../library/os.rst:1776 msgid ":data:`stat.UF_NOUNLINK`" -msgstr "" +msgstr ":data:`stat.UF_NOUNLINK`" #: ../../library/os.rst:1777 msgid ":data:`stat.UF_COMPRESSED`" -msgstr "" +msgstr ":data:`stat.UF_COMPRESSED`" #: ../../library/os.rst:1778 msgid ":data:`stat.UF_HIDDEN`" -msgstr "" +msgstr ":data:`stat.UF_HIDDEN`" #: ../../library/os.rst:1779 msgid ":data:`stat.SF_ARCHIVED`" -msgstr "" +msgstr ":data:`stat.SF_ARCHIVED`" #: ../../library/os.rst:1780 msgid ":data:`stat.SF_IMMUTABLE`" -msgstr "" +msgstr ":data:`stat.SF_IMMUTABLE`" #: ../../library/os.rst:1781 msgid ":data:`stat.SF_APPEND`" -msgstr "" +msgstr ":data:`stat.SF_APPEND`" #: ../../library/os.rst:1782 msgid ":data:`stat.SF_NOUNLINK`" -msgstr "" +msgstr ":data:`stat.SF_NOUNLINK`" #: ../../library/os.rst:1783 msgid ":data:`stat.SF_SNAPSHOT`" -msgstr "" +msgstr ":data:`stat.SF_SNAPSHOT`" #: ../../library/os.rst:1785 msgid "" @@ -1955,79 +1955,79 @@ msgstr "" #: ../../library/os.rst:1804 msgid ":data:`stat.S_ISUID`" -msgstr "" +msgstr ":data:`stat.S_ISUID`" #: ../../library/os.rst:1805 msgid ":data:`stat.S_ISGID`" -msgstr "" +msgstr ":data:`stat.S_ISGID`" #: ../../library/os.rst:1806 msgid ":data:`stat.S_ENFMT`" -msgstr "" +msgstr ":data:`stat.S_ENFMT`" #: ../../library/os.rst:1807 msgid ":data:`stat.S_ISVTX`" -msgstr "" +msgstr ":data:`stat.S_ISVTX`" #: ../../library/os.rst:1808 msgid ":data:`stat.S_IREAD`" -msgstr "" +msgstr ":data:`stat.S_IREAD`" #: ../../library/os.rst:1809 msgid ":data:`stat.S_IWRITE`" -msgstr "" +msgstr ":data:`stat.S_IWRITE`" #: ../../library/os.rst:1810 msgid ":data:`stat.S_IEXEC`" -msgstr "" +msgstr ":data:`stat.S_IEXEC`" #: ../../library/os.rst:1811 msgid ":data:`stat.S_IRWXU`" -msgstr "" +msgstr ":data:`stat.S_IRWXU`" #: ../../library/os.rst:1812 msgid ":data:`stat.S_IRUSR`" -msgstr "" +msgstr ":data:`stat.S_IRUSR`" #: ../../library/os.rst:1813 msgid ":data:`stat.S_IWUSR`" -msgstr "" +msgstr ":data:`stat.S_IWUSR`" #: ../../library/os.rst:1814 msgid ":data:`stat.S_IXUSR`" -msgstr "" +msgstr ":data:`stat.S_IXUSR`" #: ../../library/os.rst:1815 msgid ":data:`stat.S_IRWXG`" -msgstr "" +msgstr ":data:`stat.S_IRWXG`" #: ../../library/os.rst:1816 msgid ":data:`stat.S_IRGRP`" -msgstr "" +msgstr ":data:`stat.S_IRGRP`" #: ../../library/os.rst:1817 msgid ":data:`stat.S_IWGRP`" -msgstr "" +msgstr ":data:`stat.S_IWGRP`" #: ../../library/os.rst:1818 msgid ":data:`stat.S_IXGRP`" -msgstr "" +msgstr ":data:`stat.S_IXGRP`" #: ../../library/os.rst:1819 msgid ":data:`stat.S_IRWXO`" -msgstr "" +msgstr ":data:`stat.S_IRWXO`" #: ../../library/os.rst:1820 msgid ":data:`stat.S_IROTH`" -msgstr "" +msgstr ":data:`stat.S_IROTH`" #: ../../library/os.rst:1821 msgid ":data:`stat.S_IWOTH`" -msgstr "" +msgstr ":data:`stat.S_IWOTH`" #: ../../library/os.rst:1822 msgid ":data:`stat.S_IXOTH`" -msgstr "" +msgstr ":data:`stat.S_IXOTH`" #: ../../library/os.rst:1824 ../../library/os.rst:1849 #: ../../library/os.rst:3103 @@ -2886,10 +2886,13 @@ msgstr "" #: ../../library/os.rst:2626 ../../library/os.rst:3354 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/os.rst:2639 msgid ":func:`fstat` and :func:`lstat` functions." -msgstr "" +msgstr ":func:`fstat` 和 :func:`lstat` 函式。" #: ../../library/os.rst:2641 msgid "" @@ -3650,7 +3653,7 @@ msgstr "" #: ../../library/os.rst:3381 ../../library/os.rst:3390 #: ../../library/os.rst:3398 ../../library/os.rst:3407 msgid ":ref:`Availability `: See :func:`eventfd`" -msgstr "" +msgstr ":ref:`適用 `:請見 :func:`eventfd`" #: ../../library/os.rst:3386 msgid "" @@ -4137,7 +4140,7 @@ msgstr "" #: ../../library/os.rst:3876 msgid ":ref:`Availability `: Linux 5.3+" -msgstr "" +msgstr ":ref:`適用 `:Linux 5.3+" #: ../../library/os.rst:3882 msgid "" @@ -4214,7 +4217,7 @@ msgstr "" #: ../../library/os.rst:3940 msgid "(``os.POSIX_SPAWN_OPEN``, *fd*, *path*, *flags*, *mode*)" -msgstr "" +msgstr "(``os.POSIX_SPAWN_OPEN``, *fd*, *path*, *flags*, *mode*)" #: ../../library/os.rst:3942 msgid "Performs ``os.dup2(os.open(path, flags, mode), fd)``." @@ -4222,7 +4225,7 @@ msgstr "" #: ../../library/os.rst:3946 msgid "(``os.POSIX_SPAWN_CLOSE``, *fd*)" -msgstr "" +msgstr "(``os.POSIX_SPAWN_CLOSE``, *fd*)" #: ../../library/os.rst:3948 msgid "Performs ``os.close(fd)``." @@ -4230,7 +4233,7 @@ msgstr "" #: ../../library/os.rst:3952 msgid "(``os.POSIX_SPAWN_DUP2``, *fd*, *new_fd*)" -msgstr "" +msgstr "(``os.POSIX_SPAWN_DUP2``, *fd*, *new_fd*)" #: ../../library/os.rst:3954 msgid "Performs ``os.dup2(fd, new_fd)``." @@ -4692,7 +4695,7 @@ msgstr "" #: ../../library/os.rst:4322 msgid ":ref:`Availability `: Linux 5.4+" -msgstr "" +msgstr ":ref:`適用 `:Linux 5.4+" #: ../../library/os.rst:4329 msgid "" @@ -4835,7 +4838,7 @@ msgstr "" #: ../../library/os.rst:4463 msgid ":ref:`Availability `: some Unix systems." -msgstr "" +msgstr ":ref:`適用 `:部分 Unix 系統。" #: ../../library/os.rst:4468 msgid "" @@ -5238,7 +5241,7 @@ msgstr "" #: ../../library/os.rst:4867 msgid ":ref:`Availability `: Linux 3.17 and newer." -msgstr "" +msgstr ":ref:`適用 `:Linux 3.17 以上。" #: ../../library/os.rst:4872 msgid "Return a string of *size* random bytes suitable for cryptographic use." diff --git a/library/ossaudiodev.po b/library/ossaudiodev.po index 3ebb63feae..9157ff6fc1 100644 --- a/library/ossaudiodev.po +++ b/library/ossaudiodev.po @@ -225,7 +225,7 @@ msgstr "" #: ../../library/ossaudiodev.rst:200 msgid "Format" -msgstr "" +msgstr "格式" #: ../../library/ossaudiodev.rst:200 ../../library/ossaudiodev.rst:254 msgid "Description" @@ -233,7 +233,7 @@ msgstr "描述" #: ../../library/ossaudiodev.rst:202 msgid ":const:`AFMT_MU_LAW`" -msgstr "" +msgstr ":const:`AFMT_MU_LAW`" #: ../../library/ossaudiodev.rst:202 msgid "" @@ -242,7 +242,7 @@ msgstr "" #: ../../library/ossaudiodev.rst:205 msgid ":const:`AFMT_A_LAW`" -msgstr "" +msgstr ":const:`AFMT_A_LAW`" #: ../../library/ossaudiodev.rst:205 msgid "a logarithmic encoding" @@ -250,7 +250,7 @@ msgstr "" #: ../../library/ossaudiodev.rst:207 msgid ":const:`AFMT_IMA_ADPCM`" -msgstr "" +msgstr ":const:`AFMT_IMA_ADPCM`" #: ../../library/ossaudiodev.rst:207 msgid "" @@ -259,7 +259,7 @@ msgstr "" #: ../../library/ossaudiodev.rst:210 msgid ":const:`AFMT_U8`" -msgstr "" +msgstr ":const:`AFMT_U8`" #: ../../library/ossaudiodev.rst:210 msgid "Unsigned, 8-bit audio" @@ -267,7 +267,7 @@ msgstr "" #: ../../library/ossaudiodev.rst:212 msgid ":const:`AFMT_S16_LE`" -msgstr "" +msgstr ":const:`AFMT_S16_LE`" #: ../../library/ossaudiodev.rst:212 msgid "" @@ -276,7 +276,7 @@ msgstr "" #: ../../library/ossaudiodev.rst:215 msgid ":const:`AFMT_S16_BE`" -msgstr "" +msgstr ":const:`AFMT_S16_BE`" #: ../../library/ossaudiodev.rst:215 msgid "" @@ -285,7 +285,7 @@ msgstr "" #: ../../library/ossaudiodev.rst:218 msgid ":const:`AFMT_S8`" -msgstr "" +msgstr ":const:`AFMT_S8`" #: ../../library/ossaudiodev.rst:218 msgid "Signed, 8 bit audio" @@ -293,7 +293,7 @@ msgstr "" #: ../../library/ossaudiodev.rst:220 msgid ":const:`AFMT_U16_LE`" -msgstr "" +msgstr ":const:`AFMT_U16_LE`" #: ../../library/ossaudiodev.rst:220 msgid "Unsigned, 16-bit little-endian audio" @@ -301,7 +301,7 @@ msgstr "" #: ../../library/ossaudiodev.rst:222 msgid ":const:`AFMT_U16_BE`" -msgstr "" +msgstr ":const:`AFMT_U16_BE`" #: ../../library/ossaudiodev.rst:222 msgid "Unsigned, 16-bit big-endian audio" @@ -344,7 +344,7 @@ msgstr "" #: ../../library/ossaudiodev.rst:256 msgid "8000" -msgstr "" +msgstr "8000" #: ../../library/ossaudiodev.rst:256 msgid "default rate for :file:`/dev/audio`" @@ -352,7 +352,7 @@ msgstr "" #: ../../library/ossaudiodev.rst:258 msgid "11025" -msgstr "" +msgstr "11025" #: ../../library/ossaudiodev.rst:258 msgid "speech recording" @@ -360,11 +360,11 @@ msgstr "" #: ../../library/ossaudiodev.rst:260 msgid "22050" -msgstr "" +msgstr "22050" #: ../../library/ossaudiodev.rst:262 msgid "44100" -msgstr "" +msgstr "44100" #: ../../library/ossaudiodev.rst:262 msgid "CD quality audio (at 16 bits/sample and 2 channels)" @@ -372,7 +372,7 @@ msgstr "" #: ../../library/ossaudiodev.rst:265 msgid "96000" -msgstr "" +msgstr "96000" #: ../../library/ossaudiodev.rst:265 msgid "DVD quality audio (at 24 bits/sample)" @@ -422,10 +422,16 @@ msgstr "" #: ../../library/ossaudiodev.rst:306 msgid "For example, ::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/ossaudiodev.rst:310 msgid "is equivalent to ::" msgstr "" +"等價於:\n" +"\n" +"::" #: ../../library/ossaudiodev.rst:319 msgid "Returns the size of the hardware buffer, in samples." diff --git a/library/pathlib.po b/library/pathlib.po index e603192ea9..ffe3595c94 100644 --- a/library/pathlib.po +++ b/library/pathlib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/pathlib.rst:10 msgid "**Source code:** :source:`Lib/pathlib.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/pathlib.py`" #: ../../library/pathlib.rst:16 msgid "" @@ -933,219 +933,219 @@ msgstr "" #: ../../library/pathlib.rst:1246 msgid ":mod:`os` and :mod:`os.path`" -msgstr "" +msgstr ":mod:`os` 和 :mod:`os.path`" #: ../../library/pathlib.rst:1246 msgid ":mod:`pathlib`" -msgstr "" +msgstr ":mod:`pathlib`" #: ../../library/pathlib.rst:1248 msgid ":func:`os.path.abspath`" -msgstr "" +msgstr ":func:`os.path.abspath`" #: ../../library/pathlib.rst:1248 msgid ":meth:`Path.resolve` [#]_" -msgstr "" +msgstr ":meth:`Path.resolve` [#]_" #: ../../library/pathlib.rst:1249 msgid ":func:`os.chmod`" -msgstr "" +msgstr ":func:`os.chmod`" #: ../../library/pathlib.rst:1249 msgid ":meth:`Path.chmod`" -msgstr "" +msgstr ":meth:`Path.chmod`" #: ../../library/pathlib.rst:1250 msgid ":func:`os.mkdir`" -msgstr "" +msgstr ":func:`os.mkdir`" #: ../../library/pathlib.rst:1250 ../../library/pathlib.rst:1251 msgid ":meth:`Path.mkdir`" -msgstr "" +msgstr ":meth:`Path.mkdir`" #: ../../library/pathlib.rst:1251 msgid ":func:`os.makedirs`" -msgstr "" +msgstr ":func:`os.makedirs`" #: ../../library/pathlib.rst:1252 msgid ":func:`os.rename`" -msgstr "" +msgstr ":func:`os.rename`" #: ../../library/pathlib.rst:1252 msgid ":meth:`Path.rename`" -msgstr "" +msgstr ":meth:`Path.rename`" #: ../../library/pathlib.rst:1253 msgid ":func:`os.replace`" -msgstr "" +msgstr ":func:`os.replace`" #: ../../library/pathlib.rst:1253 msgid ":meth:`Path.replace`" -msgstr "" +msgstr ":meth:`Path.replace`" #: ../../library/pathlib.rst:1254 msgid ":func:`os.rmdir`" -msgstr "" +msgstr ":func:`os.rmdir`" #: ../../library/pathlib.rst:1254 msgid ":meth:`Path.rmdir`" -msgstr "" +msgstr ":meth:`Path.rmdir`" #: ../../library/pathlib.rst:1255 msgid ":func:`os.remove`, :func:`os.unlink`" -msgstr "" +msgstr ":func:`os.remove`, :func:`os.unlink`" #: ../../library/pathlib.rst:1255 msgid ":meth:`Path.unlink`" -msgstr "" +msgstr ":meth:`Path.unlink`" #: ../../library/pathlib.rst:1256 msgid ":func:`os.getcwd`" -msgstr "" +msgstr ":func:`os.getcwd`" #: ../../library/pathlib.rst:1256 msgid ":func:`Path.cwd`" -msgstr "" +msgstr ":func:`Path.cwd`" #: ../../library/pathlib.rst:1257 msgid ":func:`os.path.exists`" -msgstr "" +msgstr ":func:`os.path.exists`" #: ../../library/pathlib.rst:1257 msgid ":meth:`Path.exists`" -msgstr "" +msgstr ":meth:`Path.exists`" #: ../../library/pathlib.rst:1258 msgid ":func:`os.path.expanduser`" -msgstr "" +msgstr ":func:`os.path.expanduser`" #: ../../library/pathlib.rst:1258 msgid ":meth:`Path.expanduser` and :meth:`Path.home`" -msgstr "" +msgstr ":meth:`Path.expanduser` 和 :meth:`Path.home`" #: ../../library/pathlib.rst:1260 msgid ":func:`os.listdir`" -msgstr "" +msgstr ":func:`os.listdir`" #: ../../library/pathlib.rst:1260 msgid ":meth:`Path.iterdir`" -msgstr "" +msgstr ":meth:`Path.iterdir`" #: ../../library/pathlib.rst:1261 msgid ":func:`os.path.isdir`" -msgstr "" +msgstr ":func:`os.path.isdir`" #: ../../library/pathlib.rst:1261 msgid ":meth:`Path.is_dir`" -msgstr "" +msgstr ":meth:`Path.is_dir`" #: ../../library/pathlib.rst:1262 msgid ":func:`os.path.isfile`" -msgstr "" +msgstr ":func:`os.path.isfile`" #: ../../library/pathlib.rst:1262 msgid ":meth:`Path.is_file`" -msgstr "" +msgstr ":meth:`Path.is_file`" #: ../../library/pathlib.rst:1263 msgid ":func:`os.path.islink`" -msgstr "" +msgstr ":func:`os.path.islink`" #: ../../library/pathlib.rst:1263 msgid ":meth:`Path.is_symlink`" -msgstr "" +msgstr ":meth:`Path.is_symlink`" #: ../../library/pathlib.rst:1264 msgid ":func:`os.link`" -msgstr "" +msgstr ":func:`os.link`" #: ../../library/pathlib.rst:1264 msgid ":meth:`Path.hardlink_to`" -msgstr "" +msgstr ":meth:`Path.hardlink_to`" #: ../../library/pathlib.rst:1265 msgid ":func:`os.symlink`" -msgstr "" +msgstr ":func:`os.symlink`" #: ../../library/pathlib.rst:1265 msgid ":meth:`Path.symlink_to`" -msgstr "" +msgstr ":meth:`Path.symlink_to`" #: ../../library/pathlib.rst:1266 msgid ":func:`os.readlink`" -msgstr "" +msgstr ":func:`os.readlink`" #: ../../library/pathlib.rst:1266 msgid ":meth:`Path.readlink`" -msgstr "" +msgstr ":meth:`Path.readlink`" #: ../../library/pathlib.rst:1267 msgid ":func:`os.path.relpath`" -msgstr "" +msgstr ":func:`os.path.relpath`" #: ../../library/pathlib.rst:1267 msgid ":meth:`Path.relative_to` [#]_" -msgstr "" +msgstr ":meth:`Path.relative_to` [#]_" #: ../../library/pathlib.rst:1268 msgid ":func:`os.stat`" -msgstr "" +msgstr ":func:`os.stat`" #: ../../library/pathlib.rst:1268 msgid ":meth:`Path.stat`, :meth:`Path.owner`, :meth:`Path.group`" -msgstr "" +msgstr ":meth:`Path.stat`, :meth:`Path.owner`, :meth:`Path.group`" #: ../../library/pathlib.rst:1271 msgid ":func:`os.path.isabs`" -msgstr "" +msgstr ":func:`os.path.isabs`" #: ../../library/pathlib.rst:1271 msgid ":meth:`PurePath.is_absolute`" -msgstr "" +msgstr ":meth:`PurePath.is_absolute`" #: ../../library/pathlib.rst:1272 msgid ":func:`os.path.join`" -msgstr "" +msgstr ":func:`os.path.join`" #: ../../library/pathlib.rst:1272 msgid ":func:`PurePath.joinpath`" -msgstr "" +msgstr ":func:`PurePath.joinpath`" #: ../../library/pathlib.rst:1273 msgid ":func:`os.path.basename`" -msgstr "" +msgstr ":func:`os.path.basename`" #: ../../library/pathlib.rst:1273 msgid ":data:`PurePath.name`" -msgstr "" +msgstr ":data:`PurePath.name`" #: ../../library/pathlib.rst:1274 msgid ":func:`os.path.dirname`" -msgstr "" +msgstr ":func:`os.path.dirname`" #: ../../library/pathlib.rst:1274 msgid ":data:`PurePath.parent`" -msgstr "" +msgstr ":data:`PurePath.parent`" #: ../../library/pathlib.rst:1275 msgid ":func:`os.path.samefile`" -msgstr "" +msgstr ":func:`os.path.samefile`" #: ../../library/pathlib.rst:1275 msgid ":meth:`Path.samefile`" -msgstr "" +msgstr ":meth:`Path.samefile`" #: ../../library/pathlib.rst:1276 msgid ":func:`os.path.splitext`" -msgstr "" +msgstr ":func:`os.path.splitext`" #: ../../library/pathlib.rst:1276 msgid ":data:`PurePath.suffix`" -msgstr "" +msgstr ":data:`PurePath.suffix`" #: ../../library/pathlib.rst:1280 msgid "Footnotes" -msgstr "" +msgstr "註解" #: ../../library/pathlib.rst:1281 msgid "" diff --git a/library/pdb.po b/library/pdb.po index d9b519fb88..926ec21ceb 100644 --- a/library/pdb.po +++ b/library/pdb.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/pdb.rst:9 msgid "**Source code:** :source:`Lib/pdb.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/pdb.py`" #: ../../library/pdb.rst:15 msgid "" diff --git a/library/pickle.po b/library/pickle.po index ef5ab77ee9..5a676c8e7c 100644 --- a/library/pickle.po +++ b/library/pickle.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/pickle.rst:10 msgid "**Source code:** :source:`Lib/pickle.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/pickle.py`" #: ../../library/pickle.rst:22 msgid "" @@ -263,7 +263,7 @@ msgstr "" #: ../../library/pickle.rst:181 msgid "Module Interface" -msgstr "" +msgstr "模組介面" #: ../../library/pickle.rst:183 msgid "" @@ -659,7 +659,7 @@ msgstr "" #: ../../library/pickle.rst:497 msgid "``None``, ``True``, and ``False``" -msgstr "" +msgstr "``None``\\ 、\\ ``True`` 和 ``False``" #: ../../library/pickle.rst:499 msgid "integers, floating point numbers, complex numbers" @@ -1015,6 +1015,9 @@ msgstr "" #: ../../library/pickle.rst:774 msgid "For example ::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/pickle.rst:781 msgid "" @@ -1175,7 +1178,7 @@ msgstr "" #: ../../library/pickle.rst:985 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/pickle.rst:987 msgid "" @@ -1276,7 +1279,7 @@ msgstr "" #: ../../library/pickle.rst:1137 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/pickle.rst:1139 msgid "" @@ -1289,7 +1292,7 @@ msgstr "" #: ../../library/pickle.rst:1172 msgid "Module :mod:`copyreg`" -msgstr "" +msgstr ":mod:`copyreg` 模組" #: ../../library/pickle.rst:1172 msgid "Pickle interface constructor registration for extension types." @@ -1297,7 +1300,7 @@ msgstr "" #: ../../library/pickle.rst:1175 msgid "Module :mod:`pickletools`" -msgstr "" +msgstr ":mod:`pickletools` 模組" #: ../../library/pickle.rst:1175 msgid "Tools for working with and analyzing pickled data." @@ -1305,7 +1308,7 @@ msgstr "" #: ../../library/pickle.rst:1178 msgid "Module :mod:`shelve`" -msgstr "" +msgstr ":mod:`shelve` 模組" #: ../../library/pickle.rst:1178 msgid "Indexed databases of objects; uses :mod:`pickle`." @@ -1313,7 +1316,7 @@ msgstr "" #: ../../library/pickle.rst:1181 msgid "Module :mod:`copy`" -msgstr "" +msgstr ":mod:`copy` 模組" #: ../../library/pickle.rst:1181 msgid "Shallow and deep object copying." @@ -1321,7 +1324,7 @@ msgstr "" #: ../../library/pickle.rst:1183 msgid "Module :mod:`marshal`" -msgstr "" +msgstr ":mod:`marshal` 模組" #: ../../library/pickle.rst:1184 msgid "High-performance serialization of built-in types." diff --git a/library/pickletools.po b/library/pickletools.po index b10c728697..f13edfc641 100644 --- a/library/pickletools.po +++ b/library/pickletools.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/pickletools.rst:8 msgid "**Source code:** :source:`Lib/pickletools.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/pickletools.py`" #: ../../library/pickletools.rst:13 msgid "" diff --git a/library/pipes.po b/library/pipes.po index 04e163567b..bff734570e 100644 --- a/library/pipes.po +++ b/library/pipes.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/pipes.rst:10 msgid "**Source code:** :source:`Lib/pipes.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/pipes.py`" #: ../../library/pipes.rst:14 msgid "" @@ -40,7 +40,7 @@ msgstr "" #: ../../library/pipes.rst:21 msgid ":ref:`Availability `: Unix. Not available on VxWorks." -msgstr "" +msgstr ":ref:`適用 `:Unix,VxWorks 上不支援。" #: ../../library/pipes.rst:22 msgid "The :mod:`pipes` module defines the following class:" @@ -53,6 +53,9 @@ msgstr "" #: ../../library/pipes.rst:29 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/pipes.rst:44 msgid "Template Objects" diff --git a/library/pkgutil.po b/library/pkgutil.po index 492dad86a2..0b94fa8953 100644 --- a/library/pkgutil.po +++ b/library/pkgutil.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/pkgutil.rst:7 msgid "**Source code:** :source:`Lib/pkgutil.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/pkgutil.py`" #: ../../library/pkgutil.rst:11 msgid "" @@ -228,6 +228,9 @@ msgstr "" #: ../../library/pkgutil.rst:185 msgid "Examples::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/pkgutil.rst:207 msgid "Get a resource from a package." @@ -284,11 +287,11 @@ msgstr "" #: ../../library/pkgutil.rst:244 msgid "``W(.W)*``" -msgstr "" +msgstr "``W(.W)*``" #: ../../library/pkgutil.rst:245 msgid "``W(.W)*:(W(.W)*)?``" -msgstr "" +msgstr "``W(.W)*:(W(.W)*)?``" #: ../../library/pkgutil.rst:247 msgid "" diff --git a/library/platform.po b/library/platform.po index daa5789740..0da41228b3 100644 --- a/library/platform.po +++ b/library/platform.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/platform.rst:10 msgid "**Source code:** :source:`Lib/platform.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/platform.py`" #: ../../library/platform.rst:16 msgid "" @@ -354,3 +354,6 @@ msgstr "" #: ../../library/platform.rst:283 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" diff --git a/library/plistlib.po b/library/plistlib.po index 81f67c8075..ba6f913310 100644 --- a/library/plistlib.po +++ b/library/plistlib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/plistlib.rst:11 msgid "**Source code:** :source:`Lib/plistlib.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/plistlib.py`" #: ../../library/plistlib.rst:19 msgid "" @@ -215,7 +215,7 @@ msgstr "" #: ../../library/plistlib.rst:158 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/plistlib.rst:160 msgid "Generating a plist::" diff --git a/library/poplib.po b/library/poplib.po index 01ea7415f2..136c6cb121 100644 --- a/library/poplib.po +++ b/library/poplib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/poplib.rst:10 msgid "**Source code:** :source:`Lib/poplib.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/poplib.py`" #: ../../library/poplib.rst:16 msgid "" @@ -137,7 +137,7 @@ msgstr "" #: ../../library/poplib.rst:108 msgid "Module :mod:`imaplib`" -msgstr "" +msgstr ":mod:`imaplib` 模組" #: ../../library/poplib.rst:108 msgid "The standard Python IMAP module." @@ -305,7 +305,7 @@ msgstr "" #: ../../library/poplib.rst:261 msgid "POP3 Example" -msgstr "" +msgstr "POP3 範例" #: ../../library/poplib.rst:263 msgid "" diff --git a/library/pprint.po b/library/pprint.po index 5263d8bb70..bbc1499c62 100644 --- a/library/pprint.po +++ b/library/pprint.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/pprint.rst:10 msgid "**Source code:** :source:`Lib/pprint.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/pprint.py`" #: ../../library/pprint.rst:14 msgid "" @@ -191,7 +191,7 @@ msgstr "" #: ../../library/pprint.rst:205 msgid "PrettyPrinter Objects" -msgstr "" +msgstr "PrettyPrinter 物件" #: ../../library/pprint.rst:207 msgid ":class:`PrettyPrinter` instances have the following methods:" @@ -257,7 +257,7 @@ msgstr "" #: ../../library/pprint.rst:267 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/pprint.rst:269 msgid "" diff --git a/library/profile.po b/library/profile.po index fb4997ad7d..7c3eea2b02 100644 --- a/library/profile.po +++ b/library/profile.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/profile.rst:7 msgid "**Source code:** :source:`Lib/profile.py` and :source:`Lib/pstats.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/profile.py` and :source:`Lib/pstats.py`" #: ../../library/profile.rst:14 msgid "Introduction to the profilers" @@ -108,7 +108,7 @@ msgstr "" #: ../../library/profile.rst:88 msgid "ncalls" -msgstr "" +msgstr "ncalls" #: ../../library/profile.rst:88 msgid "for the number of calls." @@ -116,7 +116,7 @@ msgstr "" #: ../../library/profile.rst:92 msgid "tottime" -msgstr "" +msgstr "tottime" #: ../../library/profile.rst:91 msgid "" @@ -126,7 +126,7 @@ msgstr "" #: ../../library/profile.rst:95 ../../library/profile.rst:102 msgid "percall" -msgstr "" +msgstr "percall" #: ../../library/profile.rst:95 msgid "is the quotient of ``tottime`` divided by ``ncalls``" @@ -134,7 +134,7 @@ msgstr "" #: ../../library/profile.rst:99 msgid "cumtime" -msgstr "" +msgstr "cumtime" #: ../../library/profile.rst:98 msgid "" @@ -516,11 +516,11 @@ msgstr "" #: ../../library/profile.rst:408 msgid "``'calls'``" -msgstr "" +msgstr "``'calls'``" #: ../../library/profile.rst:408 msgid "SortKey.CALLS" -msgstr "" +msgstr "SortKey.CALLS" #: ../../library/profile.rst:408 ../../library/profile.rst:420 msgid "call count" @@ -528,11 +528,11 @@ msgstr "" #: ../../library/profile.rst:410 msgid "``'cumulative'``" -msgstr "" +msgstr "``'cumulative'``" #: ../../library/profile.rst:410 msgid "SortKey.CUMULATIVE" -msgstr "" +msgstr "SortKey.CUMULATIVE" #: ../../library/profile.rst:410 ../../library/profile.rst:412 msgid "cumulative time" @@ -540,17 +540,17 @@ msgstr "" #: ../../library/profile.rst:412 msgid "``'cumtime'``" -msgstr "" +msgstr "``'cumtime'``" #: ../../library/profile.rst:412 ../../library/profile.rst:414 #: ../../library/profile.rst:418 ../../library/profile.rst:420 #: ../../library/profile.rst:434 msgid "N/A" -msgstr "" +msgstr "N/A" #: ../../library/profile.rst:414 msgid "``'file'``" -msgstr "" +msgstr "``'file'``" #: ../../library/profile.rst:414 ../../library/profile.rst:416 #: ../../library/profile.rst:418 @@ -559,27 +559,27 @@ msgstr "" #: ../../library/profile.rst:416 msgid "``'filename'``" -msgstr "" +msgstr "``'filename'``" #: ../../library/profile.rst:416 msgid "SortKey.FILENAME" -msgstr "" +msgstr "SortKey.FILENAME" #: ../../library/profile.rst:418 msgid "``'module'``" -msgstr "" +msgstr "``'module'``" #: ../../library/profile.rst:420 msgid "``'ncalls'``" -msgstr "" +msgstr "``'ncalls'``" #: ../../library/profile.rst:422 msgid "``'pcalls'``" -msgstr "" +msgstr "``'pcalls'``" #: ../../library/profile.rst:422 msgid "SortKey.PCALLS" -msgstr "" +msgstr "SortKey.PCALLS" #: ../../library/profile.rst:422 msgid "primitive call count" @@ -587,11 +587,11 @@ msgstr "" #: ../../library/profile.rst:424 msgid "``'line'``" -msgstr "" +msgstr "``'line'``" #: ../../library/profile.rst:424 msgid "SortKey.LINE" -msgstr "" +msgstr "SortKey.LINE" #: ../../library/profile.rst:424 msgid "line number" @@ -599,11 +599,11 @@ msgstr "" #: ../../library/profile.rst:426 msgid "``'name'``" -msgstr "" +msgstr "``'name'``" #: ../../library/profile.rst:426 msgid "SortKey.NAME" -msgstr "" +msgstr "SortKey.NAME" #: ../../library/profile.rst:426 msgid "function name" @@ -611,11 +611,11 @@ msgstr "" #: ../../library/profile.rst:428 msgid "``'nfl'``" -msgstr "" +msgstr "``'nfl'``" #: ../../library/profile.rst:428 msgid "SortKey.NFL" -msgstr "" +msgstr "SortKey.NFL" #: ../../library/profile.rst:428 msgid "name/file/line" @@ -623,11 +623,11 @@ msgstr "" #: ../../library/profile.rst:430 msgid "``'stdname'``" -msgstr "" +msgstr "``'stdname'``" #: ../../library/profile.rst:430 msgid "SortKey.STDNAME" -msgstr "" +msgstr "SortKey.STDNAME" #: ../../library/profile.rst:430 msgid "standard name" @@ -635,11 +635,11 @@ msgstr "" #: ../../library/profile.rst:432 msgid "``'time'``" -msgstr "" +msgstr "``'time'``" #: ../../library/profile.rst:432 msgid "SortKey.TIME" -msgstr "" +msgstr "SortKey.TIME" #: ../../library/profile.rst:432 ../../library/profile.rst:434 msgid "internal time" @@ -647,7 +647,7 @@ msgstr "" #: ../../library/profile.rst:434 msgid "``'tottime'``" -msgstr "" +msgstr "``'tottime'``" #: ../../library/profile.rst:437 msgid "" @@ -811,7 +811,7 @@ msgstr "" #: ../../library/profile.rst:575 msgid "Limitations" -msgstr "" +msgstr "限制" #: ../../library/profile.rst:577 msgid "" @@ -853,7 +853,7 @@ msgstr "" #: ../../library/profile.rst:609 msgid "Calibration" -msgstr "" +msgstr "校正" #: ../../library/profile.rst:611 msgid "" @@ -913,7 +913,7 @@ msgstr "" #: ../../library/profile.rst:678 msgid ":class:`profile.Profile`" -msgstr "" +msgstr ":class:`profile.Profile`" #: ../../library/profile.rst:665 msgid "" @@ -938,7 +938,7 @@ msgstr "" #: ../../library/profile.rst:692 msgid ":class:`cProfile.Profile`" -msgstr "" +msgstr ":class:`cProfile.Profile`" #: ../../library/profile.rst:681 msgid "" diff --git a/library/pty.po b/library/pty.po index ceb6ed2831..8251b087b7 100644 --- a/library/pty.po +++ b/library/pty.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/pty.rst:11 msgid "**Source code:** :source:`Lib/pty.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/pty.py`" #: ../../library/pty.rst:15 msgid "" @@ -128,7 +128,7 @@ msgstr "" #: ../../library/pty.rst:84 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/pty.rst:88 msgid "" diff --git a/library/pwd.po b/library/pwd.po index 6ddfe0887d..333f25da25 100644 --- a/library/pwd.po +++ b/library/pwd.po @@ -41,7 +41,7 @@ msgstr "" #: ../../library/pwd.rst:18 msgid "Attribute" -msgstr "" +msgstr "屬性" #: ../../library/pwd.rst:18 msgid "Meaning" @@ -53,7 +53,7 @@ msgstr "0" #: ../../library/pwd.rst:20 msgid "``pw_name``" -msgstr "" +msgstr "``pw_name``" #: ../../library/pwd.rst:20 msgid "Login name" @@ -65,7 +65,7 @@ msgstr "1" #: ../../library/pwd.rst:22 msgid "``pw_passwd``" -msgstr "" +msgstr "``pw_passwd``" #: ../../library/pwd.rst:22 msgid "Optional encrypted password" @@ -77,7 +77,7 @@ msgstr "2" #: ../../library/pwd.rst:24 msgid "``pw_uid``" -msgstr "" +msgstr "``pw_uid``" #: ../../library/pwd.rst:24 msgid "Numerical user ID" @@ -85,11 +85,11 @@ msgstr "" #: ../../library/pwd.rst:26 msgid "3" -msgstr "" +msgstr "3" #: ../../library/pwd.rst:26 msgid "``pw_gid``" -msgstr "" +msgstr "``pw_gid``" #: ../../library/pwd.rst:26 msgid "Numerical group ID" @@ -101,7 +101,7 @@ msgstr "4" #: ../../library/pwd.rst:28 msgid "``pw_gecos``" -msgstr "" +msgstr "``pw_gecos``" #: ../../library/pwd.rst:28 msgid "User name or comment field" @@ -109,11 +109,11 @@ msgstr "" #: ../../library/pwd.rst:30 msgid "5" -msgstr "" +msgstr "5" #: ../../library/pwd.rst:30 msgid "``pw_dir``" -msgstr "" +msgstr "``pw_dir``" #: ../../library/pwd.rst:30 msgid "User home directory" @@ -121,11 +121,11 @@ msgstr "" #: ../../library/pwd.rst:32 msgid "6" -msgstr "" +msgstr "6" #: ../../library/pwd.rst:32 msgid "``pw_shell``" -msgstr "" +msgstr "``pw_shell``" #: ../../library/pwd.rst:32 msgid "User command interpreter" @@ -168,7 +168,7 @@ msgstr "" #: ../../library/pwd.rst:72 msgid "Module :mod:`grp`" -msgstr "" +msgstr ":mod:`grp` 模組" #: ../../library/pwd.rst:72 msgid "An interface to the group database, similar to this." @@ -176,7 +176,7 @@ msgstr "" #: ../../library/pwd.rst:74 msgid "Module :mod:`spwd`" -msgstr "" +msgstr ":mod:`spwd` 模組" #: ../../library/pwd.rst:75 msgid "An interface to the shadow password database, similar to this." diff --git a/library/py_compile.po b/library/py_compile.po index 7d74aeadbe..0b4116e6bc 100644 --- a/library/py_compile.po +++ b/library/py_compile.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/py_compile.rst:10 msgid "**Source code:** :source:`Lib/py_compile.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/py_compile.py`" #: ../../library/py_compile.rst:16 msgid "" @@ -200,7 +200,7 @@ msgstr "" #: ../../library/py_compile.rst:159 msgid "Module :mod:`compileall`" -msgstr "" +msgstr ":mod:`compileall` 模組" #: ../../library/py_compile.rst:160 msgid "Utilities to compile all Python source files in a directory tree." diff --git a/library/pyclbr.po b/library/pyclbr.po index 97e4203653..fdd843036a 100644 --- a/library/pyclbr.po +++ b/library/pyclbr.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/pyclbr.rst:9 msgid "**Source code:** :source:`Lib/pyclbr.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/pyclbr.py`" #: ../../library/pyclbr.rst:13 msgid "" diff --git a/library/pydoc.po b/library/pydoc.po index f67e85300c..8e2de3d108 100644 --- a/library/pydoc.po +++ b/library/pydoc.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/pydoc.rst:10 msgid "**Source code:** :source:`Lib/pydoc.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/pydoc.py`" #: ../../library/pydoc.rst:19 msgid "" diff --git a/library/pyexpat.po b/library/pyexpat.po index f5164825d8..452684b87d 100644 --- a/library/pyexpat.po +++ b/library/pyexpat.po @@ -216,7 +216,7 @@ msgstr "" #: ../../library/pyexpat.rst:199 msgid ":class:`xmlparser` objects have the following attributes:" -msgstr "" +msgstr ":class:`xmlparser` 物件擁有以下屬性:" #: ../../library/pyexpat.rst:204 msgid "" @@ -541,7 +541,7 @@ msgstr "" #: ../../library/pyexpat.rst:528 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/pyexpat.rst:530 msgid "" diff --git a/library/queue.po b/library/queue.po index 1ff1dcae7d..2416042e25 100644 --- a/library/queue.po +++ b/library/queue.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/queue.rst:7 msgid "**Source code:** :source:`Lib/queue.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/queue.py`" #: ../../library/queue.rst:11 msgid "" @@ -285,7 +285,7 @@ msgstr "" #: ../../library/queue.rst:275 msgid "Class :class:`multiprocessing.Queue`" -msgstr "" +msgstr ":class:`multiprocessing.Queue` 類型" #: ../../library/queue.rst:274 msgid "" diff --git a/library/quopri.po b/library/quopri.po index ed3c8de173..33997881ef 100644 --- a/library/quopri.po +++ b/library/quopri.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/quopri.rst:7 msgid "**Source code:** :source:`Lib/quopri.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/quopri.py`" #: ../../library/quopri.rst:15 msgid "" @@ -74,7 +74,7 @@ msgstr "" #: ../../library/quopri.rst:62 msgid "Module :mod:`base64`" -msgstr "" +msgstr ":mod:`base64` 模組" #: ../../library/quopri.rst:63 msgid "Encode and decode MIME base64 data" diff --git a/library/random.po b/library/random.po index 6cb2e2cbea..caed168093 100644 --- a/library/random.po +++ b/library/random.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/random.rst:7 msgid "**Source code:** :source:`Lib/random.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/random.py`" #: ../../library/random.rst:11 msgid "" @@ -543,15 +543,21 @@ msgstr "" #: ../../library/random.rst:415 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/random.rst:417 msgid "Basic examples::" msgstr "" +"基礎範例:\n" +"\n" +"::" #: ../../library/random.rst:445 msgid "Simulations::" msgstr "" +"模擬:\n" +"\n" +"::" #: ../../library/random.rst:473 msgid "" diff --git a/library/re.po b/library/re.po index 2af113e6ff..bbded0046c 100644 --- a/library/re.po +++ b/library/re.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/re.rst:10 msgid "**Source code:** :source:`Lib/re.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/re.py`" #: ../../library/re.rst:14 msgid "" @@ -147,7 +147,7 @@ msgstr "" #: ../../library/re.rst:104 ../../library/re.rst:1419 msgid "``.``" -msgstr "" +msgstr "``.``" #: ../../library/re.rst:102 msgid "" @@ -158,7 +158,7 @@ msgstr "" #: ../../library/re.rst:110 msgid "``^``" -msgstr "" +msgstr "``^``" #: ../../library/re.rst:109 msgid "" @@ -168,7 +168,7 @@ msgstr "" #: ../../library/re.rst:121 msgid "``$``" -msgstr "" +msgstr "``$``" #: ../../library/re.rst:115 msgid "" @@ -184,7 +184,7 @@ msgstr "" #: ../../library/re.rst:128 msgid "``*``" -msgstr "" +msgstr "``*``" #: ../../library/re.rst:126 msgid "" @@ -195,7 +195,7 @@ msgstr "" #: ../../library/re.rst:135 msgid "``+``" -msgstr "" +msgstr "``+``" #: ../../library/re.rst:133 msgid "" @@ -206,7 +206,7 @@ msgstr "" #: ../../library/re.rst:141 msgid "``?``" -msgstr "" +msgstr "``?``" #: ../../library/re.rst:140 msgid "" @@ -216,7 +216,7 @@ msgstr "" #: ../../library/re.rst:155 msgid "``*?``, ``+?``, ``??``" -msgstr "" +msgstr "``*?``, ``+?``, ``??``" #: ../../library/re.rst:149 msgid "" @@ -231,7 +231,7 @@ msgstr "" #: ../../library/re.rst:163 msgid "``{m}``" -msgstr "" +msgstr "``{m}``" #: ../../library/re.rst:161 msgid "" @@ -242,7 +242,7 @@ msgstr "" #: ../../library/re.rst:172 msgid "``{m,n}``" -msgstr "" +msgstr "``{m,n}``" #: ../../library/re.rst:166 msgid "" @@ -258,7 +258,7 @@ msgstr "" #: ../../library/re.rst:179 msgid "``{m,n}?``" -msgstr "" +msgstr "``{m,n}?``" #: ../../library/re.rst:175 msgid "" @@ -271,7 +271,7 @@ msgstr "" #: ../../library/re.rst:194 msgid "``\\``" -msgstr "" +msgstr "``\\``" #: ../../library/re.rst:184 msgid "" @@ -293,7 +293,7 @@ msgstr "" #: ../../library/re.rst:254 msgid "``[]``" -msgstr "" +msgstr "``[]``" #: ../../library/re.rst:200 msgid "Used to indicate a set of characters. In a set:" @@ -364,7 +364,7 @@ msgstr "" #: ../../library/re.rst:267 msgid "``|``" -msgstr "" +msgstr "``|``" #: ../../library/re.rst:259 msgid "" @@ -381,7 +381,7 @@ msgstr "" #: ../../library/re.rst:277 msgid "``(...)``" -msgstr "" +msgstr "``(...)``" #: ../../library/re.rst:273 msgid "" @@ -395,7 +395,7 @@ msgstr "" #: ../../library/re.rst:286 msgid "``(?...)``" -msgstr "" +msgstr "``(?...)``" #: ../../library/re.rst:282 msgid "" @@ -408,7 +408,7 @@ msgstr "" #: ../../library/re.rst:300 msgid "``(?aiLmsux)``" -msgstr "" +msgstr "``(?aiLmsux)``" #: ../../library/re.rst:289 msgid "" @@ -426,7 +426,7 @@ msgstr "" #: ../../library/re.rst:308 msgid "``(?:...)``" -msgstr "" +msgstr "``(?:...)``" #: ../../library/re.rst:305 msgid "" @@ -438,7 +438,7 @@ msgstr "" #: ../../library/re.rst:334 msgid "``(?aiLmsux-imsx:...)``" -msgstr "" +msgstr "``(?aiLmsux-imsx:...)``" #: ../../library/re.rst:311 msgid "" @@ -471,7 +471,7 @@ msgstr "" #: ../../library/re.rst:361 msgid "``(?P...)``" -msgstr "" +msgstr "``(?P...)``" #: ../../library/re.rst:339 msgid "" @@ -507,7 +507,7 @@ msgstr "" #: ../../library/re.rst:353 ../../library/re.rst:360 msgid "``\\1``" -msgstr "" +msgstr "``\\1``" #: ../../library/re.rst:355 msgid "when processing match object *m*" @@ -515,7 +515,7 @@ msgstr "" #: ../../library/re.rst:355 msgid "``m.group('quote')``" -msgstr "" +msgstr "``m.group('quote')``" #: ../../library/re.rst:356 msgid "``m.end('quote')`` (etc.)" @@ -527,15 +527,15 @@ msgstr "" #: ../../library/re.rst:358 msgid "``\\g``" -msgstr "" +msgstr "``\\g``" #: ../../library/re.rst:359 msgid "``\\g<1>``" -msgstr "" +msgstr "``\\g<1>``" #: ../../library/re.rst:367 msgid "``(?P=name)``" -msgstr "" +msgstr "``(?P=name)``" #: ../../library/re.rst:366 msgid "" @@ -545,7 +545,7 @@ msgstr "" #: ../../library/re.rst:372 msgid "``(?#...)``" -msgstr "" +msgstr "``(?#...)``" #: ../../library/re.rst:372 msgid "A comment; the contents of the parentheses are simply ignored." @@ -553,7 +553,7 @@ msgstr "" #: ../../library/re.rst:379 msgid "``(?=...)``" -msgstr "" +msgstr "``(?=...)``" #: ../../library/re.rst:377 msgid "" @@ -564,7 +564,7 @@ msgstr "" #: ../../library/re.rst:386 msgid "``(?!...)``" -msgstr "" +msgstr "``(?!...)``" #: ../../library/re.rst:384 msgid "" @@ -575,7 +575,7 @@ msgstr "" #: ../../library/re.rst:413 msgid "``(?<=...)``" -msgstr "" +msgstr "``(?<=...)``" #: ../../library/re.rst:391 msgid "" @@ -601,7 +601,7 @@ msgstr "" #: ../../library/re.rst:422 msgid "``(?`: Linux 2.6.8 or later." -msgstr "" +msgstr ":ref:`適用 `:Linux 2.6.8 以上。" #: ../../library/resource.rst:195 msgid "The ceiling for the process's nice level (calculated as 20 - rlim_cur)." @@ -241,7 +241,7 @@ msgstr "" #: ../../library/resource.rst:198 ../../library/resource.rst:207 msgid ":ref:`Availability `: Linux 2.6.12 or later." -msgstr "" +msgstr ":ref:`適用 `:Linux 2.6.12 以上。" #: ../../library/resource.rst:204 msgid "The ceiling of the real-time priority." @@ -255,7 +255,7 @@ msgstr "" #: ../../library/resource.rst:217 msgid ":ref:`Availability `: Linux 2.6.25 or later." -msgstr "" +msgstr ":ref:`適用 `:Linux 2.6.25 以上。" #: ../../library/resource.rst:223 msgid "The number of signals which the process may queue." @@ -271,7 +271,7 @@ msgstr "" #: ../../library/resource.rst:236 ../../library/resource.rst:249 #: ../../library/resource.rst:257 msgid ":ref:`Availability `: FreeBSD 9 or later." -msgstr "" +msgstr ":ref:`適用 `:FreeBSD 9 以上。" #: ../../library/resource.rst:241 msgid "" @@ -292,7 +292,7 @@ msgstr "" #: ../../library/resource.rst:265 msgid ":ref:`Availability `: FreeBSD 11 or later." -msgstr "" +msgstr ":ref:`適用 `:FreeBSD 11 以上。" #: ../../library/resource.rst:269 msgid "Resource Usage" @@ -313,6 +313,9 @@ msgstr "" #: ../../library/resource.rst:281 msgid "A simple example::" msgstr "" +"一個簡單範例:\n" +"\n" +"::" #: ../../library/resource.rst:295 msgid "" @@ -353,11 +356,11 @@ msgstr "" #: ../../library/resource.rst:312 msgid "``0``" -msgstr "" +msgstr "``0``" #: ../../library/resource.rst:312 msgid ":attr:`ru_utime`" -msgstr "" +msgstr ":attr:`ru_utime`" #: ../../library/resource.rst:312 msgid "time in user mode (float seconds)" @@ -365,11 +368,11 @@ msgstr "" #: ../../library/resource.rst:314 msgid "``1``" -msgstr "" +msgstr "``1``" #: ../../library/resource.rst:314 msgid ":attr:`ru_stime`" -msgstr "" +msgstr ":attr:`ru_stime`" #: ../../library/resource.rst:314 msgid "time in system mode (float seconds)" @@ -377,11 +380,11 @@ msgstr "" #: ../../library/resource.rst:316 msgid "``2``" -msgstr "" +msgstr "``2``" #: ../../library/resource.rst:316 msgid ":attr:`ru_maxrss`" -msgstr "" +msgstr ":attr:`ru_maxrss`" #: ../../library/resource.rst:316 msgid "maximum resident set size" @@ -389,11 +392,11 @@ msgstr "" #: ../../library/resource.rst:318 msgid "``3``" -msgstr "" +msgstr "``3``" #: ../../library/resource.rst:318 msgid ":attr:`ru_ixrss`" -msgstr "" +msgstr ":attr:`ru_ixrss`" #: ../../library/resource.rst:318 msgid "shared memory size" @@ -401,11 +404,11 @@ msgstr "" #: ../../library/resource.rst:320 msgid "``4``" -msgstr "" +msgstr "``4``" #: ../../library/resource.rst:320 msgid ":attr:`ru_idrss`" -msgstr "" +msgstr ":attr:`ru_idrss`" #: ../../library/resource.rst:320 msgid "unshared memory size" @@ -413,11 +416,11 @@ msgstr "" #: ../../library/resource.rst:322 msgid "``5``" -msgstr "" +msgstr "``5``" #: ../../library/resource.rst:322 msgid ":attr:`ru_isrss`" -msgstr "" +msgstr ":attr:`ru_isrss`" #: ../../library/resource.rst:322 msgid "unshared stack size" @@ -425,11 +428,11 @@ msgstr "" #: ../../library/resource.rst:324 msgid "``6``" -msgstr "" +msgstr "``6``" #: ../../library/resource.rst:324 msgid ":attr:`ru_minflt`" -msgstr "" +msgstr ":attr:`ru_minflt`" #: ../../library/resource.rst:324 msgid "page faults not requiring I/O" @@ -437,11 +440,11 @@ msgstr "" #: ../../library/resource.rst:326 msgid "``7``" -msgstr "" +msgstr "``7``" #: ../../library/resource.rst:326 msgid ":attr:`ru_majflt`" -msgstr "" +msgstr ":attr:`ru_majflt`" #: ../../library/resource.rst:326 msgid "page faults requiring I/O" @@ -449,11 +452,11 @@ msgstr "" #: ../../library/resource.rst:328 msgid "``8``" -msgstr "" +msgstr "``8``" #: ../../library/resource.rst:328 msgid ":attr:`ru_nswap`" -msgstr "" +msgstr ":attr:`ru_nswap`" #: ../../library/resource.rst:328 msgid "number of swap outs" @@ -461,11 +464,11 @@ msgstr "" #: ../../library/resource.rst:330 msgid "``9``" -msgstr "" +msgstr "``9``" #: ../../library/resource.rst:330 msgid ":attr:`ru_inblock`" -msgstr "" +msgstr ":attr:`ru_inblock`" #: ../../library/resource.rst:330 msgid "block input operations" @@ -473,11 +476,11 @@ msgstr "" #: ../../library/resource.rst:332 msgid "``10``" -msgstr "" +msgstr "``10``" #: ../../library/resource.rst:332 msgid ":attr:`ru_oublock`" -msgstr "" +msgstr ":attr:`ru_oublock`" #: ../../library/resource.rst:332 msgid "block output operations" @@ -485,11 +488,11 @@ msgstr "" #: ../../library/resource.rst:334 msgid "``11``" -msgstr "" +msgstr "``11``" #: ../../library/resource.rst:334 msgid ":attr:`ru_msgsnd`" -msgstr "" +msgstr ":attr:`ru_msgsnd`" #: ../../library/resource.rst:334 msgid "messages sent" @@ -497,11 +500,11 @@ msgstr "" #: ../../library/resource.rst:336 msgid "``12``" -msgstr "" +msgstr "``12``" #: ../../library/resource.rst:336 msgid ":attr:`ru_msgrcv`" -msgstr "" +msgstr ":attr:`ru_msgrcv`" #: ../../library/resource.rst:336 msgid "messages received" @@ -509,11 +512,11 @@ msgstr "" #: ../../library/resource.rst:338 msgid "``13``" -msgstr "" +msgstr "``13``" #: ../../library/resource.rst:338 msgid ":attr:`ru_nsignals`" -msgstr "" +msgstr ":attr:`ru_nsignals`" #: ../../library/resource.rst:338 msgid "signals received" @@ -521,11 +524,11 @@ msgstr "" #: ../../library/resource.rst:340 msgid "``14``" -msgstr "" +msgstr "``14``" #: ../../library/resource.rst:340 msgid ":attr:`ru_nvcsw`" -msgstr "" +msgstr ":attr:`ru_nvcsw`" #: ../../library/resource.rst:340 msgid "voluntary context switches" @@ -533,11 +536,11 @@ msgstr "" #: ../../library/resource.rst:342 msgid "``15``" -msgstr "" +msgstr "``15``" #: ../../library/resource.rst:342 msgid ":attr:`ru_nivcsw`" -msgstr "" +msgstr ":attr:`ru_nivcsw`" #: ../../library/resource.rst:342 msgid "involuntary context switches" diff --git a/library/rlcompleter.po b/library/rlcompleter.po index 89e2f3ef78..d0026c1fc0 100644 --- a/library/rlcompleter.po +++ b/library/rlcompleter.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/rlcompleter.rst:9 msgid "**Source code:** :source:`Lib/rlcompleter.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/rlcompleter.py`" #: ../../library/rlcompleter.rst:13 msgid "" @@ -44,6 +44,9 @@ msgstr "" #: ../../library/rlcompleter.rst:20 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/rlcompleter.rst:31 msgid "" diff --git a/library/runpy.po b/library/runpy.po index d95e1b302c..cf7741bda8 100644 --- a/library/runpy.po +++ b/library/runpy.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/runpy.rst:9 msgid "**Source code:** :source:`Lib/runpy.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/runpy.py`" #: ../../library/runpy.rst:13 msgid "" diff --git a/library/sched.po b/library/sched.po index 12a912a513..f51d1413b2 100644 --- a/library/sched.po +++ b/library/sched.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/sched.rst:9 msgid "**Source code:** :source:`Lib/sched.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/sched.py`" #: ../../library/sched.rst:15 msgid "" @@ -56,6 +56,9 @@ msgstr "" #: ../../library/sched.rst:36 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/sched.rst:61 msgid "Scheduler Objects" diff --git a/library/secrets.po b/library/secrets.po index b6bc7e21af..a7a925da9c 100644 --- a/library/secrets.po +++ b/library/secrets.po @@ -26,7 +26,7 @@ msgstr ":mod:`secrets` --- 產生用於管理機密的安全亂數" #: ../../library/secrets.rst:16 msgid "**Source code:** :source:`Lib/secrets.py`" -msgstr "**原始碼:** :source:`Lib/secrets.py`" +msgstr "**原始碼:**\\ :source:`Lib/secrets.py`" #: ../../library/secrets.rst:20 msgid "" diff --git a/library/select.po b/library/select.po index 283a5fcd80..2efa8a1271 100644 --- a/library/select.po +++ b/library/select.po @@ -226,7 +226,7 @@ msgstr "" #: ../../library/select.rst:177 msgid ":ref:`Availability `: Unix" -msgstr "" +msgstr ":ref:`適用 `:Unix。" #: ../../library/select.rst:184 msgid "``/dev/poll`` Polling Objects" @@ -330,7 +330,7 @@ msgstr "" #: ../../library/select.rst:581 ../../library/select.rst:589 #: ../../library/select.rst:609 ../../library/select.rst:632 msgid "Constant" -msgstr "" +msgstr "常數" #: ../../library/select.rst:283 ../../library/select.rst:401 #: ../../library/select.rst:521 ../../library/select.rst:550 @@ -341,7 +341,7 @@ msgstr "" #: ../../library/select.rst:285 msgid ":const:`EPOLLIN`" -msgstr "" +msgstr ":const:`EPOLLIN`" #: ../../library/select.rst:285 msgid "Available for read" @@ -349,7 +349,7 @@ msgstr "" #: ../../library/select.rst:287 msgid ":const:`EPOLLOUT`" -msgstr "" +msgstr ":const:`EPOLLOUT`" #: ../../library/select.rst:287 msgid "Available for write" @@ -357,7 +357,7 @@ msgstr "" #: ../../library/select.rst:289 msgid ":const:`EPOLLPRI`" -msgstr "" +msgstr ":const:`EPOLLPRI`" #: ../../library/select.rst:289 msgid "Urgent data for read" @@ -365,7 +365,7 @@ msgstr "" #: ../../library/select.rst:291 msgid ":const:`EPOLLERR`" -msgstr "" +msgstr ":const:`EPOLLERR`" #: ../../library/select.rst:291 msgid "Error condition happened on the assoc. fd" @@ -373,7 +373,7 @@ msgstr "" #: ../../library/select.rst:293 msgid ":const:`EPOLLHUP`" -msgstr "" +msgstr ":const:`EPOLLHUP`" #: ../../library/select.rst:293 msgid "Hang up happened on the assoc. fd" @@ -381,7 +381,7 @@ msgstr "" #: ../../library/select.rst:295 msgid ":const:`EPOLLET`" -msgstr "" +msgstr ":const:`EPOLLET`" #: ../../library/select.rst:295 msgid "Set Edge Trigger behavior, the default is Level Trigger behavior" @@ -389,7 +389,7 @@ msgstr "" #: ../../library/select.rst:298 msgid ":const:`EPOLLONESHOT`" -msgstr "" +msgstr ":const:`EPOLLONESHOT`" #: ../../library/select.rst:298 msgid "" @@ -399,7 +399,7 @@ msgstr "" #: ../../library/select.rst:301 msgid ":const:`EPOLLEXCLUSIVE`" -msgstr "" +msgstr ":const:`EPOLLEXCLUSIVE`" #: ../../library/select.rst:301 msgid "" @@ -409,7 +409,7 @@ msgstr "" #: ../../library/select.rst:306 msgid ":const:`EPOLLRDHUP`" -msgstr "" +msgstr ":const:`EPOLLRDHUP`" #: ../../library/select.rst:306 msgid "" @@ -418,15 +418,15 @@ msgstr "" #: ../../library/select.rst:309 msgid ":const:`EPOLLRDNORM`" -msgstr "" +msgstr ":const:`EPOLLRDNORM`" #: ../../library/select.rst:309 msgid "Equivalent to :const:`EPOLLIN`" -msgstr "" +msgstr "等價於 :const:`EPOLLIN`" #: ../../library/select.rst:311 msgid ":const:`EPOLLRDBAND`" -msgstr "" +msgstr ":const:`EPOLLRDBAND`" #: ../../library/select.rst:311 msgid "Priority data band can be read." @@ -434,15 +434,15 @@ msgstr "" #: ../../library/select.rst:313 msgid ":const:`EPOLLWRNORM`" -msgstr "" +msgstr ":const:`EPOLLWRNORM`" #: ../../library/select.rst:313 msgid "Equivalent to :const:`EPOLLOUT`" -msgstr "" +msgstr "等價於 :const:`EPOLLOUT`" #: ../../library/select.rst:315 msgid ":const:`EPOLLWRBAND`" -msgstr "" +msgstr ":const:`EPOLLWRBAND`" #: ../../library/select.rst:315 msgid "Priority data may be written." @@ -450,7 +450,7 @@ msgstr "" #: ../../library/select.rst:317 msgid ":const:`EPOLLMSG`" -msgstr "" +msgstr ":const:`EPOLLMSG`" #: ../../library/select.rst:317 msgid "Ignored." @@ -524,7 +524,7 @@ msgstr "" #: ../../library/select.rst:403 msgid ":const:`POLLIN`" -msgstr "" +msgstr ":const:`POLLIN`" #: ../../library/select.rst:403 msgid "There is data to read" @@ -532,7 +532,7 @@ msgstr "" #: ../../library/select.rst:405 msgid ":const:`POLLPRI`" -msgstr "" +msgstr ":const:`POLLPRI`" #: ../../library/select.rst:405 msgid "There is urgent data to read" @@ -540,7 +540,7 @@ msgstr "" #: ../../library/select.rst:407 msgid ":const:`POLLOUT`" -msgstr "" +msgstr ":const:`POLLOUT`" #: ../../library/select.rst:407 msgid "Ready for output: writing will not block" @@ -548,7 +548,7 @@ msgstr "" #: ../../library/select.rst:409 msgid ":const:`POLLERR`" -msgstr "" +msgstr ":const:`POLLERR`" #: ../../library/select.rst:409 msgid "Error condition of some sort" @@ -556,7 +556,7 @@ msgstr "" #: ../../library/select.rst:411 msgid ":const:`POLLHUP`" -msgstr "" +msgstr ":const:`POLLHUP`" #: ../../library/select.rst:411 msgid "Hung up" @@ -564,7 +564,7 @@ msgstr "" #: ../../library/select.rst:413 msgid ":const:`POLLRDHUP`" -msgstr "" +msgstr ":const:`POLLRDHUP`" #: ../../library/select.rst:413 msgid "" @@ -573,7 +573,7 @@ msgstr "" #: ../../library/select.rst:416 msgid ":const:`POLLNVAL`" -msgstr "" +msgstr ":const:`POLLNVAL`" #: ../../library/select.rst:416 msgid "Invalid request: descriptor not open" @@ -669,7 +669,7 @@ msgstr "" #: ../../library/select.rst:523 msgid ":const:`KQ_FILTER_READ`" -msgstr "" +msgstr ":const:`KQ_FILTER_READ`" #: ../../library/select.rst:523 msgid "Takes a descriptor and returns whenever there is data available to read" @@ -677,7 +677,7 @@ msgstr "" #: ../../library/select.rst:526 msgid ":const:`KQ_FILTER_WRITE`" -msgstr "" +msgstr ":const:`KQ_FILTER_WRITE`" #: ../../library/select.rst:526 msgid "" @@ -686,7 +686,7 @@ msgstr "" #: ../../library/select.rst:529 msgid ":const:`KQ_FILTER_AIO`" -msgstr "" +msgstr ":const:`KQ_FILTER_AIO`" #: ../../library/select.rst:529 msgid "AIO requests" @@ -694,7 +694,7 @@ msgstr "" #: ../../library/select.rst:531 msgid ":const:`KQ_FILTER_VNODE`" -msgstr "" +msgstr ":const:`KQ_FILTER_VNODE`" #: ../../library/select.rst:531 msgid "" @@ -703,7 +703,7 @@ msgstr "" #: ../../library/select.rst:534 msgid ":const:`KQ_FILTER_PROC`" -msgstr "" +msgstr ":const:`KQ_FILTER_PROC`" #: ../../library/select.rst:534 msgid "Watch for events on a process id" @@ -711,7 +711,7 @@ msgstr "" #: ../../library/select.rst:536 msgid ":const:`KQ_FILTER_NETDEV`" -msgstr "" +msgstr ":const:`KQ_FILTER_NETDEV`" #: ../../library/select.rst:536 msgid "Watch for events on a network device [not available on macOS]" @@ -719,7 +719,7 @@ msgstr "" #: ../../library/select.rst:539 msgid ":const:`KQ_FILTER_SIGNAL`" -msgstr "" +msgstr ":const:`KQ_FILTER_SIGNAL`" #: ../../library/select.rst:539 msgid "Returns whenever the watched signal is delivered to the process" @@ -727,7 +727,7 @@ msgstr "" #: ../../library/select.rst:542 msgid ":const:`KQ_FILTER_TIMER`" -msgstr "" +msgstr ":const:`KQ_FILTER_TIMER`" #: ../../library/select.rst:542 msgid "Establishes an arbitrary timer" @@ -739,7 +739,7 @@ msgstr "" #: ../../library/select.rst:552 msgid ":const:`KQ_EV_ADD`" -msgstr "" +msgstr ":const:`KQ_EV_ADD`" #: ../../library/select.rst:552 msgid "Adds or modifies an event" @@ -747,7 +747,7 @@ msgstr "" #: ../../library/select.rst:554 msgid ":const:`KQ_EV_DELETE`" -msgstr "" +msgstr ":const:`KQ_EV_DELETE`" #: ../../library/select.rst:554 msgid "Removes an event from the queue" @@ -755,7 +755,7 @@ msgstr "" #: ../../library/select.rst:556 msgid ":const:`KQ_EV_ENABLE`" -msgstr "" +msgstr ":const:`KQ_EV_ENABLE`" #: ../../library/select.rst:556 msgid "Permitscontrol() to returns the event" @@ -763,7 +763,7 @@ msgstr "" #: ../../library/select.rst:558 msgid ":const:`KQ_EV_DISABLE`" -msgstr "" +msgstr ":const:`KQ_EV_DISABLE`" #: ../../library/select.rst:558 msgid "Disablesevent" @@ -771,7 +771,7 @@ msgstr "" #: ../../library/select.rst:560 msgid ":const:`KQ_EV_ONESHOT`" -msgstr "" +msgstr ":const:`KQ_EV_ONESHOT`" #: ../../library/select.rst:560 msgid "Removes event after first occurrence" @@ -779,7 +779,7 @@ msgstr "" #: ../../library/select.rst:562 msgid ":const:`KQ_EV_CLEAR`" -msgstr "" +msgstr ":const:`KQ_EV_CLEAR`" #: ../../library/select.rst:562 msgid "Reset the state after an event is retrieved" @@ -787,7 +787,7 @@ msgstr "" #: ../../library/select.rst:564 msgid ":const:`KQ_EV_SYSFLAGS`" -msgstr "" +msgstr ":const:`KQ_EV_SYSFLAGS`" #: ../../library/select.rst:564 ../../library/select.rst:566 msgid "internal event" @@ -795,11 +795,11 @@ msgstr "" #: ../../library/select.rst:566 msgid ":const:`KQ_EV_FLAG1`" -msgstr "" +msgstr ":const:`KQ_EV_FLAG1`" #: ../../library/select.rst:568 msgid ":const:`KQ_EV_EOF`" -msgstr "" +msgstr ":const:`KQ_EV_EOF`" #: ../../library/select.rst:568 msgid "Filter specific EOF condition" @@ -807,7 +807,7 @@ msgstr "" #: ../../library/select.rst:570 msgid ":const:`KQ_EV_ERROR`" -msgstr "" +msgstr ":const:`KQ_EV_ERROR`" #: ../../library/select.rst:570 msgid "See return values" @@ -823,7 +823,7 @@ msgstr "" #: ../../library/select.rst:583 msgid ":const:`KQ_NOTE_LOWAT`" -msgstr "" +msgstr ":const:`KQ_NOTE_LOWAT`" #: ../../library/select.rst:583 msgid "low water mark of a socket buffer" @@ -835,7 +835,7 @@ msgstr "" #: ../../library/select.rst:591 msgid ":const:`KQ_NOTE_DELETE`" -msgstr "" +msgstr ":const:`KQ_NOTE_DELETE`" #: ../../library/select.rst:591 msgid "*unlink()* was called" @@ -843,7 +843,7 @@ msgstr "" #: ../../library/select.rst:593 msgid ":const:`KQ_NOTE_WRITE`" -msgstr "" +msgstr ":const:`KQ_NOTE_WRITE`" #: ../../library/select.rst:593 msgid "a write occurred" @@ -851,7 +851,7 @@ msgstr "" #: ../../library/select.rst:595 msgid ":const:`KQ_NOTE_EXTEND`" -msgstr "" +msgstr ":const:`KQ_NOTE_EXTEND`" #: ../../library/select.rst:595 msgid "the file was extended" @@ -859,7 +859,7 @@ msgstr "" #: ../../library/select.rst:597 msgid ":const:`KQ_NOTE_ATTRIB`" -msgstr "" +msgstr ":const:`KQ_NOTE_ATTRIB`" #: ../../library/select.rst:597 msgid "an attribute was changed" @@ -867,7 +867,7 @@ msgstr "" #: ../../library/select.rst:599 msgid ":const:`KQ_NOTE_LINK`" -msgstr "" +msgstr ":const:`KQ_NOTE_LINK`" #: ../../library/select.rst:599 msgid "the link count has changed" @@ -875,7 +875,7 @@ msgstr "" #: ../../library/select.rst:601 msgid ":const:`KQ_NOTE_RENAME`" -msgstr "" +msgstr ":const:`KQ_NOTE_RENAME`" #: ../../library/select.rst:601 msgid "the file was renamed" @@ -883,7 +883,7 @@ msgstr "" #: ../../library/select.rst:603 msgid ":const:`KQ_NOTE_REVOKE`" -msgstr "" +msgstr ":const:`KQ_NOTE_REVOKE`" #: ../../library/select.rst:603 msgid "access to the file was revoked" @@ -895,7 +895,7 @@ msgstr "" #: ../../library/select.rst:611 msgid ":const:`KQ_NOTE_EXIT`" -msgstr "" +msgstr ":const:`KQ_NOTE_EXIT`" #: ../../library/select.rst:611 msgid "the process has exited" @@ -903,7 +903,7 @@ msgstr "" #: ../../library/select.rst:613 msgid ":const:`KQ_NOTE_FORK`" -msgstr "" +msgstr ":const:`KQ_NOTE_FORK`" #: ../../library/select.rst:613 msgid "the process has called *fork()*" @@ -911,7 +911,7 @@ msgstr "" #: ../../library/select.rst:615 msgid ":const:`KQ_NOTE_EXEC`" -msgstr "" +msgstr ":const:`KQ_NOTE_EXEC`" #: ../../library/select.rst:615 msgid "the process has executed a new process" @@ -919,7 +919,7 @@ msgstr "" #: ../../library/select.rst:617 msgid ":const:`KQ_NOTE_PCTRLMASK`" -msgstr "" +msgstr ":const:`KQ_NOTE_PCTRLMASK`" #: ../../library/select.rst:617 ../../library/select.rst:619 msgid "internal filter flag" @@ -927,11 +927,11 @@ msgstr "" #: ../../library/select.rst:619 msgid ":const:`KQ_NOTE_PDATAMASK`" -msgstr "" +msgstr ":const:`KQ_NOTE_PDATAMASK`" #: ../../library/select.rst:621 msgid ":const:`KQ_NOTE_TRACK`" -msgstr "" +msgstr ":const:`KQ_NOTE_TRACK`" #: ../../library/select.rst:621 msgid "follow a process across *fork()*" @@ -939,7 +939,7 @@ msgstr "" #: ../../library/select.rst:623 msgid ":const:`KQ_NOTE_CHILD`" -msgstr "" +msgstr ":const:`KQ_NOTE_CHILD`" #: ../../library/select.rst:623 msgid "returned on the child process for *NOTE_TRACK*" @@ -947,7 +947,7 @@ msgstr "" #: ../../library/select.rst:626 msgid ":const:`KQ_NOTE_TRACKERR`" -msgstr "" +msgstr ":const:`KQ_NOTE_TRACKERR`" #: ../../library/select.rst:626 msgid "unable to attach to a child" @@ -959,7 +959,7 @@ msgstr "" #: ../../library/select.rst:634 msgid ":const:`KQ_NOTE_LINKUP`" -msgstr "" +msgstr ":const:`KQ_NOTE_LINKUP`" #: ../../library/select.rst:634 msgid "link is up" @@ -967,7 +967,7 @@ msgstr "" #: ../../library/select.rst:636 msgid ":const:`KQ_NOTE_LINKDOWN`" -msgstr "" +msgstr ":const:`KQ_NOTE_LINKDOWN`" #: ../../library/select.rst:636 msgid "link is down" @@ -975,7 +975,7 @@ msgstr "" #: ../../library/select.rst:638 msgid ":const:`KQ_NOTE_LINKINV`" -msgstr "" +msgstr ":const:`KQ_NOTE_LINKINV`" #: ../../library/select.rst:638 msgid "link state is invalid" diff --git a/library/selectors.po b/library/selectors.po index 4eace584f5..ccbe68aeb2 100644 --- a/library/selectors.po +++ b/library/selectors.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/selectors.rst:9 msgid "**Source code:** :source:`Lib/selectors.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/selectors.py`" #: ../../library/selectors.rst:14 msgid "Introduction" @@ -64,7 +64,7 @@ msgstr "" #: ../../library/selectors.rst:38 msgid ":mod:`select`" -msgstr "" +msgstr ":mod:`select`" #: ../../library/selectors.rst:39 msgid "Low-level I/O multiplexing module." @@ -95,7 +95,7 @@ msgstr "" #: ../../library/selectors.rst:62 msgid ":const:`EVENT_READ`" -msgstr "" +msgstr ":const:`EVENT_READ`" #: ../../library/selectors.rst:62 msgid "Available for read" @@ -103,7 +103,7 @@ msgstr "" #: ../../library/selectors.rst:64 msgid ":const:`EVENT_WRITE`" -msgstr "" +msgstr ":const:`EVENT_WRITE`" #: ../../library/selectors.rst:64 msgid "Available for write" @@ -318,7 +318,7 @@ msgstr "" #: ../../library/selectors.rst:242 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/selectors.rst:244 msgid "Here is a simple echo server implementation::" diff --git a/library/shelve.po b/library/shelve.po index f792c5fd7a..19c87f200b 100644 --- a/library/shelve.po +++ b/library/shelve.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/shelve.rst:7 msgid "**Source code:** :source:`Lib/shelve.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/shelve.py`" #: ../../library/shelve.rst:13 msgid "" @@ -214,7 +214,7 @@ msgstr "" #: ../../library/shelve.rst:173 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/shelve.rst:175 msgid "" @@ -224,7 +224,7 @@ msgstr "" #: ../../library/shelve.rst:212 msgid "Module :mod:`dbm`" -msgstr "" +msgstr ":mod:`dbm` 模組" #: ../../library/shelve.rst:212 msgid "Generic interface to ``dbm``-style databases." @@ -232,7 +232,7 @@ msgstr "" #: ../../library/shelve.rst:214 msgid "Module :mod:`pickle`" -msgstr "" +msgstr ":mod:`pickle` 模組" #: ../../library/shelve.rst:215 msgid "Object serialization used by :mod:`shelve`." diff --git a/library/shlex.po b/library/shlex.po index 7444020557..7f303db5ea 100644 --- a/library/shlex.po +++ b/library/shlex.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/shlex.rst:12 msgid "**Source code:** :source:`Lib/shlex.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/shlex.py`" #: ../../library/shlex.rst:16 msgid "" @@ -146,7 +146,7 @@ msgstr "" #: ../../library/shlex.rst:142 msgid "Module :mod:`configparser`" -msgstr "" +msgstr ":mod:`configparser` 模組" #: ../../library/shlex.rst:143 msgid "" @@ -155,7 +155,7 @@ msgstr "" #: ../../library/shlex.rst:149 msgid "shlex Objects" -msgstr "" +msgstr "shlex 物件" #: ../../library/shlex.rst:151 msgid "A :class:`~shlex.shlex` instance has the following methods:" diff --git a/library/shutil.po b/library/shutil.po index b7dc396892..11c058967b 100644 --- a/library/shutil.po +++ b/library/shutil.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/shutil.rst:10 msgid "**Source code:** :source:`Lib/shutil.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/shutil.py`" #: ../../library/shutil.rst:18 msgid "" @@ -481,7 +481,7 @@ msgstr "" #: ../../library/shutil.rst:389 msgid ":ref:`Availability `: Unix, Windows." -msgstr "" +msgstr ":ref:`適用 `:Unix、Windows。" #: ../../library/shutil.rst:393 msgid "Change owner *user* and/or *group* of the given *path*." @@ -505,7 +505,7 @@ msgstr "" #: ../../library/shutil.rst:403 msgid ":ref:`Availability `: Unix." -msgstr "" +msgstr ":ref:`適用 `:Unix。" #: ../../library/shutil.rst:409 msgid "" @@ -612,7 +612,7 @@ msgstr "" #: ../../library/shutil.rst:532 msgid "rmtree example" -msgstr "" +msgstr "rmtree 範例" #: ../../library/shutil.rst:534 msgid "" diff --git a/library/signal.po b/library/signal.po index cc1df8b088..45d8039e15 100644 --- a/library/signal.po +++ b/library/signal.po @@ -100,7 +100,7 @@ msgstr "" #: ../../library/signal.rst:65 msgid "Module contents" -msgstr "" +msgstr "模組內容" #: ../../library/signal.rst:67 msgid "" @@ -144,7 +144,7 @@ msgstr "" #: ../../library/signal.rst:190 ../../library/signal.rst:196 #: ../../library/signal.rst:447 ../../library/signal.rst:454 msgid ":ref:`Availability `: Unix." -msgstr "" +msgstr ":ref:`適用 `:Unix。" #: ../../library/signal.rst:106 msgid "Interrupt from keyboard (CTRL + BREAK)." @@ -153,7 +153,7 @@ msgstr "" #: ../../library/signal.rst:108 ../../library/signal.rst:215 #: ../../library/signal.rst:225 msgid ":ref:`Availability `: Windows." -msgstr "" +msgstr ":ref:`適用 `:Windows。" #: ../../library/signal.rst:112 msgid "Bus error (bad memory access)." @@ -399,7 +399,7 @@ msgstr "" #: ../../library/signal.rst:363 msgid ":ref:`Availability `: Linux 5.1+" -msgstr "" +msgstr ":ref:`適用 `:Linux 5.1+" #: ../../library/signal.rst:369 msgid "" @@ -738,7 +738,7 @@ msgstr "" #: ../../library/signal.rst:622 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/signal.rst:624 msgid "" diff --git a/library/site.po b/library/site.po index de65d4dffd..c8ff66fef2 100644 --- a/library/site.po +++ b/library/site.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/site.rst:7 msgid "**Source code:** :source:`Lib/site.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/site.py`" #: ../../library/site.rst:13 msgid "" @@ -182,7 +182,7 @@ msgstr "" #: ../../library/site.rst:158 msgid "Module contents" -msgstr "" +msgstr "模組內容" #: ../../library/site.rst:162 msgid "A list of prefixes for site-packages directories." diff --git a/library/smtpd.po b/library/smtpd.po index 57349b1a07..e5eb3fb366 100644 --- a/library/smtpd.po +++ b/library/smtpd.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/smtpd.rst:10 msgid "**Source code:** :source:`Lib/smtpd.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/smtpd.py`" #: ../../library/smtpd.rst:14 msgid "This module offers several classes to implement SMTP (email) servers." @@ -58,7 +58,7 @@ msgstr "" #: ../../library/smtpd.rst:33 msgid "SMTPServer Objects" -msgstr "" +msgstr "SMTPServer 物件" #: ../../library/smtpd.rst:39 msgid "" @@ -188,7 +188,7 @@ msgstr "" #: ../../library/smtpd.rst:124 msgid "DebuggingServer Objects" -msgstr "" +msgstr "DebuggingServer 物件" #: ../../library/smtpd.rst:129 msgid "" @@ -198,7 +198,7 @@ msgstr "" #: ../../library/smtpd.rst:134 msgid "PureProxy Objects" -msgstr "" +msgstr "PureProxy 物件" #: ../../library/smtpd.rst:139 msgid "" @@ -209,7 +209,7 @@ msgstr "" #: ../../library/smtpd.rst:145 msgid "MailmanProxy Objects" -msgstr "" +msgstr "MailmanProxy 物件" #: ../../library/smtpd.rst:152 msgid "" @@ -228,7 +228,7 @@ msgstr "" #: ../../library/smtpd.rst:163 msgid "SMTPChannel Objects" -msgstr "" +msgstr "SMTPChannel 物件" #: ../../library/smtpd.rst:168 msgid "" @@ -345,7 +345,7 @@ msgstr "" #: ../../library/smtpd.rst:260 msgid "Command" -msgstr "" +msgstr "指令" #: ../../library/smtpd.rst:260 msgid "Action taken" @@ -353,7 +353,7 @@ msgstr "" #: ../../library/smtpd.rst:262 msgid "HELO" -msgstr "" +msgstr "HELO" #: ../../library/smtpd.rst:262 msgid "" @@ -363,7 +363,7 @@ msgstr "" #: ../../library/smtpd.rst:264 msgid "EHLO" -msgstr "" +msgstr "EHLO" #: ../../library/smtpd.rst:264 msgid "" @@ -373,7 +373,7 @@ msgstr "" #: ../../library/smtpd.rst:266 msgid "NOOP" -msgstr "" +msgstr "NOOP" #: ../../library/smtpd.rst:266 msgid "Takes no action." @@ -381,7 +381,7 @@ msgstr "" #: ../../library/smtpd.rst:267 msgid "QUIT" -msgstr "" +msgstr "QUIT" #: ../../library/smtpd.rst:267 msgid "Closes the connection cleanly." @@ -389,7 +389,7 @@ msgstr "" #: ../../library/smtpd.rst:268 msgid "MAIL" -msgstr "" +msgstr "MAIL" #: ../../library/smtpd.rst:268 msgid "" @@ -400,7 +400,7 @@ msgstr "" #: ../../library/smtpd.rst:272 msgid "RCPT" -msgstr "" +msgstr "RCPT" #: ../../library/smtpd.rst:272 msgid "" @@ -410,7 +410,7 @@ msgstr "" #: ../../library/smtpd.rst:274 msgid "RSET" -msgstr "" +msgstr "RSET" #: ../../library/smtpd.rst:274 msgid "" @@ -420,7 +420,7 @@ msgstr "" #: ../../library/smtpd.rst:276 msgid "DATA" -msgstr "" +msgstr "DATA" #: ../../library/smtpd.rst:276 msgid "" @@ -431,7 +431,7 @@ msgstr "" #: ../../library/smtpd.rst:279 msgid "HELP" -msgstr "" +msgstr "HELP" #: ../../library/smtpd.rst:279 msgid "Returns minimal information on command syntax" @@ -439,7 +439,7 @@ msgstr "" #: ../../library/smtpd.rst:280 msgid "VRFY" -msgstr "" +msgstr "VRFY" #: ../../library/smtpd.rst:280 msgid "Returns code 252 (the server doesn't know if the address is valid)" @@ -447,7 +447,7 @@ msgstr "" #: ../../library/smtpd.rst:281 msgid "EXPN" -msgstr "" +msgstr "EXPN" #: ../../library/smtpd.rst:281 msgid "Reports that the command is not implemented." diff --git a/library/smtplib.po b/library/smtplib.po index 3c6f25d686..d350fe096a 100644 --- a/library/smtplib.po +++ b/library/smtplib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/smtplib.rst:9 msgid "**Source code:** :source:`Lib/smtplib.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/smtplib.py`" #: ../../library/smtplib.rst:17 msgid "" @@ -245,7 +245,7 @@ msgstr "" #: ../../library/smtplib.rst:220 msgid "SMTP Objects" -msgstr "" +msgstr "SMTP 物件" #: ../../library/smtplib.rst:222 msgid "An :class:`SMTP` instance has the following methods:" @@ -349,7 +349,7 @@ msgstr "" #: ../../library/smtplib.rst:297 ../../library/smtplib.rst:327 #: ../../library/smtplib.rst:419 ../../library/smtplib.rst:488 msgid ":exc:`SMTPHeloError`" -msgstr "" +msgstr ":exc:`SMTPHeloError`" #: ../../library/smtplib.rst:298 ../../library/smtplib.rst:327 #: ../../library/smtplib.rst:419 ../../library/smtplib.rst:488 @@ -385,7 +385,7 @@ msgstr "" #: ../../library/smtplib.rst:330 msgid ":exc:`SMTPAuthenticationError`" -msgstr "" +msgstr ":exc:`SMTPAuthenticationError`" #: ../../library/smtplib.rst:330 msgid "The server didn't accept the username/password combination." @@ -394,7 +394,7 @@ msgstr "" #: ../../library/smtplib.rst:333 ../../library/smtplib.rst:422 #: ../../library/smtplib.rst:499 msgid ":exc:`SMTPNotSupportedError`" -msgstr "" +msgstr ":exc:`SMTPNotSupportedError`" #: ../../library/smtplib.rst:333 msgid "The ``AUTH`` command is not supported by the server." @@ -402,7 +402,7 @@ msgstr "" #: ../../library/smtplib.rst:336 msgid ":exc:`SMTPException`" -msgstr "" +msgstr ":exc:`SMTPException`" #: ../../library/smtplib.rst:336 msgid "No suitable authentication method was found." @@ -522,7 +522,7 @@ msgstr "" #: ../../library/smtplib.rst:425 msgid ":exc:`RuntimeError`" -msgstr "" +msgstr ":exc:`RuntimeError`" #: ../../library/smtplib.rst:425 msgid "SSL/TLS support is not available to your Python interpreter." @@ -599,7 +599,7 @@ msgstr "" #: ../../library/smtplib.rst:485 msgid ":exc:`SMTPRecipientsRefused`" -msgstr "" +msgstr ":exc:`SMTPRecipientsRefused`" #: ../../library/smtplib.rst:482 msgid "" @@ -611,7 +611,7 @@ msgstr "" #: ../../library/smtplib.rst:491 msgid ":exc:`SMTPSenderRefused`" -msgstr "" +msgstr ":exc:`SMTPSenderRefused`" #: ../../library/smtplib.rst:491 msgid "The server didn't accept the *from_addr*." @@ -619,7 +619,7 @@ msgstr "" #: ../../library/smtplib.rst:495 msgid ":exc:`SMTPDataError`" -msgstr "" +msgstr ":exc:`SMTPDataError`" #: ../../library/smtplib.rst:494 msgid "" @@ -707,7 +707,7 @@ msgstr "" #: ../../library/smtplib.rst:565 msgid "SMTP Example" -msgstr "" +msgstr "SMTP 範例" #: ../../library/smtplib.rst:567 msgid "" diff --git a/library/sndhdr.po b/library/sndhdr.po index acd0572ba1..5f9373553d 100644 --- a/library/sndhdr.po +++ b/library/sndhdr.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/sndhdr.rst:10 msgid "**Source code:** :source:`Lib/sndhdr.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/sndhdr.py`" #: ../../library/sndhdr.rst:18 msgid "" diff --git a/library/socket.po b/library/socket.po index 78bca409e8..0fafa08160 100644 --- a/library/socket.po +++ b/library/socket.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/socket.rst:7 msgid "**Source code:** :source:`Lib/socket.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/socket.py`" #: ../../library/socket.rst:11 msgid "" @@ -52,7 +52,7 @@ msgstr "" #: ../../library/socket.rst:33 msgid "Module :mod:`socketserver`" -msgstr "" +msgstr ":mod:`socketserver` 模組" #: ../../library/socket.rst:33 msgid "Classes that simplify writing network servers." @@ -60,7 +60,7 @@ msgstr "" #: ../../library/socket.rst:35 msgid "Module :mod:`ssl`" -msgstr "" +msgstr ":mod:`ssl` 模組" #: ../../library/socket.rst:36 msgid "A TLS/SSL wrapper for socket objects." @@ -391,7 +391,7 @@ msgstr "" #: ../../library/socket.rst:246 msgid "Module contents" -msgstr "" +msgstr "模組內容" #: ../../library/socket.rst:248 msgid "The module :mod:`socket` exports the following elements." @@ -399,7 +399,7 @@ msgstr "" #: ../../library/socket.rst:252 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/socket.rst:256 msgid "A deprecated alias of :exc:`OSError`." @@ -453,7 +453,7 @@ msgstr "" #: ../../library/socket.rst:306 msgid "Constants" -msgstr "" +msgstr "常數" #: ../../library/socket.rst:308 msgid "" @@ -492,7 +492,7 @@ msgstr "" #: ../../library/socket.rst:347 msgid ":ref:`Availability `: Linux >= 2.6.27." -msgstr "" +msgstr ":ref:`適用 `:Linux >= 2.6.27。" #: ../../library/socket.rst:365 msgid "" @@ -542,7 +542,7 @@ msgstr "" #: ../../library/socket.rst:400 ../../library/socket.rst:411 #: ../../library/socket.rst:446 msgid ":ref:`Availability `: Linux >= 2.6.25." -msgstr "" +msgstr ":ref:`適用 `:Linux >= 2.6.25。" #: ../../library/socket.rst:406 msgid "" @@ -569,7 +569,7 @@ msgstr "" #: ../../library/socket.rst:426 msgid ":ref:`Availability `: Linux >= 3.6." -msgstr "" +msgstr ":ref:`適用 `:Linux >= 3.6。" #: ../../library/socket.rst:431 msgid "" @@ -579,7 +579,7 @@ msgstr "" #: ../../library/socket.rst:437 msgid ":ref:`Availability `: Linux >= 4.1." -msgstr "" +msgstr ":ref:`適用 `:Linux >= 4.1。" #: ../../library/socket.rst:442 msgid "" @@ -595,15 +595,15 @@ msgstr "" #: ../../library/socket.rst:455 msgid ":ref:`Availability `: Linux >= 5.4." -msgstr "" +msgstr ":ref:`適用 `:Linux >= 5.4。" #: ../../library/socket.rst:466 msgid ":ref:`Availability `: Linux >= 2.2." -msgstr "" +msgstr ":ref:`適用 `:Linux >= 2.2。" #: ../../library/socket.rst:478 msgid ":ref:`Availability `: Linux >= 2.6.30." -msgstr "" +msgstr ":ref:`適用 `:Linux >= 2.6.30。" #: ../../library/socket.rst:487 msgid "" @@ -613,7 +613,7 @@ msgstr "" #: ../../library/socket.rst:490 ../../library/socket.rst:1373 msgid "``SIO_LOOPBACK_FAST_PATH`` was added." -msgstr "" +msgstr "加入 ``SIO_LOOPBACK_FAST_PATH``。" #: ../../library/socket.rst:496 msgid "" @@ -627,7 +627,7 @@ msgstr "" #: ../../library/socket.rst:506 ../../library/socket.rst:1673 msgid ":ref:`Availability `: Linux >= 2.6.38." -msgstr "" +msgstr ":ref:`適用 `:Linux >= 2.6.38。" #: ../../library/socket.rst:515 msgid "Constants for Linux host/guest communication." @@ -635,11 +635,11 @@ msgstr "" #: ../../library/socket.rst:518 msgid ":ref:`Availability `: Linux >= 4.8." -msgstr "" +msgstr ":ref:`適用 `:Linux >= 4.8。" #: ../../library/socket.rst:524 msgid ":ref:`Availability `: BSD, macOS." -msgstr "" +msgstr ":ref:`適用 `:BSD、macOS。" #: ../../library/socket.rst:529 msgid "" @@ -669,11 +669,11 @@ msgstr "" #: ../../library/socket.rst:554 msgid ":ref:`Availability `: Linux >= 4.7." -msgstr "" +msgstr ":ref:`適用 `:Linux >= 4.7。" #: ../../library/socket.rst:557 msgid "Functions" -msgstr "" +msgstr "函式" #: ../../library/socket.rst:560 msgid "Creating sockets" @@ -873,7 +873,7 @@ msgstr "" #: ../../library/socket.rst:735 ../../library/socket.rst:1776 msgid ":ref:`Availability `: Windows." -msgstr "" +msgstr ":ref:`適用 `:Windows。" #: ../../library/socket.rst:741 msgid "" @@ -1281,7 +1281,7 @@ msgstr "" #: ../../library/socket.rst:1091 msgid ":ref:`Availability `: Unix." -msgstr "" +msgstr ":ref:`適用 `:Unix。" #: ../../library/socket.rst:1097 msgid "" @@ -1292,7 +1292,7 @@ msgstr "" #: ../../library/socket.rst:1102 ../../library/socket.rst:1129 #: ../../library/socket.rst:1146 msgid ":ref:`Availability `: Unix, Windows." -msgstr "" +msgstr ":ref:`適用 `:Unix、Windows。" #: ../../library/socket.rst:1105 ../../library/socket.rst:1132 #: ../../library/socket.rst:1149 @@ -1570,11 +1570,11 @@ msgstr "" #: ../../library/socket.rst:0 msgid "platform" -msgstr "" +msgstr "平台" #: ../../library/socket.rst:1360 msgid "Windows" -msgstr "" +msgstr "Windows" #: ../../library/socket.rst:1362 msgid "" @@ -1750,6 +1750,9 @@ msgstr "" #: ../../library/socket.rst:1536 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/socket.rst:1557 msgid "" @@ -2060,7 +2063,7 @@ msgstr "" #: ../../library/socket.rst:1860 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/socket.rst:1862 msgid "" @@ -2078,6 +2081,9 @@ msgstr "" #: ../../library/socket.rst:1872 msgid "The first two examples support IPv4 only. ::" msgstr "" +"前兩個範例只支援 IPv4:\n" +"\n" +"::" #: ../../library/socket.rst:1903 msgid "" diff --git a/library/socketserver.po b/library/socketserver.po index 582ed7397d..6874111c0e 100644 --- a/library/socketserver.po +++ b/library/socketserver.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/socketserver.rst:7 msgid "**Source code:** :source:`Lib/socketserver.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/socketserver.py`" #: ../../library/socketserver.rst:11 msgid "" @@ -482,11 +482,11 @@ msgstr "" #: ../../library/socketserver.rst:445 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/socketserver.rst:448 msgid ":class:`socketserver.TCPServer` Example" -msgstr "" +msgstr ":class:`socketserver.TCPServer` 範例" #: ../../library/socketserver.rst:450 ../../library/socketserver.rst:549 msgid "This is the server side::" @@ -525,7 +525,7 @@ msgstr "" #: ../../library/socketserver.rst:547 msgid ":class:`socketserver.UDPServer` Example" -msgstr "" +msgstr ":class:`socketserver.UDPServer` 範例" #: ../../library/socketserver.rst:592 msgid "" diff --git a/library/spwd.po b/library/spwd.po index bcedee08f0..9bccaaf8f6 100644 --- a/library/spwd.po +++ b/library/spwd.po @@ -47,7 +47,7 @@ msgstr "" #: ../../library/spwd.rst:21 msgid "Attribute" -msgstr "" +msgstr "屬性" #: ../../library/spwd.rst:21 msgid "Meaning" @@ -59,7 +59,7 @@ msgstr "0" #: ../../library/spwd.rst:23 msgid "``sp_namp``" -msgstr "" +msgstr "``sp_namp``" #: ../../library/spwd.rst:23 msgid "Login name" @@ -71,7 +71,7 @@ msgstr "1" #: ../../library/spwd.rst:25 msgid "``sp_pwdp``" -msgstr "" +msgstr "``sp_pwdp``" #: ../../library/spwd.rst:25 msgid "Encrypted password" @@ -83,7 +83,7 @@ msgstr "2" #: ../../library/spwd.rst:27 msgid "``sp_lstchg``" -msgstr "" +msgstr "``sp_lstchg``" #: ../../library/spwd.rst:27 msgid "Date of last change" @@ -91,11 +91,11 @@ msgstr "" #: ../../library/spwd.rst:29 msgid "3" -msgstr "" +msgstr "3" #: ../../library/spwd.rst:29 msgid "``sp_min``" -msgstr "" +msgstr "``sp_min``" #: ../../library/spwd.rst:29 msgid "Minimal number of days between changes" @@ -107,7 +107,7 @@ msgstr "4" #: ../../library/spwd.rst:32 msgid "``sp_max``" -msgstr "" +msgstr "``sp_max``" #: ../../library/spwd.rst:32 msgid "Maximum number of days between changes" @@ -115,11 +115,11 @@ msgstr "" #: ../../library/spwd.rst:35 msgid "5" -msgstr "" +msgstr "5" #: ../../library/spwd.rst:35 msgid "``sp_warn``" -msgstr "" +msgstr "``sp_warn``" #: ../../library/spwd.rst:35 msgid "Number of days before password expires to warn user about it" @@ -127,11 +127,11 @@ msgstr "" #: ../../library/spwd.rst:38 msgid "6" -msgstr "" +msgstr "6" #: ../../library/spwd.rst:38 msgid "``sp_inact``" -msgstr "" +msgstr "``sp_inact``" #: ../../library/spwd.rst:38 msgid "Number of days after password expires until account is disabled" @@ -139,11 +139,11 @@ msgstr "" #: ../../library/spwd.rst:42 msgid "7" -msgstr "" +msgstr "7" #: ../../library/spwd.rst:42 msgid "``sp_expire``" -msgstr "" +msgstr "``sp_expire``" #: ../../library/spwd.rst:42 msgid "Number of days since 1970-01-01 when account expires" @@ -155,7 +155,7 @@ msgstr "8" #: ../../library/spwd.rst:45 msgid "``sp_flag``" -msgstr "" +msgstr "``sp_flag``" #: ../../library/spwd.rst:45 msgid "Reserved" @@ -189,7 +189,7 @@ msgstr "" #: ../../library/spwd.rst:71 msgid "Module :mod:`grp`" -msgstr "" +msgstr ":mod:`grp` 模組" #: ../../library/spwd.rst:71 msgid "An interface to the group database, similar to this." @@ -197,7 +197,7 @@ msgstr "" #: ../../library/spwd.rst:73 msgid "Module :mod:`pwd`" -msgstr "" +msgstr ":mod:`pwd` 模組" #: ../../library/spwd.rst:74 msgid "An interface to the normal password database, similar to this." diff --git a/library/sqlite3.po b/library/sqlite3.po index 191d9b829f..ca5c8a040d 100644 --- a/library/sqlite3.po +++ b/library/sqlite3.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/sqlite3.rst:9 msgid "**Source code:** :source:`Lib/sqlite3/`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/sqlite3/`" #: ../../library/sqlite3.rst:13 msgid "" @@ -471,7 +471,7 @@ msgstr "" #: ../../library/sqlite3.rst:404 ../../library/sqlite3.rst:421 #: ../../library/sqlite3.rst:553 ../../library/sqlite3.rst:704 msgid "Example:" -msgstr "" +msgstr "範例:" #: ../../library/sqlite3.rst:411 msgid "Creates a user-defined aggregate function." @@ -693,6 +693,9 @@ msgstr "" #: ../../library/sqlite3.rst:595 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/sqlite3.rst:609 msgid "" @@ -948,7 +951,7 @@ msgstr "" #: ../../library/sqlite3.rst:875 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/sqlite3.rst:879 msgid "A subclass of :exc:`Exception`." @@ -1022,43 +1025,43 @@ msgstr "" #: ../../library/sqlite3.rst:933 ../../library/sqlite3.rst:950 msgid ":const:`None`" -msgstr "" +msgstr ":const:`None`" #: ../../library/sqlite3.rst:933 ../../library/sqlite3.rst:950 msgid "``NULL``" -msgstr "" +msgstr "``NULL``" #: ../../library/sqlite3.rst:935 ../../library/sqlite3.rst:952 msgid ":class:`int`" -msgstr "" +msgstr ":class:`int`" #: ../../library/sqlite3.rst:935 ../../library/sqlite3.rst:952 msgid "``INTEGER``" -msgstr "" +msgstr "``INTEGER``" #: ../../library/sqlite3.rst:937 ../../library/sqlite3.rst:954 msgid ":class:`float`" -msgstr "" +msgstr ":class:`float`" #: ../../library/sqlite3.rst:937 ../../library/sqlite3.rst:954 msgid "``REAL``" -msgstr "" +msgstr "``REAL``" #: ../../library/sqlite3.rst:939 msgid ":class:`str`" -msgstr "" +msgstr ":class:`str`" #: ../../library/sqlite3.rst:939 ../../library/sqlite3.rst:956 msgid "``TEXT``" -msgstr "" +msgstr "``TEXT``" #: ../../library/sqlite3.rst:941 ../../library/sqlite3.rst:959 msgid ":class:`bytes`" -msgstr "" +msgstr ":class:`bytes`" #: ../../library/sqlite3.rst:941 ../../library/sqlite3.rst:959 msgid "``BLOB``" -msgstr "" +msgstr "``BLOB``" #: ../../library/sqlite3.rst:945 msgid "This is how SQLite types are converted to Python types by default:" diff --git a/library/ssl.po b/library/ssl.po index a9ee966c1b..357a0e1074 100644 --- a/library/ssl.po +++ b/library/ssl.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/ssl.rst:10 msgid "**Source code:** :source:`Lib/ssl.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/ssl.py`" #: ../../library/ssl.rst:18 msgid "" @@ -98,7 +98,7 @@ msgstr "" #: ../../library/ssl.rst:70 msgid "Functions, Constants, and Exceptions" -msgstr "" +msgstr "函式、常數與例外" #: ../../library/ssl.rst:74 msgid "Socket creation" @@ -219,7 +219,7 @@ msgstr "" #: ../../library/ssl.rst:199 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/ssl.rst:203 msgid "" @@ -545,10 +545,13 @@ msgstr "" #: ../../library/ssl.rst:1934 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/ssl.rst:502 ../../library/ssl.rst:517 msgid ":ref:`Availability `: Windows." -msgstr "" +msgstr ":ref:`適用 `:只有 Windows。" #: ../../library/ssl.rst:507 msgid "" @@ -597,7 +600,7 @@ msgstr "" #: ../../library/ssl.rst:549 msgid "Constants" -msgstr "" +msgstr "常數" #: ../../library/ssl.rst:551 msgid "" @@ -1115,51 +1118,55 @@ msgstr "" #: ../../library/ssl.rst:1114 msgid ":meth:`~socket.socket.accept()`" -msgstr "" +msgstr ":meth:`~socket.socket.accept()`" #: ../../library/ssl.rst:1115 msgid ":meth:`~socket.socket.bind()`" -msgstr "" +msgstr ":meth:`~socket.socket.bind()`" #: ../../library/ssl.rst:1116 msgid ":meth:`~socket.socket.close()`" -msgstr "" +msgstr ":meth:`~socket.socket.close()`" #: ../../library/ssl.rst:1117 msgid ":meth:`~socket.socket.connect()`" -msgstr "" +msgstr ":meth:`~socket.socket.connect()`" #: ../../library/ssl.rst:1118 msgid ":meth:`~socket.socket.detach()`" -msgstr "" +msgstr ":meth:`~socket.socket.detach()`" #: ../../library/ssl.rst:1119 msgid ":meth:`~socket.socket.fileno()`" -msgstr "" +msgstr ":meth:`~socket.socket.fileno()`" #: ../../library/ssl.rst:1120 msgid "" ":meth:`~socket.socket.getpeername()`, :meth:`~socket.socket.getsockname()`" msgstr "" +":meth:`~socket.socket.getpeername()`, :meth:`~socket.socket.getsockname()`" #: ../../library/ssl.rst:1121 msgid "" ":meth:`~socket.socket.getsockopt()`, :meth:`~socket.socket.setsockopt()`" msgstr "" +":meth:`~socket.socket.getsockopt()`, :meth:`~socket.socket.setsockopt()`" #: ../../library/ssl.rst:1122 msgid "" ":meth:`~socket.socket.gettimeout()`, :meth:`~socket.socket.settimeout()`, :" "meth:`~socket.socket.setblocking()`" msgstr "" +":meth:`~socket.socket.gettimeout()`, :meth:`~socket.socket.settimeout()`, :" +"meth:`~socket.socket.setblocking()`" #: ../../library/ssl.rst:1124 msgid ":meth:`~socket.socket.listen()`" -msgstr "" +msgstr ":meth:`~socket.socket.listen()`" #: ../../library/ssl.rst:1125 msgid ":meth:`~socket.socket.makefile()`" -msgstr "" +msgstr ":meth:`~socket.socket.makefile()`" #: ../../library/ssl.rst:1126 msgid "" @@ -1181,7 +1188,7 @@ msgstr "" #: ../../library/ssl.rst:1132 msgid ":meth:`~socket.socket.shutdown()`" -msgstr "" +msgstr ":meth:`~socket.socket.shutdown()`" #: ../../library/ssl.rst:1134 msgid "" @@ -1590,31 +1597,31 @@ msgstr "" #: ../../library/ssl.rst:1482 msgid "**SSLv2**" -msgstr "" +msgstr "**SSLv2**" #: ../../library/ssl.rst:1482 msgid "**SSLv3**" -msgstr "" +msgstr "**SSLv3**" #: ../../library/ssl.rst:1482 msgid "**TLS** [3]_" -msgstr "" +msgstr "**TLS** [3]_" #: ../../library/ssl.rst:1482 msgid "**TLSv1**" -msgstr "" +msgstr "**TLSv1**" #: ../../library/ssl.rst:1482 msgid "**TLSv1.1**" -msgstr "" +msgstr "**TLSv1.1**" #: ../../library/ssl.rst:1482 msgid "**TLSv1.2**" -msgstr "" +msgstr "**TLSv1.2**" #: ../../library/ssl.rst:1484 msgid "*SSLv2*" -msgstr "" +msgstr "*SSLv2*" #: ../../library/ssl.rst:1484 ../../library/ssl.rst:1485 #: ../../library/ssl.rst:1486 ../../library/ssl.rst:1487 @@ -1634,7 +1641,7 @@ msgstr "" #: ../../library/ssl.rst:1485 msgid "*SSLv3*" -msgstr "" +msgstr "*SSLv3*" #: ../../library/ssl.rst:1485 ../../library/ssl.rst:1486 msgid "no [2]_" @@ -1642,23 +1649,23 @@ msgstr "" #: ../../library/ssl.rst:1486 msgid "*TLS* (*SSLv23*) [3]_" -msgstr "" +msgstr "*TLS* (*SSLv23*) [3]_" #: ../../library/ssl.rst:1487 msgid "*TLSv1*" -msgstr "" +msgstr "*TLSv1*" #: ../../library/ssl.rst:1488 msgid "*TLSv1.1*" -msgstr "" +msgstr "*TLSv1.1*" #: ../../library/ssl.rst:1489 msgid "*TLSv1.2*" -msgstr "" +msgstr "*TLSv1.2*" #: ../../library/ssl.rst:1492 msgid "Footnotes" -msgstr "" +msgstr "註解" #: ../../library/ssl.rst:1493 msgid ":class:`SSLContext` disables SSLv2 with :data:`OP_NO_SSLv2` by default." @@ -2422,7 +2429,7 @@ msgstr "" #: ../../library/ssl.rst:2223 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/ssl.rst:2226 msgid "Testing for SSL support" @@ -2665,79 +2672,79 @@ msgstr "" #: ../../library/ssl.rst:2506 msgid ":attr:`~SSLSocket.context`" -msgstr "" +msgstr ":attr:`~SSLSocket.context`" #: ../../library/ssl.rst:2507 msgid ":attr:`~SSLSocket.server_side`" -msgstr "" +msgstr ":attr:`~SSLSocket.server_side`" #: ../../library/ssl.rst:2508 msgid ":attr:`~SSLSocket.server_hostname`" -msgstr "" +msgstr ":attr:`~SSLSocket.server_hostname`" #: ../../library/ssl.rst:2509 msgid ":attr:`~SSLSocket.session`" -msgstr "" +msgstr ":attr:`~SSLSocket.session`" #: ../../library/ssl.rst:2510 msgid ":attr:`~SSLSocket.session_reused`" -msgstr "" +msgstr ":attr:`~SSLSocket.session_reused`" #: ../../library/ssl.rst:2511 msgid ":meth:`~SSLSocket.read`" -msgstr "" +msgstr ":meth:`~SSLSocket.read`" #: ../../library/ssl.rst:2512 msgid ":meth:`~SSLSocket.write`" -msgstr "" +msgstr ":meth:`~SSLSocket.write`" #: ../../library/ssl.rst:2513 msgid ":meth:`~SSLSocket.getpeercert`" -msgstr "" +msgstr ":meth:`~SSLSocket.getpeercert`" #: ../../library/ssl.rst:2514 msgid ":meth:`~SSLSocket.selected_alpn_protocol`" -msgstr "" +msgstr ":meth:`~SSLSocket.selected_alpn_protocol`" #: ../../library/ssl.rst:2515 msgid ":meth:`~SSLSocket.selected_npn_protocol`" -msgstr "" +msgstr ":meth:`~SSLSocket.selected_npn_protocol`" #: ../../library/ssl.rst:2516 msgid ":meth:`~SSLSocket.cipher`" -msgstr "" +msgstr ":meth:`~SSLSocket.cipher`" #: ../../library/ssl.rst:2517 msgid ":meth:`~SSLSocket.shared_ciphers`" -msgstr "" +msgstr ":meth:`~SSLSocket.shared_ciphers`" #: ../../library/ssl.rst:2518 msgid ":meth:`~SSLSocket.compression`" -msgstr "" +msgstr ":meth:`~SSLSocket.compression`" #: ../../library/ssl.rst:2519 msgid ":meth:`~SSLSocket.pending`" -msgstr "" +msgstr ":meth:`~SSLSocket.pending`" #: ../../library/ssl.rst:2520 msgid ":meth:`~SSLSocket.do_handshake`" -msgstr "" +msgstr ":meth:`~SSLSocket.do_handshake`" #: ../../library/ssl.rst:2521 msgid ":meth:`~SSLSocket.verify_client_post_handshake`" -msgstr "" +msgstr ":meth:`~SSLSocket.verify_client_post_handshake`" #: ../../library/ssl.rst:2522 msgid ":meth:`~SSLSocket.unwrap`" -msgstr "" +msgstr ":meth:`~SSLSocket.unwrap`" #: ../../library/ssl.rst:2523 msgid ":meth:`~SSLSocket.get_channel_binding`" -msgstr "" +msgstr ":meth:`~SSLSocket.get_channel_binding`" #: ../../library/ssl.rst:2524 msgid ":meth:`~SSLSocket.version`" -msgstr "" +msgstr ":meth:`~SSLSocket.version`" #: ../../library/ssl.rst:2526 msgid "" @@ -3097,7 +3104,7 @@ msgstr "" #: ../../library/ssl.rst:2773 msgid "IANA" -msgstr "" +msgstr "IANA" #: ../../library/ssl.rst:2776 msgid "" @@ -3107,7 +3114,7 @@ msgstr "" #: ../../library/ssl.rst:2776 msgid "IETF" -msgstr "" +msgstr "IETF" #: ../../library/ssl.rst:2778 msgid "" @@ -3117,4 +3124,4 @@ msgstr "" #: ../../library/ssl.rst:2779 msgid "Mozilla" -msgstr "" +msgstr "Mozilla" diff --git a/library/stat.po b/library/stat.po index 0ed18a660b..bf3e61ae6a 100644 --- a/library/stat.po +++ b/library/stat.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/stat.rst:10 msgid "**Source code:** :source:`Lib/stat.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/stat.py`" #: ../../library/stat.rst:14 msgid "" @@ -116,6 +116,9 @@ msgstr "" #: ../../library/stat.rst:101 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/stat.rst:129 msgid "" diff --git a/library/statistics.po b/library/statistics.po index 5e43babb56..2b37ec24ed 100644 --- a/library/statistics.po +++ b/library/statistics.po @@ -26,7 +26,7 @@ msgstr ":mod:`statistics` --- 數學統計函式" #: ../../library/statistics.rst:12 msgid "**Source code:** :source:`Lib/statistics.py`" -msgstr "**Source code:** :source:`Lib/statistics.py`" +msgstr "**原始碼:**\\ :source:`Lib/statistics.py`" #: ../../library/statistics.rst:21 msgid "" @@ -91,7 +91,7 @@ msgstr "數據中較小的中位數。" #: ../../library/statistics.rst:48 msgid ":func:`harmonic_mean`" -msgstr "" +msgstr ":func:`harmonic_mean`" #: ../../library/statistics.rst:48 msgid "Harmonic mean of data." @@ -224,7 +224,7 @@ msgstr "" #: ../../library/statistics.rst:79 msgid ":func:`linear_regression`" -msgstr "" +msgstr ":func:`linear_regression`" #: ../../library/statistics.rst:79 msgid "Slope and intercept for simple linear regression." @@ -561,7 +561,7 @@ msgstr "" #: ../../library/statistics.rst:414 ../../library/statistics.rst:484 #: ../../library/statistics.rst:588 ../../library/statistics.rst:616 msgid "Examples:" -msgstr "" +msgstr "範例:" #: ../../library/statistics.rst:422 msgid "" @@ -776,7 +776,7 @@ msgstr "" #: ../../library/statistics.rst:667 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/statistics.rst:669 msgid "A single exception is defined:" @@ -788,7 +788,7 @@ msgstr "" #: ../../library/statistics.rst:677 msgid ":class:`NormalDist` objects" -msgstr "" +msgstr ":class:`NormalDist` 物件" #: ../../library/statistics.rst:679 msgid "" diff --git a/library/stdtypes.po b/library/stdtypes.po index 33a8a657f8..9ab3865124 100644 --- a/library/stdtypes.po +++ b/library/stdtypes.po @@ -112,7 +112,7 @@ msgstr "" #: ../../library/stdtypes.rst:363 ../../library/stdtypes.rst:413 #: ../../library/stdtypes.rst:881 ../../library/stdtypes.rst:1076 msgid "Result" -msgstr "" +msgstr "結果" #: ../../library/stdtypes.rst:85 ../../library/stdtypes.rst:274 #: ../../library/stdtypes.rst:413 ../../library/stdtypes.rst:881 @@ -123,7 +123,7 @@ msgstr "註解" #: ../../library/stdtypes.rst:87 msgid "``x or y``" -msgstr "" +msgstr "``x or y``" #: ../../library/stdtypes.rst:87 msgid "if *x* is false, then *y*, else *x*" @@ -138,7 +138,7 @@ msgstr "\\(1)" #: ../../library/stdtypes.rst:90 msgid "``x and y``" -msgstr "" +msgstr "``x and y``" #: ../../library/stdtypes.rst:90 msgid "if *x* is false, then *x*, else *y*" @@ -153,7 +153,7 @@ msgstr "\\(2)" #: ../../library/stdtypes.rst:93 msgid "``not x``" -msgstr "" +msgstr "``not x``" #: ../../library/stdtypes.rst:93 msgid "if *x* is false, then ``True``, else ``False``" @@ -166,7 +166,7 @@ msgstr "" #: ../../library/stdtypes.rst:3545 ../../library/stdtypes.rst:3547 #: ../../library/stdtypes.rst:3549 msgid "\\(3)" -msgstr "" +msgstr "\\(3)" #: ../../library/stdtypes.rst:102 ../../library/stdtypes.rst:318 #: ../../library/stdtypes.rst:431 ../../library/stdtypes.rst:922 @@ -218,7 +218,7 @@ msgstr "" #: ../../library/stdtypes.rst:145 msgid "``<``" -msgstr "" +msgstr "``<``" #: ../../library/stdtypes.rst:145 msgid "strictly less than" @@ -226,7 +226,7 @@ msgstr "" #: ../../library/stdtypes.rst:147 msgid "``<=``" -msgstr "" +msgstr "``<=``" #: ../../library/stdtypes.rst:147 msgid "less than or equal" @@ -234,7 +234,7 @@ msgstr "" #: ../../library/stdtypes.rst:149 msgid "``>``" -msgstr "" +msgstr "``>``" #: ../../library/stdtypes.rst:149 msgid "strictly greater than" @@ -242,7 +242,7 @@ msgstr "" #: ../../library/stdtypes.rst:151 msgid "``>=``" -msgstr "" +msgstr "``>=``" #: ../../library/stdtypes.rst:151 msgid "greater than or equal" @@ -250,7 +250,7 @@ msgstr "" #: ../../library/stdtypes.rst:153 msgid "``==``" -msgstr "" +msgstr "``==``" #: ../../library/stdtypes.rst:153 msgid "equal" @@ -258,7 +258,7 @@ msgstr "" #: ../../library/stdtypes.rst:155 msgid "``!=``" -msgstr "" +msgstr "``!=``" #: ../../library/stdtypes.rst:155 msgid "not equal" @@ -266,7 +266,7 @@ msgstr "" #: ../../library/stdtypes.rst:157 msgid "``is``" -msgstr "" +msgstr "``is``" #: ../../library/stdtypes.rst:157 msgid "object identity" @@ -274,7 +274,7 @@ msgstr "" #: ../../library/stdtypes.rst:159 msgid "``is not``" -msgstr "" +msgstr "``is not``" #: ../../library/stdtypes.rst:159 msgid "negated object identity" @@ -377,7 +377,7 @@ msgstr "" #: ../../library/stdtypes.rst:276 msgid "``x + y``" -msgstr "" +msgstr "``x + y``" #: ../../library/stdtypes.rst:276 msgid "sum of *x* and *y*" @@ -385,7 +385,7 @@ msgstr "" #: ../../library/stdtypes.rst:278 msgid "``x - y``" -msgstr "" +msgstr "``x - y``" #: ../../library/stdtypes.rst:278 msgid "difference of *x* and *y*" @@ -393,7 +393,7 @@ msgstr "" #: ../../library/stdtypes.rst:280 msgid "``x * y``" -msgstr "" +msgstr "``x * y``" #: ../../library/stdtypes.rst:280 msgid "product of *x* and *y*" @@ -401,7 +401,7 @@ msgstr "" #: ../../library/stdtypes.rst:282 msgid "``x / y``" -msgstr "" +msgstr "``x / y``" #: ../../library/stdtypes.rst:282 msgid "quotient of *x* and *y*" @@ -409,7 +409,7 @@ msgstr "" #: ../../library/stdtypes.rst:284 msgid "``x // y``" -msgstr "" +msgstr "``x // y``" #: ../../library/stdtypes.rst:284 msgid "floored quotient of *x* and *y*" @@ -417,7 +417,7 @@ msgstr "" #: ../../library/stdtypes.rst:287 msgid "``x % y``" -msgstr "" +msgstr "``x % y``" #: ../../library/stdtypes.rst:287 msgid "remainder of ``x / y``" @@ -425,7 +425,7 @@ msgstr "" #: ../../library/stdtypes.rst:289 msgid "``-x``" -msgstr "" +msgstr "``-x``" #: ../../library/stdtypes.rst:289 msgid "*x* negated" @@ -433,7 +433,7 @@ msgstr "" #: ../../library/stdtypes.rst:291 msgid "``+x``" -msgstr "" +msgstr "``+x``" #: ../../library/stdtypes.rst:291 msgid "*x* unchanged" @@ -441,7 +441,7 @@ msgstr "" #: ../../library/stdtypes.rst:293 msgid "``abs(x)``" -msgstr "" +msgstr "``abs(x)``" #: ../../library/stdtypes.rst:293 msgid "absolute value or magnitude of *x*" @@ -449,11 +449,11 @@ msgstr "" #: ../../library/stdtypes.rst:293 msgid ":func:`abs`" -msgstr "" +msgstr ":func:`abs`" #: ../../library/stdtypes.rst:296 msgid "``int(x)``" -msgstr "" +msgstr "``int(x)``" #: ../../library/stdtypes.rst:296 msgid "*x* converted to integer" @@ -461,15 +461,15 @@ msgstr "" #: ../../library/stdtypes.rst:296 msgid "\\(3)\\(6)" -msgstr "" +msgstr "\\(3)\\(6)" #: ../../library/stdtypes.rst:296 msgid ":func:`int`" -msgstr "" +msgstr ":func:`int`" #: ../../library/stdtypes.rst:298 msgid "``float(x)``" -msgstr "" +msgstr "``float(x)``" #: ../../library/stdtypes.rst:298 msgid "*x* converted to floating point" @@ -477,15 +477,15 @@ msgstr "" #: ../../library/stdtypes.rst:298 msgid "\\(4)\\(6)" -msgstr "" +msgstr "\\(4)\\(6)" #: ../../library/stdtypes.rst:298 msgid ":func:`float`" -msgstr "" +msgstr ":func:`float`" #: ../../library/stdtypes.rst:300 msgid "``complex(re, im)``" -msgstr "" +msgstr "``complex(re, im)``" #: ../../library/stdtypes.rst:300 msgid "" @@ -496,15 +496,15 @@ msgstr "" #: ../../library/stdtypes.rst:300 ../../library/stdtypes.rst:1108 #: ../../library/stdtypes.rst:2316 ../../library/stdtypes.rst:3566 msgid "\\(6)" -msgstr "" +msgstr "\\(6)" #: ../../library/stdtypes.rst:300 msgid ":func:`complex`" -msgstr "" +msgstr ":func:`complex`" #: ../../library/stdtypes.rst:304 msgid "``c.conjugate()``" -msgstr "" +msgstr "``c.conjugate()``" #: ../../library/stdtypes.rst:304 msgid "conjugate of the complex number *c*" @@ -512,7 +512,7 @@ msgstr "" #: ../../library/stdtypes.rst:307 msgid "``divmod(x, y)``" -msgstr "" +msgstr "``divmod(x, y)``" #: ../../library/stdtypes.rst:307 msgid "the pair ``(x // y, x % y)``" @@ -520,11 +520,11 @@ msgstr "" #: ../../library/stdtypes.rst:307 msgid ":func:`divmod`" -msgstr "" +msgstr ":func:`divmod`" #: ../../library/stdtypes.rst:309 msgid "``pow(x, y)``" -msgstr "" +msgstr "``pow(x, y)``" #: ../../library/stdtypes.rst:309 ../../library/stdtypes.rst:311 msgid "*x* to the power *y*" @@ -536,15 +536,15 @@ msgstr "" #: ../../library/stdtypes.rst:2347 ../../library/stdtypes.rst:3562 #: ../../library/stdtypes.rst:3569 msgid "\\(5)" -msgstr "" +msgstr "\\(5)" #: ../../library/stdtypes.rst:309 msgid ":func:`pow`" -msgstr "" +msgstr ":func:`pow`" #: ../../library/stdtypes.rst:311 msgid "``x ** y``" -msgstr "" +msgstr "``x ** y``" #: ../../library/stdtypes.rst:321 msgid "" @@ -599,7 +599,7 @@ msgstr "" #: ../../library/stdtypes.rst:365 msgid ":func:`math.trunc(\\ x) `" -msgstr "" +msgstr ":func:`math.trunc(\\ x) `" #: ../../library/stdtypes.rst:365 msgid "*x* truncated to :class:`~numbers.Integral`" @@ -607,7 +607,7 @@ msgstr "" #: ../../library/stdtypes.rst:368 msgid ":func:`round(x[, n]) `" -msgstr "" +msgstr ":func:`round(x[, n]) `" #: ../../library/stdtypes.rst:368 msgid "" @@ -617,7 +617,7 @@ msgstr "" #: ../../library/stdtypes.rst:372 msgid ":func:`math.floor(\\ x) `" -msgstr "" +msgstr ":func:`math.floor(\\ x) `" #: ../../library/stdtypes.rst:372 msgid "the greatest :class:`~numbers.Integral` <= *x*" @@ -625,7 +625,7 @@ msgstr "" #: ../../library/stdtypes.rst:375 msgid ":func:`math.ceil(x) `" -msgstr "" +msgstr ":func:`math.ceil(x) `" #: ../../library/stdtypes.rst:375 msgid "the least :class:`~numbers.Integral` >= *x*" @@ -662,7 +662,7 @@ msgstr "" #: ../../library/stdtypes.rst:415 msgid "``x | y``" -msgstr "" +msgstr "``x | y``" #: ../../library/stdtypes.rst:415 msgid "bitwise :dfn:`or` of *x* and *y*" @@ -673,11 +673,11 @@ msgstr "" #: ../../library/stdtypes.rst:2330 ../../library/stdtypes.rst:2334 #: ../../library/stdtypes.rst:3551 ../../library/stdtypes.rst:3555 msgid "\\(4)" -msgstr "" +msgstr "\\(4)" #: ../../library/stdtypes.rst:418 msgid "``x ^ y``" -msgstr "" +msgstr "``x ^ y``" #: ../../library/stdtypes.rst:418 msgid "bitwise :dfn:`exclusive or` of *x* and *y*" @@ -685,7 +685,7 @@ msgstr "" #: ../../library/stdtypes.rst:421 msgid "``x & y``" -msgstr "" +msgstr "``x & y``" #: ../../library/stdtypes.rst:421 msgid "bitwise :dfn:`and` of *x* and *y*" @@ -693,7 +693,7 @@ msgstr "" #: ../../library/stdtypes.rst:424 msgid "``x << n``" -msgstr "" +msgstr "``x << n``" #: ../../library/stdtypes.rst:424 msgid "*x* shifted left by *n* bits" @@ -701,11 +701,11 @@ msgstr "" #: ../../library/stdtypes.rst:424 msgid "(1)(2)" -msgstr "" +msgstr "(1)(2)" #: ../../library/stdtypes.rst:426 msgid "``x >> n``" -msgstr "" +msgstr "``x >> n``" #: ../../library/stdtypes.rst:426 msgid "*x* shifted right by *n* bits" @@ -713,11 +713,11 @@ msgstr "" #: ../../library/stdtypes.rst:426 msgid "(1)(3)" -msgstr "" +msgstr "(1)(3)" #: ../../library/stdtypes.rst:428 msgid "``~x``" -msgstr "" +msgstr "``~x``" #: ../../library/stdtypes.rst:428 msgid "the bits of *x* inverted" @@ -774,6 +774,9 @@ msgstr "" #: ../../library/stdtypes.rst:472 ../../library/stdtypes.rst:495 msgid "Equivalent to::" msgstr "" +"等價於:\n" +"\n" +"::" #: ../../library/stdtypes.rst:483 msgid "" @@ -1114,7 +1117,7 @@ msgstr "" #: ../../library/stdtypes.rst:883 msgid "``x in s``" -msgstr "" +msgstr "``x in s``" #: ../../library/stdtypes.rst:883 msgid "``True`` if an item of *s* is equal to *x*, else ``False``" @@ -1122,7 +1125,7 @@ msgstr "" #: ../../library/stdtypes.rst:886 msgid "``x not in s``" -msgstr "" +msgstr "``x not in s``" #: ../../library/stdtypes.rst:886 msgid "``False`` if an item of *s* is equal to *x*, else ``True``" @@ -1130,7 +1133,7 @@ msgstr "" #: ../../library/stdtypes.rst:889 msgid "``s + t``" -msgstr "" +msgstr "``s + t``" #: ../../library/stdtypes.rst:889 msgid "the concatenation of *s* and *t*" @@ -1138,11 +1141,11 @@ msgstr "" #: ../../library/stdtypes.rst:889 msgid "(6)(7)" -msgstr "" +msgstr "(6)(7)" #: ../../library/stdtypes.rst:892 msgid "``s * n`` or ``n * s``" -msgstr "" +msgstr "``s * n`` 或 ``n * s``" #: ../../library/stdtypes.rst:892 msgid "equivalent to adding *s* to itself *n* times" @@ -1150,11 +1153,11 @@ msgstr "" #: ../../library/stdtypes.rst:892 msgid "(2)(7)" -msgstr "" +msgstr "(2)(7)" #: ../../library/stdtypes.rst:895 msgid "``s[i]``" -msgstr "" +msgstr "``s[i]``" #: ../../library/stdtypes.rst:895 msgid "*i*\\ th item of *s*, origin 0" @@ -1162,7 +1165,7 @@ msgstr "" #: ../../library/stdtypes.rst:897 msgid "``s[i:j]``" -msgstr "" +msgstr "``s[i:j]``" #: ../../library/stdtypes.rst:897 msgid "slice of *s* from *i* to *j*" @@ -1170,11 +1173,11 @@ msgstr "" #: ../../library/stdtypes.rst:897 msgid "(3)(4)" -msgstr "" +msgstr "(3)(4)" #: ../../library/stdtypes.rst:899 msgid "``s[i:j:k]``" -msgstr "" +msgstr "``s[i:j:k]``" #: ../../library/stdtypes.rst:899 msgid "slice of *s* from *i* to *j* with step *k*" @@ -1182,11 +1185,11 @@ msgstr "" #: ../../library/stdtypes.rst:899 msgid "(3)(5)" -msgstr "" +msgstr "(3)(5)" #: ../../library/stdtypes.rst:902 msgid "``len(s)``" -msgstr "" +msgstr "``len(s)``" #: ../../library/stdtypes.rst:902 msgid "length of *s*" @@ -1194,7 +1197,7 @@ msgstr "" #: ../../library/stdtypes.rst:904 msgid "``min(s)``" -msgstr "" +msgstr "``min(s)``" #: ../../library/stdtypes.rst:904 msgid "smallest item of *s*" @@ -1202,7 +1205,7 @@ msgstr "" #: ../../library/stdtypes.rst:906 msgid "``max(s)``" -msgstr "" +msgstr "``max(s)``" #: ../../library/stdtypes.rst:906 msgid "largest item of *s*" @@ -1210,7 +1213,7 @@ msgstr "" #: ../../library/stdtypes.rst:908 msgid "``s.index(x[, i[, j]])``" -msgstr "" +msgstr "``s.index(x[, i[, j]])``" #: ../../library/stdtypes.rst:908 msgid "" @@ -1220,11 +1223,11 @@ msgstr "" #: ../../library/stdtypes.rst:908 ../../library/stdtypes.rst:3537 msgid "\\(8)" -msgstr "" +msgstr "\\(8)" #: ../../library/stdtypes.rst:912 msgid "``s.count(x)``" -msgstr "" +msgstr "``s.count(x)``" #: ../../library/stdtypes.rst:912 msgid "total number of occurrences of *x* in *s*" @@ -1391,7 +1394,7 @@ msgstr "" #: ../../library/stdtypes.rst:1078 msgid "``s[i] = x``" -msgstr "" +msgstr "``s[i] = x``" #: ../../library/stdtypes.rst:1078 msgid "item *i* of *s* is replaced by *x*" @@ -1399,7 +1402,7 @@ msgstr "" #: ../../library/stdtypes.rst:1081 msgid "``s[i:j] = t``" -msgstr "" +msgstr "``s[i:j] = t``" #: ../../library/stdtypes.rst:1081 msgid "" @@ -1408,7 +1411,7 @@ msgstr "" #: ../../library/stdtypes.rst:1085 msgid "``del s[i:j]``" -msgstr "" +msgstr "``del s[i:j]``" #: ../../library/stdtypes.rst:1085 msgid "same as ``s[i:j] = []``" @@ -1416,7 +1419,7 @@ msgstr "" #: ../../library/stdtypes.rst:1087 msgid "``s[i:j:k] = t``" -msgstr "" +msgstr "``s[i:j:k] = t``" #: ../../library/stdtypes.rst:1087 msgid "the elements of ``s[i:j:k]`` are replaced by those of *t*" @@ -1424,7 +1427,7 @@ msgstr "" #: ../../library/stdtypes.rst:1090 msgid "``del s[i:j:k]``" -msgstr "" +msgstr "``del s[i:j:k]``" #: ../../library/stdtypes.rst:1090 msgid "removes the elements of ``s[i:j:k]`` from the list" @@ -1432,7 +1435,7 @@ msgstr "" #: ../../library/stdtypes.rst:1093 msgid "``s.append(x)``" -msgstr "" +msgstr "``s.append(x)``" #: ../../library/stdtypes.rst:1093 msgid "" @@ -1441,7 +1444,7 @@ msgstr "" #: ../../library/stdtypes.rst:1097 msgid "``s.clear()``" -msgstr "" +msgstr "``s.clear()``" #: ../../library/stdtypes.rst:1097 msgid "removes all items from *s* (same as ``del s[:]``)" @@ -1449,7 +1452,7 @@ msgstr "" #: ../../library/stdtypes.rst:1100 msgid "``s.copy()``" -msgstr "" +msgstr "``s.copy()``" #: ../../library/stdtypes.rst:1100 msgid "creates a shallow copy of *s* (same as ``s[:]``)" @@ -1457,7 +1460,7 @@ msgstr "" #: ../../library/stdtypes.rst:1103 msgid "``s.extend(t)`` or ``s += t``" -msgstr "" +msgstr "``s.extend(t)`` 或 ``s += t``" #: ../../library/stdtypes.rst:1103 msgid "" @@ -1467,7 +1470,7 @@ msgstr "" #: ../../library/stdtypes.rst:1108 msgid "``s *= n``" -msgstr "" +msgstr "``s *= n``" #: ../../library/stdtypes.rst:1108 msgid "updates *s* with its contents repeated *n* times" @@ -1475,7 +1478,7 @@ msgstr "" #: ../../library/stdtypes.rst:1111 msgid "``s.insert(i, x)``" -msgstr "" +msgstr "``s.insert(i, x)``" #: ../../library/stdtypes.rst:1111 msgid "" @@ -1484,7 +1487,7 @@ msgstr "" #: ../../library/stdtypes.rst:1115 msgid "``s.pop()`` or ``s.pop(i)``" -msgstr "" +msgstr "``s.pop()`` 或 ``s.pop(i)``" #: ../../library/stdtypes.rst:1115 msgid "retrieves the item at *i* and also removes it from *s*" @@ -1492,7 +1495,7 @@ msgstr "" #: ../../library/stdtypes.rst:1118 msgid "``s.remove(x)``" -msgstr "" +msgstr "``s.remove(x)``" #: ../../library/stdtypes.rst:1118 msgid "remove the first item from *s* where ``s[i]`` is equal to *x*" @@ -1500,7 +1503,7 @@ msgstr "" #: ../../library/stdtypes.rst:1121 msgid "``s.reverse()``" -msgstr "" +msgstr "``s.reverse()``" #: ../../library/stdtypes.rst:1121 msgid "reverses the items of *s* in place" @@ -2222,6 +2225,9 @@ msgstr "" #: ../../library/stdtypes.rst:1746 msgid "Example: ::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/stdtypes.rst:1759 msgid "" @@ -2451,6 +2457,9 @@ msgstr "" #: ../../library/stdtypes.rst:3406 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/stdtypes.rst:2001 msgid "" @@ -2485,7 +2494,7 @@ msgstr "描述" #: ../../library/stdtypes.rst:2033 msgid "``\\n``" -msgstr "" +msgstr "``\\n``" #: ../../library/stdtypes.rst:2033 msgid "Line Feed" @@ -2493,7 +2502,7 @@ msgstr "" #: ../../library/stdtypes.rst:2035 msgid "``\\r``" -msgstr "" +msgstr "``\\r``" #: ../../library/stdtypes.rst:2035 msgid "Carriage Return" @@ -2501,7 +2510,7 @@ msgstr "" #: ../../library/stdtypes.rst:2037 msgid "``\\r\\n``" -msgstr "" +msgstr "``\\r\\n``" #: ../../library/stdtypes.rst:2037 msgid "Carriage Return + Line Feed" @@ -2509,7 +2518,7 @@ msgstr "" #: ../../library/stdtypes.rst:2039 msgid "``\\v`` or ``\\x0b``" -msgstr "" +msgstr "``\\v`` 或 ``\\x0b``" #: ../../library/stdtypes.rst:2039 msgid "Line Tabulation" @@ -2517,7 +2526,7 @@ msgstr "" #: ../../library/stdtypes.rst:2041 msgid "``\\f`` or ``\\x0c``" -msgstr "" +msgstr "``\\f`` 或 ``\\x0c``" #: ../../library/stdtypes.rst:2041 msgid "Form Feed" @@ -2525,7 +2534,7 @@ msgstr "" #: ../../library/stdtypes.rst:2043 msgid "``\\x1c``" -msgstr "" +msgstr "``\\x1c``" #: ../../library/stdtypes.rst:2043 msgid "File Separator" @@ -2533,7 +2542,7 @@ msgstr "" #: ../../library/stdtypes.rst:2045 msgid "``\\x1d``" -msgstr "" +msgstr "``\\x1d``" #: ../../library/stdtypes.rst:2045 msgid "Group Separator" @@ -2541,7 +2550,7 @@ msgstr "" #: ../../library/stdtypes.rst:2047 msgid "``\\x1e``" -msgstr "" +msgstr "``\\x1e``" #: ../../library/stdtypes.rst:2047 msgid "Record Separator" @@ -2549,7 +2558,7 @@ msgstr "" #: ../../library/stdtypes.rst:2049 msgid "``\\x85``" -msgstr "" +msgstr "``\\x85``" #: ../../library/stdtypes.rst:2049 msgid "Next Line (C1 Control Code)" @@ -2557,7 +2566,7 @@ msgstr "" #: ../../library/stdtypes.rst:2051 msgid "``\\u2028``" -msgstr "" +msgstr "``\\u2028``" #: ../../library/stdtypes.rst:2051 msgid "Line Separator" @@ -2565,7 +2574,7 @@ msgstr "" #: ../../library/stdtypes.rst:2053 msgid "``\\u2029``" -msgstr "" +msgstr "``\\u2029``" #: ../../library/stdtypes.rst:2053 msgid "Paragraph Separator" @@ -2786,7 +2795,7 @@ msgstr "" #: ../../library/stdtypes.rst:2287 ../../library/stdtypes.rst:3508 msgid "``'#'``" -msgstr "" +msgstr "``'#'``" #: ../../library/stdtypes.rst:2287 ../../library/stdtypes.rst:3508 msgid "" @@ -2795,7 +2804,7 @@ msgstr "" #: ../../library/stdtypes.rst:2290 ../../library/stdtypes.rst:3511 msgid "``'0'``" -msgstr "" +msgstr "``'0'``" #: ../../library/stdtypes.rst:2290 ../../library/stdtypes.rst:3511 msgid "The conversion will be zero padded for numeric values." @@ -2803,7 +2812,7 @@ msgstr "" #: ../../library/stdtypes.rst:2292 ../../library/stdtypes.rst:3513 msgid "``'-'``" -msgstr "" +msgstr "``'-'``" #: ../../library/stdtypes.rst:2292 ../../library/stdtypes.rst:3513 msgid "" @@ -2813,7 +2822,7 @@ msgstr "" #: ../../library/stdtypes.rst:2295 ../../library/stdtypes.rst:3516 msgid "``' '``" -msgstr "" +msgstr "``' '``" #: ../../library/stdtypes.rst:2295 ../../library/stdtypes.rst:3516 msgid "" @@ -2823,7 +2832,7 @@ msgstr "" #: ../../library/stdtypes.rst:2298 ../../library/stdtypes.rst:3519 msgid "``'+'``" -msgstr "" +msgstr "``'+'``" #: ../../library/stdtypes.rst:2298 ../../library/stdtypes.rst:3519 msgid "" @@ -2860,7 +2869,7 @@ msgstr "``'i'``" #: ../../library/stdtypes.rst:2314 ../../library/stdtypes.rst:3535 msgid "``'o'``" -msgstr "" +msgstr "``'o'``" #: ../../library/stdtypes.rst:2314 ../../library/stdtypes.rst:3535 msgid "Signed octal value." @@ -2876,7 +2885,7 @@ msgstr "" #: ../../library/stdtypes.rst:2318 ../../library/stdtypes.rst:3539 msgid "``'x'``" -msgstr "" +msgstr "``'x'``" #: ../../library/stdtypes.rst:2318 ../../library/stdtypes.rst:3539 msgid "Signed hexadecimal (lowercase)." @@ -2884,7 +2893,7 @@ msgstr "" #: ../../library/stdtypes.rst:2320 ../../library/stdtypes.rst:3541 msgid "``'X'``" -msgstr "" +msgstr "``'X'``" #: ../../library/stdtypes.rst:2320 ../../library/stdtypes.rst:3541 msgid "Signed hexadecimal (uppercase)." @@ -2892,7 +2901,7 @@ msgstr "" #: ../../library/stdtypes.rst:2322 ../../library/stdtypes.rst:3543 msgid "``'e'``" -msgstr "" +msgstr "``'e'``" #: ../../library/stdtypes.rst:2322 ../../library/stdtypes.rst:3543 msgid "Floating point exponential format (lowercase)." @@ -2900,7 +2909,7 @@ msgstr "" #: ../../library/stdtypes.rst:2324 ../../library/stdtypes.rst:3545 msgid "``'E'``" -msgstr "" +msgstr "``'E'``" #: ../../library/stdtypes.rst:2324 ../../library/stdtypes.rst:3545 msgid "Floating point exponential format (uppercase)." @@ -2917,11 +2926,11 @@ msgstr "" #: ../../library/stdtypes.rst:2328 ../../library/stdtypes.rst:3549 msgid "``'F'``" -msgstr "" +msgstr "``'F'``" #: ../../library/stdtypes.rst:2330 ../../library/stdtypes.rst:3551 msgid "``'g'``" -msgstr "" +msgstr "``'g'``" #: ../../library/stdtypes.rst:2330 ../../library/stdtypes.rst:3551 msgid "" @@ -2931,7 +2940,7 @@ msgstr "" #: ../../library/stdtypes.rst:2334 ../../library/stdtypes.rst:3555 msgid "``'G'``" -msgstr "" +msgstr "``'G'``" #: ../../library/stdtypes.rst:2334 ../../library/stdtypes.rst:3555 msgid "" @@ -2941,7 +2950,7 @@ msgstr "" #: ../../library/stdtypes.rst:2338 ../../library/stdtypes.rst:3559 msgid "``'c'``" -msgstr "" +msgstr "``'c'``" #: ../../library/stdtypes.rst:2338 msgid "Single character (accepts integer or single character string)." @@ -2949,7 +2958,7 @@ msgstr "" #: ../../library/stdtypes.rst:2341 ../../library/stdtypes.rst:3572 msgid "``'r'``" -msgstr "" +msgstr "``'r'``" #: ../../library/stdtypes.rst:2341 msgid "String (converts any Python object using :func:`repr`)." @@ -2957,7 +2966,7 @@ msgstr "" #: ../../library/stdtypes.rst:2344 ../../library/stdtypes.rst:3566 msgid "``'s'``" -msgstr "" +msgstr "``'s'``" #: ../../library/stdtypes.rst:2344 msgid "String (converts any Python object using :func:`str`)." @@ -2965,7 +2974,7 @@ msgstr "" #: ../../library/stdtypes.rst:2347 ../../library/stdtypes.rst:3569 msgid "``'a'``" -msgstr "" +msgstr "``'a'``" #: ../../library/stdtypes.rst:2347 msgid "String (converts any Python object using :func:`ascii`)." @@ -2973,7 +2982,7 @@ msgstr "" #: ../../library/stdtypes.rst:2350 ../../library/stdtypes.rst:3575 msgid "``'%'``" -msgstr "" +msgstr "``'%'``" #: ../../library/stdtypes.rst:2350 ../../library/stdtypes.rst:3575 msgid "No argument is converted, results in a ``'%'`` character in the result." @@ -3328,6 +3337,9 @@ msgstr "" #: ../../library/stdtypes.rst:2627 msgid "and::" msgstr "" +"和:\n" +"\n" +"::" #: ../../library/stdtypes.rst:2632 msgid "" @@ -3927,7 +3939,7 @@ msgstr "" #: ../../library/stdtypes.rst:3572 msgid "\\(7)" -msgstr "" +msgstr "\\(7)" #: ../../library/stdtypes.rst:3607 msgid "``b'%s'`` is deprecated, but will not be removed during the 3.x series." @@ -5104,155 +5116,155 @@ msgstr "" #: ../../library/stdtypes.rst:4888 msgid ":class:`tuple`" -msgstr "" +msgstr ":class:`tuple`" #: ../../library/stdtypes.rst:4889 msgid ":class:`list`" -msgstr "" +msgstr ":class:`list`" #: ../../library/stdtypes.rst:4890 msgid ":class:`dict`" -msgstr "" +msgstr ":class:`dict`" #: ../../library/stdtypes.rst:4891 msgid ":class:`set`" -msgstr "" +msgstr ":class:`set`" #: ../../library/stdtypes.rst:4892 msgid ":class:`frozenset`" -msgstr "" +msgstr ":class:`frozenset`" #: ../../library/stdtypes.rst:4893 msgid ":class:`type`" -msgstr "" +msgstr ":class:`type`" #: ../../library/stdtypes.rst:4894 msgid ":class:`collections.deque`" -msgstr "" +msgstr ":class:`collections.deque`" #: ../../library/stdtypes.rst:4895 msgid ":class:`collections.defaultdict`" -msgstr "" +msgstr ":class:`collections.defaultdict`" #: ../../library/stdtypes.rst:4896 msgid ":class:`collections.OrderedDict`" -msgstr "" +msgstr ":class:`collections.OrderedDict`" #: ../../library/stdtypes.rst:4897 msgid ":class:`collections.Counter`" -msgstr "" +msgstr ":class:`collections.Counter`" #: ../../library/stdtypes.rst:4898 msgid ":class:`collections.ChainMap`" -msgstr "" +msgstr ":class:`collections.ChainMap`" #: ../../library/stdtypes.rst:4899 msgid ":class:`collections.abc.Awaitable`" -msgstr "" +msgstr ":class:`collections.abc.Awaitable`" #: ../../library/stdtypes.rst:4900 msgid ":class:`collections.abc.Coroutine`" -msgstr "" +msgstr ":class:`collections.abc.Coroutine`" #: ../../library/stdtypes.rst:4901 msgid ":class:`collections.abc.AsyncIterable`" -msgstr "" +msgstr ":class:`collections.abc.AsyncIterable`" #: ../../library/stdtypes.rst:4902 msgid ":class:`collections.abc.AsyncIterator`" -msgstr "" +msgstr ":class:`collections.abc.AsyncIterator`" #: ../../library/stdtypes.rst:4903 msgid ":class:`collections.abc.AsyncGenerator`" -msgstr "" +msgstr ":class:`collections.abc.AsyncGenerator`" #: ../../library/stdtypes.rst:4904 msgid ":class:`collections.abc.Iterable`" -msgstr "" +msgstr ":class:`collections.abc.Iterable`" #: ../../library/stdtypes.rst:4905 msgid ":class:`collections.abc.Iterator`" -msgstr "" +msgstr ":class:`collections.abc.Iterator`" #: ../../library/stdtypes.rst:4906 msgid ":class:`collections.abc.Generator`" -msgstr "" +msgstr ":class:`collections.abc.Generator`" #: ../../library/stdtypes.rst:4907 msgid ":class:`collections.abc.Reversible`" -msgstr "" +msgstr ":class:`collections.abc.Reversible`" #: ../../library/stdtypes.rst:4908 msgid ":class:`collections.abc.Container`" -msgstr "" +msgstr ":class:`collections.abc.Container`" #: ../../library/stdtypes.rst:4909 msgid ":class:`collections.abc.Collection`" -msgstr "" +msgstr ":class:`collections.abc.Collection`" #: ../../library/stdtypes.rst:4910 msgid ":class:`collections.abc.Callable`" -msgstr "" +msgstr ":class:`collections.abc.Callable`" #: ../../library/stdtypes.rst:4911 msgid ":class:`collections.abc.Set`" -msgstr "" +msgstr ":class:`collections.abc.Set`" #: ../../library/stdtypes.rst:4912 msgid ":class:`collections.abc.MutableSet`" -msgstr "" +msgstr ":class:`collections.abc.MutableSet`" #: ../../library/stdtypes.rst:4913 msgid ":class:`collections.abc.Mapping`" -msgstr "" +msgstr ":class:`collections.abc.Mapping`" #: ../../library/stdtypes.rst:4914 msgid ":class:`collections.abc.MutableMapping`" -msgstr "" +msgstr ":class:`collections.abc.MutableMapping`" #: ../../library/stdtypes.rst:4915 msgid ":class:`collections.abc.Sequence`" -msgstr "" +msgstr ":class:`collections.abc.Sequence`" #: ../../library/stdtypes.rst:4916 msgid ":class:`collections.abc.MutableSequence`" -msgstr "" +msgstr ":class:`collections.abc.MutableSequence`" #: ../../library/stdtypes.rst:4917 msgid ":class:`collections.abc.ByteString`" -msgstr "" +msgstr ":class:`collections.abc.ByteString`" #: ../../library/stdtypes.rst:4918 msgid ":class:`collections.abc.MappingView`" -msgstr "" +msgstr ":class:`collections.abc.MappingView`" #: ../../library/stdtypes.rst:4919 msgid ":class:`collections.abc.KeysView`" -msgstr "" +msgstr ":class:`collections.abc.KeysView`" #: ../../library/stdtypes.rst:4920 msgid ":class:`collections.abc.ItemsView`" -msgstr "" +msgstr ":class:`collections.abc.ItemsView`" #: ../../library/stdtypes.rst:4921 msgid ":class:`collections.abc.ValuesView`" -msgstr "" +msgstr ":class:`collections.abc.ValuesView`" #: ../../library/stdtypes.rst:4922 msgid ":class:`contextlib.AbstractContextManager`" -msgstr "" +msgstr ":class:`contextlib.AbstractContextManager`" #: ../../library/stdtypes.rst:4923 msgid ":class:`contextlib.AbstractAsyncContextManager`" -msgstr "" +msgstr ":class:`contextlib.AbstractAsyncContextManager`" #: ../../library/stdtypes.rst:4924 msgid ":ref:`re.Pattern `" -msgstr "" +msgstr ":ref:`re.Pattern `" #: ../../library/stdtypes.rst:4925 msgid ":ref:`re.Match `" -msgstr "" +msgstr ":ref:`re.Match `" #: ../../library/stdtypes.rst:4929 msgid "Special Attributes of Generic Alias" @@ -5385,7 +5397,7 @@ msgstr "" #: ../../library/stdtypes.rst:5090 msgid "Modules" -msgstr "" +msgstr "模組" #: ../../library/stdtypes.rst:5092 msgid "" @@ -5426,7 +5438,7 @@ msgstr "" #: ../../library/stdtypes.rst:5123 msgid "Functions" -msgstr "" +msgstr "函式" #: ../../library/stdtypes.rst:5125 msgid "" @@ -5444,7 +5456,7 @@ msgstr "" #: ../../library/stdtypes.rst:5132 msgid "See :ref:`function` for more information." -msgstr "" +msgstr "更多資訊請見 :ref:`function`\\ 。" #: ../../library/stdtypes.rst:5138 msgid "Methods" @@ -5482,7 +5494,7 @@ msgstr "" #: ../../library/stdtypes.rst:5176 ../../library/stdtypes.rst:5207 msgid "See :ref:`types` for more information." -msgstr "" +msgstr "更多資訊請見 :ref:`types`\\ 。" #: ../../library/stdtypes.rst:5184 msgid "Code Objects" diff --git a/library/string.po b/library/string.po index 9d1df65ae3..4e3c83ad16 100644 --- a/library/string.po +++ b/library/string.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/string.rst:7 msgid "**Source code:** :source:`Lib/string.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/string.py`" #: ../../library/string.rst:13 msgid ":ref:`textseq`" @@ -409,7 +409,7 @@ msgstr "" #: ../../library/string.rst:341 msgid "``'<'``" -msgstr "" +msgstr "``'<'``" #: ../../library/string.rst:341 msgid "" @@ -419,7 +419,7 @@ msgstr "" #: ../../library/string.rst:344 msgid "``'>'``" -msgstr "" +msgstr "``'>'``" #: ../../library/string.rst:344 msgid "" @@ -429,7 +429,7 @@ msgstr "" #: ../../library/string.rst:347 msgid "``'='``" -msgstr "" +msgstr "``'='``" #: ../../library/string.rst:347 msgid "" @@ -441,7 +441,7 @@ msgstr "" #: ../../library/string.rst:353 msgid "``'^'``" -msgstr "" +msgstr "``'^'``" #: ../../library/string.rst:353 msgid "Forces the field to be centered within the available space." @@ -462,7 +462,7 @@ msgstr "" #: ../../library/string.rst:372 msgid "``'+'``" -msgstr "" +msgstr "``'+'``" #: ../../library/string.rst:372 msgid "" @@ -472,7 +472,7 @@ msgstr "" #: ../../library/string.rst:375 msgid "``'-'``" -msgstr "" +msgstr "``'-'``" #: ../../library/string.rst:375 msgid "" @@ -574,7 +574,7 @@ msgstr "" #: ../../library/string.rst:445 msgid "``'s'``" -msgstr "" +msgstr "``'s'``" #: ../../library/string.rst:445 msgid "String format. This is the default type for strings and may be omitted." @@ -583,7 +583,7 @@ msgstr "" #: ../../library/string.rst:448 ../../library/string.rst:477 #: ../../library/string.rst:564 msgid "None" -msgstr "" +msgstr "None" #: ../../library/string.rst:448 msgid "The same as ``'s'``." @@ -603,7 +603,7 @@ msgstr "" #: ../../library/string.rst:458 msgid "``'c'``" -msgstr "" +msgstr "``'c'``" #: ../../library/string.rst:458 msgid "" @@ -621,7 +621,7 @@ msgstr "" #: ../../library/string.rst:463 msgid "``'o'``" -msgstr "" +msgstr "``'o'``" #: ../../library/string.rst:463 msgid "Octal format. Outputs the number in base 8." @@ -629,7 +629,7 @@ msgstr "" #: ../../library/string.rst:465 msgid "``'x'``" -msgstr "" +msgstr "``'x'``" #: ../../library/string.rst:465 msgid "" @@ -639,7 +639,7 @@ msgstr "" #: ../../library/string.rst:468 msgid "``'X'``" -msgstr "" +msgstr "``'X'``" #: ../../library/string.rst:468 msgid "" @@ -650,7 +650,7 @@ msgstr "" #: ../../library/string.rst:473 ../../library/string.rst:557 msgid "``'n'``" -msgstr "" +msgstr "``'n'``" #: ../../library/string.rst:473 msgid "" @@ -678,7 +678,7 @@ msgstr "" #: ../../library/string.rst:491 msgid "``'e'``" -msgstr "" +msgstr "``'e'``" #: ../../library/string.rst:491 msgid "" @@ -694,7 +694,7 @@ msgstr "" #: ../../library/string.rst:503 msgid "``'E'``" -msgstr "" +msgstr "``'E'``" #: ../../library/string.rst:503 msgid "" @@ -719,7 +719,7 @@ msgstr "" #: ../../library/string.rst:516 msgid "``'F'``" -msgstr "" +msgstr "``'F'``" #: ../../library/string.rst:516 msgid "" @@ -729,7 +729,7 @@ msgstr "" #: ../../library/string.rst:519 msgid "``'g'``" -msgstr "" +msgstr "``'g'``" #: ../../library/string.rst:519 msgid "" @@ -771,7 +771,7 @@ msgstr "" #: ../../library/string.rst:553 msgid "``'G'``" -msgstr "" +msgstr "``'G'``" #: ../../library/string.rst:553 msgid "" @@ -787,7 +787,7 @@ msgstr "" #: ../../library/string.rst:561 msgid "``'%'``" -msgstr "" +msgstr "``'%'``" #: ../../library/string.rst:561 msgid "" diff --git a/library/stringprep.po b/library/stringprep.po index 768ee3350d..cd4a68511c 100644 --- a/library/stringprep.po +++ b/library/stringprep.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/stringprep.rst:10 msgid "**Source code:** :source:`Lib/stringprep.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/stringprep.py`" #: ../../library/stringprep.rst:14 msgid "" diff --git a/library/struct.po b/library/struct.po index 5b5fdeca60..de6f3aae8d 100644 --- a/library/struct.po +++ b/library/struct.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/struct.rst:7 msgid "**Source code:** :source:`Lib/struct.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/struct.py`" #: ../../library/struct.rst:15 msgid "" @@ -60,7 +60,7 @@ msgstr "" #: ../../library/struct.rst:40 msgid "Functions and Exceptions" -msgstr "" +msgstr "函式與例外" #: ../../library/struct.rst:42 msgid "The module defines the following exception and functions:" @@ -170,7 +170,7 @@ msgstr "" #: ../../library/struct.rst:134 msgid "``@``" -msgstr "" +msgstr "``@``" #: ../../library/struct.rst:134 ../../library/struct.rst:136 msgid "native" @@ -178,7 +178,7 @@ msgstr "" #: ../../library/struct.rst:136 msgid "``=``" -msgstr "" +msgstr "``=``" #: ../../library/struct.rst:136 ../../library/struct.rst:138 #: ../../library/struct.rst:140 ../../library/struct.rst:142 @@ -192,7 +192,7 @@ msgstr "" #: ../../library/struct.rst:138 msgid "``<``" -msgstr "" +msgstr "``<``" #: ../../library/struct.rst:138 msgid "little-endian" @@ -200,7 +200,7 @@ msgstr "" #: ../../library/struct.rst:140 msgid "``>``" -msgstr "" +msgstr "``>``" #: ../../library/struct.rst:140 msgid "big-endian" @@ -208,7 +208,7 @@ msgstr "" #: ../../library/struct.rst:142 msgid "``!``" -msgstr "" +msgstr "``!``" #: ../../library/struct.rst:142 msgid "network (= big-endian)" @@ -316,7 +316,7 @@ msgstr "註解" #: ../../library/struct.rst:196 msgid "``x``" -msgstr "" +msgstr "``x``" #: ../../library/struct.rst:196 msgid "pad byte" @@ -328,11 +328,11 @@ msgstr "" #: ../../library/struct.rst:198 msgid "``c``" -msgstr "" +msgstr "``c``" #: ../../library/struct.rst:198 msgid ":c:type:`char`" -msgstr "" +msgstr ":c:type:`char`" #: ../../library/struct.rst:198 msgid "bytes of length 1" @@ -345,11 +345,11 @@ msgstr "1" #: ../../library/struct.rst:200 msgid "``b``" -msgstr "" +msgstr "``b``" #: ../../library/struct.rst:200 msgid ":c:type:`signed char`" -msgstr "" +msgstr ":c:type:`signed char`" #: ../../library/struct.rst:200 ../../library/struct.rst:202 #: ../../library/struct.rst:206 ../../library/struct.rst:208 @@ -363,15 +363,15 @@ msgstr "" #: ../../library/struct.rst:200 msgid "\\(1), \\(2)" -msgstr "" +msgstr "\\(1), \\(2)" #: ../../library/struct.rst:202 msgid "``B``" -msgstr "" +msgstr "``B``" #: ../../library/struct.rst:202 msgid ":c:type:`unsigned char`" -msgstr "" +msgstr ":c:type:`unsigned char`" #: ../../library/struct.rst:202 ../../library/struct.rst:206 #: ../../library/struct.rst:208 ../../library/struct.rst:210 @@ -379,19 +379,19 @@ msgstr "" #: ../../library/struct.rst:216 ../../library/struct.rst:218 #: ../../library/struct.rst:220 msgid "\\(2)" -msgstr "" +msgstr "\\(2)" #: ../../library/struct.rst:204 msgid "``?``" -msgstr "" +msgstr "``?``" #: ../../library/struct.rst:204 msgid ":c:type:`_Bool`" -msgstr "" +msgstr ":c:type:`_Bool`" #: ../../library/struct.rst:204 msgid "bool" -msgstr "" +msgstr "bool" #: ../../library/struct.rst:204 msgid "\\(1)" @@ -399,11 +399,11 @@ msgstr "\\(1)" #: ../../library/struct.rst:206 msgid "``h``" -msgstr "" +msgstr "``h``" #: ../../library/struct.rst:206 msgid ":c:type:`short`" -msgstr "" +msgstr ":c:type:`short`" #: ../../library/struct.rst:206 ../../library/struct.rst:208 #: ../../library/struct.rst:227 @@ -412,19 +412,19 @@ msgstr "2" #: ../../library/struct.rst:208 msgid "``H``" -msgstr "" +msgstr "``H``" #: ../../library/struct.rst:208 msgid ":c:type:`unsigned short`" -msgstr "" +msgstr ":c:type:`unsigned short`" #: ../../library/struct.rst:210 msgid "``i``" -msgstr "" +msgstr "``i``" #: ../../library/struct.rst:210 msgid ":c:type:`int`" -msgstr "" +msgstr ":c:type:`int`" #: ../../library/struct.rst:210 ../../library/struct.rst:212 #: ../../library/struct.rst:214 ../../library/struct.rst:216 @@ -434,35 +434,35 @@ msgstr "4" #: ../../library/struct.rst:212 msgid "``I``" -msgstr "" +msgstr "``I``" #: ../../library/struct.rst:212 msgid ":c:type:`unsigned int`" -msgstr "" +msgstr ":c:type:`unsigned int`" #: ../../library/struct.rst:214 msgid "``l``" -msgstr "" +msgstr "``l``" #: ../../library/struct.rst:214 msgid ":c:type:`long`" -msgstr "" +msgstr ":c:type:`long`" #: ../../library/struct.rst:216 msgid "``L``" -msgstr "" +msgstr "``L``" #: ../../library/struct.rst:216 msgid ":c:type:`unsigned long`" -msgstr "" +msgstr ":c:type:`unsigned long`" #: ../../library/struct.rst:218 msgid "``q``" -msgstr "" +msgstr "``q``" #: ../../library/struct.rst:218 msgid ":c:type:`long long`" -msgstr "" +msgstr ":c:type:`long long`" #: ../../library/struct.rst:218 ../../library/struct.rst:220 #: ../../library/struct.rst:231 @@ -471,39 +471,39 @@ msgstr "8" #: ../../library/struct.rst:220 msgid "``Q``" -msgstr "" +msgstr "``Q``" #: ../../library/struct.rst:220 msgid ":c:type:`unsigned long long`" -msgstr "" +msgstr ":c:type:`unsigned long long`" #: ../../library/struct.rst:223 msgid "``n``" -msgstr "" +msgstr "``n``" #: ../../library/struct.rst:223 msgid ":c:type:`ssize_t`" -msgstr "" +msgstr ":c:type:`ssize_t`" #: ../../library/struct.rst:223 ../../library/struct.rst:225 msgid "\\(3)" -msgstr "" +msgstr "\\(3)" #: ../../library/struct.rst:225 msgid "``N``" -msgstr "" +msgstr "``N``" #: ../../library/struct.rst:225 msgid ":c:type:`size_t`" -msgstr "" +msgstr ":c:type:`size_t`" #: ../../library/struct.rst:227 msgid "``e``" -msgstr "" +msgstr "``e``" #: ../../library/struct.rst:227 msgid "\\(6)" -msgstr "" +msgstr "\\(6)" #: ../../library/struct.rst:227 ../../library/struct.rst:229 #: ../../library/struct.rst:231 @@ -513,31 +513,31 @@ msgstr "float" #: ../../library/struct.rst:227 ../../library/struct.rst:229 #: ../../library/struct.rst:231 msgid "\\(4)" -msgstr "" +msgstr "\\(4)" #: ../../library/struct.rst:229 msgid "``f``" -msgstr "" +msgstr "``f``" #: ../../library/struct.rst:229 msgid ":c:type:`float`" -msgstr "" +msgstr ":c:type:`float`" #: ../../library/struct.rst:231 msgid "``d``" -msgstr "" +msgstr "``d``" #: ../../library/struct.rst:231 msgid ":c:type:`double`" -msgstr "" +msgstr ":c:type:`double`" #: ../../library/struct.rst:233 msgid "``s``" -msgstr "" +msgstr "``s``" #: ../../library/struct.rst:233 ../../library/struct.rst:235 msgid ":c:type:`char[]`" -msgstr "" +msgstr ":c:type:`char[]`" #: ../../library/struct.rst:233 ../../library/struct.rst:235 msgid "bytes" @@ -545,19 +545,19 @@ msgstr "" #: ../../library/struct.rst:235 msgid "``p``" -msgstr "" +msgstr "``p``" #: ../../library/struct.rst:237 msgid "``P``" -msgstr "" +msgstr "``P``" #: ../../library/struct.rst:237 msgid ":c:type:`void \\*`" -msgstr "" +msgstr ":c:type:`void \\*`" #: ../../library/struct.rst:237 msgid "\\(5)" -msgstr "" +msgstr "\\(5)" #: ../../library/struct.rst:240 msgid "Added support for the ``'n'`` and ``'N'`` formats." @@ -684,7 +684,7 @@ msgstr "" #: ../../library/struct.rst:341 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/struct.rst:344 msgid "" @@ -722,7 +722,7 @@ msgstr "" #: ../../library/struct.rst:393 msgid "Module :mod:`array`" -msgstr "" +msgstr ":mod:`array` 模組" #: ../../library/struct.rst:393 msgid "Packed binary storage of homogeneous data." @@ -730,7 +730,7 @@ msgstr "" #: ../../library/struct.rst:395 msgid "Module :mod:`xdrlib`" -msgstr "模組 :mod:`xdrlib`" +msgstr ":mod:`xdrlib` 模組" #: ../../library/struct.rst:396 msgid "Packing and unpacking of XDR data." diff --git a/library/subprocess.po b/library/subprocess.po index 0ecfbd17ee..ee80e435e4 100644 --- a/library/subprocess.po +++ b/library/subprocess.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/subprocess.rst:10 msgid "**Source code:** :source:`Lib/subprocess.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/subprocess.py`" #: ../../library/subprocess.rst:14 msgid "" @@ -131,6 +131,9 @@ msgstr "" #: ../../library/subprocess.rst:89 msgid "Examples::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/subprocess.rst:107 msgid "Added *encoding* and *errors* parameters" @@ -692,7 +695,7 @@ msgstr "" #: ../../library/subprocess.rst:579 ../../library/subprocess.rst:588 #: ../../library/subprocess.rst:597 ../../library/subprocess.rst:603 msgid ":ref:`Availability `: POSIX" -msgstr "" +msgstr ":ref:`適用 `:POSIX" #: ../../library/subprocess.rst:582 msgid "" @@ -759,51 +762,51 @@ msgstr "" #: ../../library/subprocess.rst:634 msgid ":data:`CREATE_NEW_CONSOLE`" -msgstr "" +msgstr ":data:`CREATE_NEW_CONSOLE`" #: ../../library/subprocess.rst:635 msgid ":data:`CREATE_NEW_PROCESS_GROUP`" -msgstr "" +msgstr ":data:`CREATE_NEW_PROCESS_GROUP`" #: ../../library/subprocess.rst:636 msgid ":data:`ABOVE_NORMAL_PRIORITY_CLASS`" -msgstr "" +msgstr ":data:`ABOVE_NORMAL_PRIORITY_CLASS`" #: ../../library/subprocess.rst:637 msgid ":data:`BELOW_NORMAL_PRIORITY_CLASS`" -msgstr "" +msgstr ":data:`BELOW_NORMAL_PRIORITY_CLASS`" #: ../../library/subprocess.rst:638 msgid ":data:`HIGH_PRIORITY_CLASS`" -msgstr "" +msgstr ":data:`HIGH_PRIORITY_CLASS`" #: ../../library/subprocess.rst:639 msgid ":data:`IDLE_PRIORITY_CLASS`" -msgstr "" +msgstr ":data:`IDLE_PRIORITY_CLASS`" #: ../../library/subprocess.rst:640 msgid ":data:`NORMAL_PRIORITY_CLASS`" -msgstr "" +msgstr ":data:`NORMAL_PRIORITY_CLASS`" #: ../../library/subprocess.rst:641 msgid ":data:`REALTIME_PRIORITY_CLASS`" -msgstr "" +msgstr ":data:`REALTIME_PRIORITY_CLASS`" #: ../../library/subprocess.rst:642 msgid ":data:`CREATE_NO_WINDOW`" -msgstr "" +msgstr ":data:`CREATE_NO_WINDOW`" #: ../../library/subprocess.rst:643 msgid ":data:`DETACHED_PROCESS`" -msgstr "" +msgstr ":data:`DETACHED_PROCESS`" #: ../../library/subprocess.rst:644 msgid ":data:`CREATE_DEFAULT_ERROR_MODE`" -msgstr "" +msgstr ":data:`CREATE_DEFAULT_ERROR_MODE`" #: ../../library/subprocess.rst:645 msgid ":data:`CREATE_BREAKAWAY_FROM_JOB`" -msgstr "" +msgstr ":data:`CREATE_BREAKAWAY_FROM_JOB`" #: ../../library/subprocess.rst:647 msgid "" @@ -859,7 +862,7 @@ msgstr "" #: ../../library/subprocess.rst:685 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/subprocess.rst:687 msgid "" @@ -1184,7 +1187,7 @@ msgstr "" #: ../../library/subprocess.rst:978 msgid "**handle_list**" -msgstr "" +msgstr "**handle_list**" #: ../../library/subprocess.rst:963 msgid "" @@ -1479,6 +1482,9 @@ msgstr "" #: ../../library/subprocess.rst:1289 msgid "becomes::" msgstr "" +"變成:\n" +"\n" +"::" #: ../../library/subprocess.rst:1266 msgid "Replacing shell pipeline" @@ -1532,10 +1538,16 @@ msgstr "" #: ../../library/subprocess.rst:1328 msgid "P_NOWAIT example::" msgstr "" +"P_NOWAIT 範例:\n" +"\n" +"::" #: ../../library/subprocess.rst:1334 msgid "P_WAIT example::" msgstr "" +"P_WAIT 範例:\n" +"\n" +"::" #: ../../library/subprocess.rst:1340 msgid "Vector example::" @@ -1619,7 +1631,7 @@ msgstr "" #: ../../library/subprocess.rst:1468 ../../library/subprocess.rst:1488 msgid ":ref:`Availability `: POSIX & Windows." -msgstr "" +msgstr ":ref:`適用 `:POSIX 和 Windows。" #: ../../library/subprocess.rst:1469 msgid "Windows support was added." @@ -1695,7 +1707,7 @@ msgstr "" #: ../../library/subprocess.rst:1528 msgid ":mod:`shlex`" -msgstr "" +msgstr ":mod:`shlex`" #: ../../library/subprocess.rst:1529 msgid "Module which provides function to parse and escape command lines." diff --git a/library/sunau.po b/library/sunau.po index f2b18d3052..823af5b563 100644 --- a/library/sunau.po +++ b/library/sunau.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/sunau.rst:9 msgid "**Source code:** :source:`Lib/sunau.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/sunau.py`" #: ../../library/sunau.rst:13 msgid "" @@ -41,11 +41,11 @@ msgstr "" #: ../../library/sunau.rst:21 msgid "Field" -msgstr "" +msgstr "欄位" #: ../../library/sunau.rst:21 msgid "Contents" -msgstr "" +msgstr "內容" #: ../../library/sunau.rst:23 msgid "magic word" @@ -122,7 +122,7 @@ msgstr "" #: ../../library/sunau.rst:51 msgid "``'r'``" -msgstr "" +msgstr "``'r'``" #: ../../library/sunau.rst:51 msgid "Read only mode." @@ -130,7 +130,7 @@ msgstr "" #: ../../library/sunau.rst:54 msgid "``'w'``" -msgstr "" +msgstr "``'w'``" #: ../../library/sunau.rst:54 msgid "Write only mode." @@ -148,7 +148,7 @@ msgstr "" #: ../../library/sunau.rst:62 msgid "The :mod:`sunau` module defines the following exception:" -msgstr "" +msgstr ":mod:`sunau` 模組定義了以下例外:" #: ../../library/sunau.rst:66 msgid "" @@ -180,7 +180,7 @@ msgstr "" #: ../../library/sunau.rst:103 msgid "AU_read Objects" -msgstr "" +msgstr "AU_read 物件" #: ../../library/sunau.rst:105 msgid "" diff --git a/library/symtable.po b/library/symtable.po index 83bb79aebe..b33ac15c1d 100644 --- a/library/symtable.po +++ b/library/symtable.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/symtable.rst:7 msgid "**Source code:** :source:`Lib/symtable.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/symtable.py`" #: ../../library/symtable.rst:15 msgid "" @@ -204,6 +204,9 @@ msgstr "" #: ../../library/symtable.rst:181 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/symtable.rst:187 msgid "" diff --git a/library/sys.po b/library/sys.po index aefdccb7c1..5e6de652f5 100644 --- a/library/sys.po +++ b/library/sys.po @@ -337,7 +337,7 @@ msgstr "" #: ../../library/sys.rst:269 ../../library/sys.rst:810 #: ../../library/sys.rst:1488 ../../library/sys.rst:1718 msgid ":ref:`Availability `: Windows." -msgstr "" +msgstr ":ref:`適用 `:Windows。" #: ../../library/sys.rst:274 msgid "" @@ -447,11 +447,11 @@ msgstr "" #: ../../library/sys.rst:375 msgid "__breakpointhook__" -msgstr "" +msgstr "__breakpointhook__" #: ../../library/sys.rst:378 msgid "__unraisablehook__" -msgstr "" +msgstr "__unraisablehook__" #: ../../library/sys.rst:383 msgid "" @@ -559,107 +559,107 @@ msgstr "" #: ../../library/sys.rst:468 msgid ":const:`debug`" -msgstr "" +msgstr ":const:`debug`" #: ../../library/sys.rst:468 msgid ":option:`-d`" -msgstr "" +msgstr ":option:`-d`" #: ../../library/sys.rst:469 msgid ":const:`inspect`" -msgstr "" +msgstr ":const:`inspect`" #: ../../library/sys.rst:469 ../../library/sys.rst:470 msgid ":option:`-i`" -msgstr "" +msgstr ":option:`-i`" #: ../../library/sys.rst:470 msgid ":const:`interactive`" -msgstr "" +msgstr ":const:`interactive`" #: ../../library/sys.rst:471 msgid ":const:`isolated`" -msgstr "" +msgstr ":const:`isolated`" #: ../../library/sys.rst:471 msgid ":option:`-I`" -msgstr "" +msgstr ":option:`-I`" #: ../../library/sys.rst:472 msgid ":const:`optimize`" -msgstr "" +msgstr ":const:`optimize`" #: ../../library/sys.rst:472 msgid ":option:`-O` or :option:`-OO`" -msgstr "" +msgstr ":option:`-O` 或 :option:`-OO`" #: ../../library/sys.rst:473 msgid ":const:`dont_write_bytecode`" -msgstr "" +msgstr ":const:`dont_write_bytecode`" #: ../../library/sys.rst:473 msgid ":option:`-B`" -msgstr "" +msgstr ":option:`-B`" #: ../../library/sys.rst:474 msgid ":const:`no_user_site`" -msgstr "" +msgstr ":const:`no_user_site`" #: ../../library/sys.rst:474 msgid ":option:`-s`" -msgstr "" +msgstr ":option:`-s`" #: ../../library/sys.rst:475 msgid ":const:`no_site`" -msgstr "" +msgstr ":const:`no_site`" #: ../../library/sys.rst:475 msgid ":option:`-S`" -msgstr "" +msgstr ":option:`-S`" #: ../../library/sys.rst:476 msgid ":const:`ignore_environment`" -msgstr "" +msgstr ":const:`ignore_environment`" #: ../../library/sys.rst:476 msgid ":option:`-E`" -msgstr "" +msgstr ":option:`-E`" #: ../../library/sys.rst:477 msgid ":const:`verbose`" -msgstr "" +msgstr ":const:`verbose`" #: ../../library/sys.rst:477 msgid ":option:`-v`" -msgstr "" +msgstr ":option:`-v`" #: ../../library/sys.rst:478 msgid ":const:`bytes_warning`" -msgstr "" +msgstr ":const:`bytes_warning`" #: ../../library/sys.rst:478 msgid ":option:`-b`" -msgstr "" +msgstr ":option:`-b`" #: ../../library/sys.rst:479 msgid ":const:`quiet`" -msgstr "" +msgstr ":const:`quiet`" #: ../../library/sys.rst:479 msgid ":option:`-q`" -msgstr "" +msgstr ":option:`-q`" #: ../../library/sys.rst:480 msgid ":const:`hash_randomization`" -msgstr "" +msgstr ":const:`hash_randomization`" #: ../../library/sys.rst:480 msgid ":option:`-R`" -msgstr "" +msgstr ":option:`-R`" #: ../../library/sys.rst:481 msgid ":const:`dev_mode`" -msgstr "" +msgstr ":const:`dev_mode`" #: ../../library/sys.rst:481 msgid ":option:`-X dev <-X>` (:ref:`Python Development Mode `)" @@ -667,11 +667,11 @@ msgstr "" #: ../../library/sys.rst:482 msgid ":const:`utf8_mode`" -msgstr "" +msgstr ":const:`utf8_mode`" #: ../../library/sys.rst:482 msgid ":option:`-X utf8 <-X>`" -msgstr "" +msgstr ":option:`-X utf8 <-X>`" #: ../../library/sys.rst:485 msgid "Added ``quiet`` attribute for the new :option:`-q` flag." @@ -716,11 +716,11 @@ msgstr "" #: ../../library/sys.rst:517 msgid ":const:`epsilon`" -msgstr "" +msgstr ":const:`epsilon`" #: ../../library/sys.rst:517 msgid "DBL_EPSILON" -msgstr "" +msgstr "DBL_EPSILON" #: ../../library/sys.rst:517 msgid "" @@ -734,11 +734,11 @@ msgstr "" #: ../../library/sys.rst:522 msgid ":const:`dig`" -msgstr "" +msgstr ":const:`dig`" #: ../../library/sys.rst:522 msgid "DBL_DIG" -msgstr "" +msgstr "DBL_DIG" #: ../../library/sys.rst:522 msgid "" @@ -748,11 +748,11 @@ msgstr "" #: ../../library/sys.rst:525 msgid ":const:`mant_dig`" -msgstr "" +msgstr ":const:`mant_dig`" #: ../../library/sys.rst:525 msgid "DBL_MANT_DIG" -msgstr "" +msgstr "DBL_MANT_DIG" #: ../../library/sys.rst:525 msgid "" @@ -762,11 +762,11 @@ msgstr "" #: ../../library/sys.rst:528 msgid ":const:`max`" -msgstr "" +msgstr ":const:`max`" #: ../../library/sys.rst:528 msgid "DBL_MAX" -msgstr "" +msgstr "DBL_MAX" #: ../../library/sys.rst:528 msgid "maximum representable positive finite float" @@ -774,11 +774,11 @@ msgstr "" #: ../../library/sys.rst:530 msgid ":const:`max_exp`" -msgstr "" +msgstr ":const:`max_exp`" #: ../../library/sys.rst:530 msgid "DBL_MAX_EXP" -msgstr "" +msgstr "DBL_MAX_EXP" #: ../../library/sys.rst:530 msgid "" @@ -788,11 +788,11 @@ msgstr "" #: ../../library/sys.rst:533 msgid ":const:`max_10_exp`" -msgstr "" +msgstr ":const:`max_10_exp`" #: ../../library/sys.rst:533 msgid "DBL_MAX_10_EXP" -msgstr "" +msgstr "DBL_MAX_10_EXP" #: ../../library/sys.rst:533 msgid "" @@ -802,11 +802,11 @@ msgstr "" #: ../../library/sys.rst:536 msgid ":const:`min`" -msgstr "" +msgstr ":const:`min`" #: ../../library/sys.rst:536 msgid "DBL_MIN" -msgstr "" +msgstr "DBL_MIN" #: ../../library/sys.rst:536 msgid "minimum representable positive *normalized* float" @@ -820,11 +820,11 @@ msgstr "" #: ../../library/sys.rst:542 msgid ":const:`min_exp`" -msgstr "" +msgstr ":const:`min_exp`" #: ../../library/sys.rst:542 msgid "DBL_MIN_EXP" -msgstr "" +msgstr "DBL_MIN_EXP" #: ../../library/sys.rst:542 msgid "minimum integer *e* such that ``radix**(e-1)`` is a normalized float" @@ -832,11 +832,11 @@ msgstr "" #: ../../library/sys.rst:545 msgid ":const:`min_10_exp`" -msgstr "" +msgstr ":const:`min_10_exp`" #: ../../library/sys.rst:545 msgid "DBL_MIN_10_EXP" -msgstr "" +msgstr "DBL_MIN_10_EXP" #: ../../library/sys.rst:545 msgid "minimum integer *e* such that ``10**e`` is a normalized float" @@ -844,11 +844,11 @@ msgstr "" #: ../../library/sys.rst:548 msgid ":const:`radix`" -msgstr "" +msgstr ":const:`radix`" #: ../../library/sys.rst:548 msgid "FLT_RADIX" -msgstr "" +msgstr "FLT_RADIX" #: ../../library/sys.rst:548 msgid "radix of exponent representation" @@ -856,11 +856,11 @@ msgstr "" #: ../../library/sys.rst:550 msgid ":const:`rounds`" -msgstr "" +msgstr ":const:`rounds`" #: ../../library/sys.rst:550 msgid "FLT_ROUNDS" -msgstr "" +msgstr "FLT_ROUNDS" #: ../../library/sys.rst:550 msgid "" @@ -916,7 +916,7 @@ msgstr "" #: ../../library/sys.rst:611 msgid ":ref:`Availability `: Android." -msgstr "" +msgstr ":ref:`適用 `:Android。" #: ../../library/sys.rst:617 msgid "" @@ -933,7 +933,7 @@ msgstr "" #: ../../library/sys.rst:628 ../../library/sys.rst:1257 msgid ":ref:`Availability `: Unix." -msgstr "" +msgstr ":ref:`適用 `:Unix。" #: ../../library/sys.rst:633 msgid "" @@ -968,7 +968,7 @@ msgstr "" #: ../../library/sys.rst:652 msgid ":func:`getfilesystemencoding` result cannot be ``None`` anymore." -msgstr "" +msgstr ":func:`getfilesystemencoding` 的結果不再為 ``None``。" #: ../../library/sys.rst:655 msgid "" @@ -1111,7 +1111,7 @@ msgstr "" #: ../../library/sys.rst:786 msgid ":const:`1 (VER_NT_WORKSTATION)`" -msgstr "" +msgstr ":const:`1 (VER_NT_WORKSTATION)`" #: ../../library/sys.rst:786 msgid "The system is a workstation." @@ -1119,7 +1119,7 @@ msgstr "" #: ../../library/sys.rst:788 msgid ":const:`2 (VER_NT_DOMAIN_CONTROLLER)`" -msgstr "" +msgstr ":const:`2 (VER_NT_DOMAIN_CONTROLLER)`" #: ../../library/sys.rst:788 msgid "The system is a domain controller." @@ -1127,7 +1127,7 @@ msgstr "" #: ../../library/sys.rst:791 msgid ":const:`3 (VER_NT_SERVER)`" -msgstr "" +msgstr ":const:`3 (VER_NT_SERVER)`" #: ../../library/sys.rst:791 msgid "The system is a server, but not a domain controller." @@ -1205,7 +1205,7 @@ msgstr "" #: ../../library/sys.rst:857 msgid ":const:`width`" -msgstr "" +msgstr ":const:`width`" #: ../../library/sys.rst:857 msgid "width in bits used for hash values" @@ -1213,7 +1213,7 @@ msgstr "" #: ../../library/sys.rst:859 msgid ":const:`modulus`" -msgstr "" +msgstr ":const:`modulus`" #: ../../library/sys.rst:859 msgid "prime modulus P used for numeric hash scheme" @@ -1221,7 +1221,7 @@ msgstr "" #: ../../library/sys.rst:861 msgid ":const:`inf`" -msgstr "" +msgstr ":const:`inf`" #: ../../library/sys.rst:861 msgid "hash value returned for a positive infinity" @@ -1229,7 +1229,7 @@ msgstr "" #: ../../library/sys.rst:863 msgid ":const:`nan`" -msgstr "" +msgstr ":const:`nan`" #: ../../library/sys.rst:863 msgid "(this attribute is no longer used)" @@ -1237,7 +1237,7 @@ msgstr "" #: ../../library/sys.rst:865 msgid ":const:`imag`" -msgstr "" +msgstr ":const:`imag`" #: ../../library/sys.rst:865 msgid "multiplier used for the imaginary part of a complex number" @@ -1245,7 +1245,7 @@ msgstr "" #: ../../library/sys.rst:868 msgid ":const:`algorithm`" -msgstr "" +msgstr ":const:`algorithm`" #: ../../library/sys.rst:868 msgid "name of the algorithm for hashing of str, bytes, and memoryview" @@ -1253,7 +1253,7 @@ msgstr "" #: ../../library/sys.rst:871 msgid ":const:`hash_bits`" -msgstr "" +msgstr ":const:`hash_bits`" #: ../../library/sys.rst:871 msgid "internal output size of the hash algorithm" @@ -1261,7 +1261,7 @@ msgstr "" #: ../../library/sys.rst:873 msgid ":const:`seed_bits`" -msgstr "" +msgstr ":const:`seed_bits`" #: ../../library/sys.rst:873 msgid "size of the seed key of the hash algorithm" @@ -1356,15 +1356,15 @@ msgstr "" #: ../../library/sys.rst:956 ../../library/sys.rst:1603 msgid "Attribute" -msgstr "" +msgstr "屬性" #: ../../library/sys.rst:956 ../../library/sys.rst:1603 msgid "Explanation" -msgstr "" +msgstr "解釋" #: ../../library/sys.rst:958 msgid ":const:`bits_per_digit`" -msgstr "" +msgstr ":const:`bits_per_digit`" #: ../../library/sys.rst:958 msgid "" @@ -1374,7 +1374,7 @@ msgstr "" #: ../../library/sys.rst:962 msgid ":const:`sizeof_digit`" -msgstr "" +msgstr ":const:`sizeof_digit`" #: ../../library/sys.rst:962 msgid "size in bytes of the C type used to represent a digit" @@ -1476,7 +1476,7 @@ msgstr "" #: ../../library/sys.rst:1056 msgid ":class:`importlib.abc.MetaPathFinder`" -msgstr "" +msgstr ":class:`importlib.abc.MetaPathFinder`" #: ../../library/sys.rst:1056 msgid "" @@ -1486,7 +1486,7 @@ msgstr "" #: ../../library/sys.rst:1060 msgid ":class:`importlib.machinery.ModuleSpec`" -msgstr "" +msgstr ":class:`importlib.machinery.ModuleSpec`" #: ../../library/sys.rst:1059 msgid "" @@ -1611,43 +1611,43 @@ msgstr "" #: ../../library/sys.rst:1166 msgid "AIX" -msgstr "" +msgstr "AIX" #: ../../library/sys.rst:1166 msgid "``'aix'``" -msgstr "" +msgstr "``'aix'``" #: ../../library/sys.rst:1167 msgid "Linux" -msgstr "" +msgstr "Linux" #: ../../library/sys.rst:1167 msgid "``'linux'``" -msgstr "" +msgstr "``'linux'``" #: ../../library/sys.rst:1168 msgid "Windows" -msgstr "" +msgstr "Windows" #: ../../library/sys.rst:1168 msgid "``'win32'``" -msgstr "" +msgstr "``'win32'``" #: ../../library/sys.rst:1169 msgid "Windows/Cygwin" -msgstr "" +msgstr "Windows/Cygwin" #: ../../library/sys.rst:1169 msgid "``'cygwin'``" -msgstr "" +msgstr "``'cygwin'``" #: ../../library/sys.rst:1170 msgid "macOS" -msgstr "" +msgstr "macOS" #: ../../library/sys.rst:1170 msgid "``'darwin'``" -msgstr "" +msgstr "``'darwin'``" #: ../../library/sys.rst:1173 msgid "" @@ -1787,7 +1787,7 @@ msgstr "" #: ../../library/sys.rst:1287 ../../library/sys.rst:1369 msgid "``'call'``" -msgstr "" +msgstr "``'call'``" #: ../../library/sys.rst:1286 msgid "" @@ -1797,7 +1797,7 @@ msgstr "" #: ../../library/sys.rst:1292 ../../library/sys.rst:1384 msgid "``'return'``" -msgstr "" +msgstr "``'return'``" #: ../../library/sys.rst:1290 msgid "" @@ -1808,7 +1808,7 @@ msgstr "" #: ../../library/sys.rst:1296 msgid "``'c_call'``" -msgstr "" +msgstr "``'c_call'``" #: ../../library/sys.rst:1295 msgid "" @@ -1818,7 +1818,7 @@ msgstr "" #: ../../library/sys.rst:1299 msgid "``'c_return'``" -msgstr "" +msgstr "``'c_return'``" #: ../../library/sys.rst:1299 msgid "A C function has returned. *arg* is the C function object." @@ -1826,7 +1826,7 @@ msgstr "" #: ../../library/sys.rst:1301 msgid "``'c_exception'``" -msgstr "" +msgstr "``'c_exception'``" #: ../../library/sys.rst:1302 msgid "A C function has raised an exception. *arg* is the C function object." @@ -1917,7 +1917,7 @@ msgstr "" #: ../../library/sys.rst:1378 msgid "``'line'``" -msgstr "" +msgstr "``'line'``" #: ../../library/sys.rst:1372 msgid "" @@ -1939,7 +1939,7 @@ msgstr "" #: ../../library/sys.rst:1389 msgid "``'exception'``" -msgstr "" +msgstr "``'exception'``" #: ../../library/sys.rst:1387 msgid "" @@ -1950,7 +1950,7 @@ msgstr "" #: ../../library/sys.rst:1397 msgid "``'opcode'``" -msgstr "" +msgstr "``'opcode'``" #: ../../library/sys.rst:1392 msgid "" @@ -2227,7 +2227,7 @@ msgstr "" #: ../../library/sys.rst:1605 msgid ":const:`name`" -msgstr "" +msgstr ":const:`name`" #: ../../library/sys.rst:1605 msgid "Name of the thread implementation:" @@ -2247,7 +2247,7 @@ msgstr "" #: ../../library/sys.rst:1611 msgid ":const:`lock`" -msgstr "" +msgstr ":const:`lock`" #: ../../library/sys.rst:1611 msgid "Name of the lock implementation:" @@ -2267,7 +2267,7 @@ msgstr "" #: ../../library/sys.rst:1618 msgid ":const:`version`" -msgstr "" +msgstr ":const:`version`" #: ../../library/sys.rst:1618 msgid "" diff --git a/library/sysconfig.po b/library/sysconfig.po index a2f855d185..383014cb7a 100644 --- a/library/sysconfig.po +++ b/library/sysconfig.po @@ -25,7 +25,7 @@ msgstr "" #: ../../library/sysconfig.rst:12 msgid "**Source code:** :source:`Lib/sysconfig.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/sysconfig.py`" #: ../../library/sysconfig.rst:19 msgid "" @@ -84,6 +84,9 @@ msgstr "" #: ../../library/sysconfig.rst:53 msgid "Example of usage::" msgstr "" +"用法範例:\n" +"\n" +"::" #: ../../library/sysconfig.rst:66 msgid "Installation paths" @@ -318,7 +321,7 @@ msgstr "" #: ../../library/sysconfig.rst:201 msgid "Other functions" -msgstr "" +msgstr "其他函式" #: ../../library/sysconfig.rst:205 msgid "" @@ -345,15 +348,15 @@ msgstr "" #: ../../library/sysconfig.rst:221 msgid "linux-i586" -msgstr "" +msgstr "linux-i586" #: ../../library/sysconfig.rst:222 msgid "linux-alpha (?)" -msgstr "" +msgstr "linux-alpha (?)" #: ../../library/sysconfig.rst:223 msgid "solaris-2.6-sun4u" -msgstr "" +msgstr "solaris-2.6-sun4u" #: ../../library/sysconfig.rst:225 msgid "Windows will return one of:" @@ -373,19 +376,19 @@ msgstr "" #: ../../library/sysconfig.rst:232 msgid "macosx-10.6-ppc" -msgstr "" +msgstr "macosx-10.6-ppc" #: ../../library/sysconfig.rst:233 msgid "macosx-10.4-ppc64" -msgstr "" +msgstr "macosx-10.4-ppc64" #: ../../library/sysconfig.rst:234 msgid "macosx-10.3-i386" -msgstr "" +msgstr "macosx-10.3-i386" #: ../../library/sysconfig.rst:235 msgid "macosx-10.4-fat" -msgstr "" +msgstr "macosx-10.4-fat" #: ../../library/sysconfig.rst:237 msgid "" diff --git a/library/syslog.po b/library/syslog.po index df860cf79e..bddd72cac1 100644 --- a/library/syslog.po +++ b/library/syslog.po @@ -38,7 +38,7 @@ msgstr "" #: ../../library/syslog.rst:18 msgid "The module defines the following functions:" -msgstr "" +msgstr "該模組定義了以下函式:" #: ../../library/syslog.rst:24 msgid "" @@ -167,15 +167,18 @@ msgstr "" #: ../../library/syslog.rst:102 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/syslog.rst:105 msgid "Simple example" -msgstr "" +msgstr "簡單範例" #: ../../library/syslog.rst:107 msgid "A simple set of examples::" msgstr "" +"一組簡單範例:\n" +"\n" +"::" #: ../../library/syslog.rst:115 msgid "" diff --git a/library/tabnanny.po b/library/tabnanny.po index 497a67c360..6a91017d79 100644 --- a/library/tabnanny.po +++ b/library/tabnanny.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/tabnanny.rst:13 msgid "**Source code:** :source:`Lib/tabnanny.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tabnanny.py`" #: ../../library/tabnanny.rst:17 msgid "" @@ -75,7 +75,7 @@ msgstr "" #: ../../library/tabnanny.rst:66 msgid "Module :mod:`tokenize`" -msgstr "" +msgstr ":mod:`tokenize` 模組" #: ../../library/tabnanny.rst:67 msgid "Lexical scanner for Python source code." diff --git a/library/tarfile.po b/library/tarfile.po index c40dd25016..17718ec17f 100644 --- a/library/tarfile.po +++ b/library/tarfile.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/tarfile.rst:10 msgid "**Source code:** :source:`Lib/tarfile.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tarfile.py`" #: ../../library/tarfile.rst:14 msgid "" @@ -93,7 +93,7 @@ msgstr "" #: ../../library/tarfile.rst:52 msgid "``'r' or 'r:*'``" -msgstr "" +msgstr "``'r' 或 'r:*'``" #: ../../library/tarfile.rst:52 msgid "Open for reading with transparent compression (recommended)." @@ -101,7 +101,7 @@ msgstr "" #: ../../library/tarfile.rst:55 msgid "``'r:'``" -msgstr "" +msgstr "``'r:'``" #: ../../library/tarfile.rst:55 msgid "Open for reading exclusively without compression." @@ -109,7 +109,7 @@ msgstr "" #: ../../library/tarfile.rst:58 msgid "``'r:gz'``" -msgstr "" +msgstr "``'r:gz'``" #: ../../library/tarfile.rst:58 msgid "Open for reading with gzip compression." @@ -117,7 +117,7 @@ msgstr "" #: ../../library/tarfile.rst:60 msgid "``'r:bz2'``" -msgstr "" +msgstr "``'r:bz2'``" #: ../../library/tarfile.rst:60 msgid "Open for reading with bzip2 compression." @@ -125,7 +125,7 @@ msgstr "" #: ../../library/tarfile.rst:62 msgid "``'r:xz'``" -msgstr "" +msgstr "``'r:xz'``" #: ../../library/tarfile.rst:62 msgid "Open for reading with lzma compression." @@ -133,7 +133,7 @@ msgstr "" #: ../../library/tarfile.rst:64 msgid "``'x'`` or ``'x:'``" -msgstr "" +msgstr "``'x'`` 或 ``'x:'``" #: ../../library/tarfile.rst:64 msgid "" @@ -143,7 +143,7 @@ msgstr "" #: ../../library/tarfile.rst:69 msgid "``'x:gz'``" -msgstr "" +msgstr "``'x:gz'``" #: ../../library/tarfile.rst:69 msgid "" @@ -153,7 +153,7 @@ msgstr "" #: ../../library/tarfile.rst:73 msgid "``'x:bz2'``" -msgstr "" +msgstr "``'x:bz2'``" #: ../../library/tarfile.rst:73 msgid "" @@ -163,7 +163,7 @@ msgstr "" #: ../../library/tarfile.rst:77 msgid "``'x:xz'``" -msgstr "" +msgstr "``'x:xz'``" #: ../../library/tarfile.rst:77 msgid "" @@ -173,7 +173,7 @@ msgstr "" #: ../../library/tarfile.rst:81 msgid "``'a' or 'a:'``" -msgstr "" +msgstr "``'a' 或 'a:'``" #: ../../library/tarfile.rst:81 msgid "" @@ -183,7 +183,7 @@ msgstr "" #: ../../library/tarfile.rst:84 msgid "``'w' or 'w:'``" -msgstr "" +msgstr "``'w' 或 'w:'``" #: ../../library/tarfile.rst:84 msgid "Open for uncompressed writing." @@ -191,7 +191,7 @@ msgstr "" #: ../../library/tarfile.rst:86 msgid "``'w:gz'``" -msgstr "" +msgstr "``'w:gz'``" #: ../../library/tarfile.rst:86 msgid "Open for gzip compressed writing." @@ -199,7 +199,7 @@ msgstr "" #: ../../library/tarfile.rst:88 msgid "``'w:bz2'``" -msgstr "" +msgstr "``'w:bz2'``" #: ../../library/tarfile.rst:88 msgid "Open for bzip2 compressed writing." @@ -207,7 +207,7 @@ msgstr "" #: ../../library/tarfile.rst:90 msgid "``'w:xz'``" -msgstr "" +msgstr "``'w:xz'``" #: ../../library/tarfile.rst:90 msgid "Open for lzma compressed writing." @@ -264,7 +264,7 @@ msgstr "" #: ../../library/tarfile.rst:122 msgid "``'r|*'``" -msgstr "" +msgstr "``'r|*'``" #: ../../library/tarfile.rst:122 msgid "Open a *stream* of tar blocks for reading with transparent compression." @@ -272,7 +272,7 @@ msgstr "" #: ../../library/tarfile.rst:125 msgid "``'r|'``" -msgstr "" +msgstr "``'r|'``" #: ../../library/tarfile.rst:125 msgid "Open a *stream* of uncompressed tar blocks for reading." @@ -280,7 +280,7 @@ msgstr "" #: ../../library/tarfile.rst:128 msgid "``'r|gz'``" -msgstr "" +msgstr "``'r|gz'``" #: ../../library/tarfile.rst:128 msgid "Open a gzip compressed *stream* for reading." @@ -288,7 +288,7 @@ msgstr "" #: ../../library/tarfile.rst:131 msgid "``'r|bz2'``" -msgstr "" +msgstr "``'r|bz2'``" #: ../../library/tarfile.rst:131 msgid "Open a bzip2 compressed *stream* for reading." @@ -296,7 +296,7 @@ msgstr "" #: ../../library/tarfile.rst:134 msgid "``'r|xz'``" -msgstr "" +msgstr "``'r|xz'``" #: ../../library/tarfile.rst:134 msgid "Open an lzma compressed *stream* for reading." @@ -304,7 +304,7 @@ msgstr "" #: ../../library/tarfile.rst:137 msgid "``'w|'``" -msgstr "" +msgstr "``'w|'``" #: ../../library/tarfile.rst:137 msgid "Open an uncompressed *stream* for writing." @@ -312,7 +312,7 @@ msgstr "" #: ../../library/tarfile.rst:139 msgid "``'w|gz'``" -msgstr "" +msgstr "``'w|gz'``" #: ../../library/tarfile.rst:139 msgid "Open a gzip compressed *stream* for writing." @@ -320,7 +320,7 @@ msgstr "" #: ../../library/tarfile.rst:142 msgid "``'w|bz2'``" -msgstr "" +msgstr "``'w|bz2'``" #: ../../library/tarfile.rst:142 msgid "Open a bzip2 compressed *stream* for writing." @@ -328,7 +328,7 @@ msgstr "" #: ../../library/tarfile.rst:145 msgid "``'w|xz'``" -msgstr "" +msgstr "``'w|xz'``" #: ../../library/tarfile.rst:145 msgid "Open an lzma compressed *stream* for writing." @@ -439,7 +439,7 @@ msgstr "" #: ../../library/tarfile.rst:249 msgid "Module :mod:`zipfile`" -msgstr "" +msgstr ":mod:`zipfile` 模組" #: ../../library/tarfile.rst:249 msgid "Documentation of the :mod:`zipfile` standard module." @@ -447,7 +447,7 @@ msgstr "" #: ../../library/tarfile.rst:253 msgid ":ref:`archiving-operations`" -msgstr "" +msgstr ":ref:`archiving-operations`" #: ../../library/tarfile.rst:252 msgid "" @@ -967,7 +967,7 @@ msgstr "" #: ../../library/tarfile.rst:751 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/tarfile.rst:753 msgid "How to extract an entire tar archive to the current working directory::" diff --git a/library/telnetlib.po b/library/telnetlib.po index 813a7bdb74..1e16ac2a04 100644 --- a/library/telnetlib.po +++ b/library/telnetlib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/telnetlib.rst:9 msgid "**Source code:** :source:`Lib/telnetlib.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/telnetlib.py`" #: ../../library/telnetlib.rst:15 msgid "" @@ -275,7 +275,7 @@ msgstr "" #: ../../library/telnetlib.rst:230 msgid "Telnet Example" -msgstr "" +msgstr "Telnet 範例" #: ../../library/telnetlib.rst:235 msgid "A simple example illustrating typical use::" diff --git a/library/tempfile.po b/library/tempfile.po index b8f7882adc..5a08ceb34c 100644 --- a/library/tempfile.po +++ b/library/tempfile.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/tempfile.rst:9 msgid "**Source code:** :source:`Lib/tempfile.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tempfile.py`" #: ../../library/tempfile.rst:17 msgid "" @@ -400,11 +400,15 @@ msgstr "" #: ../../library/tempfile.rst:313 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/tempfile.rst:315 msgid "Here are some examples of typical usage of the :mod:`tempfile` module::" msgstr "" +"以下是 :mod:`tempfile` 模組的一些常見用法範例:\n" +"\n" +"::" + #: ../../library/tempfile.rst:347 msgid "Deprecated functions and variables" diff --git a/library/termios.po b/library/termios.po index a7a2421f26..20237211d5 100644 --- a/library/termios.po +++ b/library/termios.po @@ -97,7 +97,7 @@ msgstr "" #: ../../library/termios.rst:79 msgid "Module :mod:`tty`" -msgstr "" +msgstr ":mod:`tty` 模組" #: ../../library/termios.rst:80 msgid "Convenience functions for common terminal control operations." @@ -105,7 +105,7 @@ msgstr "" #: ../../library/termios.rst:86 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/termios.rst:88 msgid "" diff --git a/library/test.po b/library/test.po index 93f291de4a..f7aafaa1b8 100644 --- a/library/test.po +++ b/library/test.po @@ -50,7 +50,7 @@ msgstr "" #: ../../library/test.rst:33 msgid "Module :mod:`unittest`" -msgstr "" +msgstr ":mod:`unittest` 模組" #: ../../library/test.rst:33 msgid "Writing PyUnit regression tests." @@ -58,7 +58,7 @@ msgstr "" #: ../../library/test.rst:35 msgid "Module :mod:`doctest`" -msgstr "模組 :mod:`doctest`" +msgstr ":mod:`doctest` 模組" #: ../../library/test.rst:36 msgid "Tests embedded in documentation strings." @@ -623,6 +623,9 @@ msgstr "" #: ../../library/test.rst:812 ../../library/test.rst:1263 msgid "Usage::" msgstr "" +"用法:\n" +"\n" +"::" #: ../../library/test.rst:583 msgid "" @@ -936,6 +939,9 @@ msgstr "" #: ../../library/test.rst:901 ../../library/test.rst:1505 msgid "Example use::" msgstr "" +"用法範例:\n" +"\n" +"::" #: ../../library/test.rst:924 msgid "" @@ -1284,19 +1290,19 @@ msgstr "" #: ../../library/test.rst:1254 msgid "``exc_type``" -msgstr "" +msgstr "``exc_type``" #: ../../library/test.rst:1255 msgid "``exc_value``" -msgstr "" +msgstr "``exc_value``" #: ../../library/test.rst:1256 msgid "``exc_traceback``" -msgstr "" +msgstr "``exc_traceback``" #: ../../library/test.rst:1257 msgid "``thread``" -msgstr "" +msgstr "``thread``" #: ../../library/test.rst:1259 msgid "See :func:`threading.excepthook` documentation." diff --git a/library/textwrap.po b/library/textwrap.po index f077c234b4..58b6c4ba13 100644 --- a/library/textwrap.po +++ b/library/textwrap.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/textwrap.rst:10 msgid "**Source code:** :source:`Lib/textwrap.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/textwrap.py`" #: ../../library/textwrap.rst:14 msgid "" @@ -113,6 +113,9 @@ msgstr "" #: ../../library/textwrap.rst:93 ../../library/textwrap.rst:114 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/textwrap.rst:107 msgid "Add *prefix* to the beginning of selected lines in *text*." diff --git a/library/threading.po b/library/threading.po index 4de0a31cb7..ce2689f24b 100644 --- a/library/threading.po +++ b/library/threading.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/threading.rst:7 msgid "**Source code:** :source:`Lib/threading.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/threading.py`" #: ../../library/threading.rst:11 msgid "" @@ -1106,7 +1106,7 @@ msgstr "" #: ../../library/threading.rst:870 msgid ":class:`Semaphore` Example" -msgstr "" +msgstr ":class:`Semaphore` 範例" #: ../../library/threading.rst:872 msgid "" @@ -1222,6 +1222,9 @@ msgstr "" #: ../../library/threading.rst:970 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/threading.rst:981 msgid "" diff --git a/library/time.po b/library/time.po index 822dd41ec5..676c3b616f 100644 --- a/library/time.po +++ b/library/time.po @@ -156,7 +156,7 @@ msgstr "" #: ../../library/time.rst:102 msgid ":func:`gmtime`" -msgstr "" +msgstr ":func:`gmtime`" #: ../../library/time.rst:105 ../../library/time.rst:111 msgid ":class:`struct_time` in local time" @@ -164,19 +164,19 @@ msgstr "" #: ../../library/time.rst:105 msgid ":func:`localtime`" -msgstr "" +msgstr ":func:`localtime`" #: ../../library/time.rst:108 msgid ":func:`calendar.timegm`" -msgstr "" +msgstr ":func:`calendar.timegm`" #: ../../library/time.rst:111 msgid ":func:`mktime`" -msgstr "" +msgstr ":func:`mktime`" #: ../../library/time.rst:119 msgid "Functions" -msgstr "" +msgstr "函式" #: ../../library/time.rst:123 msgid "" @@ -235,7 +235,7 @@ msgstr "" #: ../../library/time.rst:775 ../../library/time.rst:794 #: ../../library/time.rst:822 ../../library/time.rst:857 msgid ":ref:`Availability `: Unix." -msgstr "" +msgstr ":ref:`適用 `:Unix。" #: ../../library/time.rst:166 msgid "" @@ -488,7 +488,7 @@ msgstr "註解" #: ../../library/time.rst:387 msgid "``%a``" -msgstr "" +msgstr "``%a``" #: ../../library/time.rst:387 msgid "Locale's abbreviated weekday name." @@ -496,7 +496,7 @@ msgstr "" #: ../../library/time.rst:390 msgid "``%A``" -msgstr "" +msgstr "``%A``" #: ../../library/time.rst:390 msgid "Locale's full weekday name." @@ -504,7 +504,7 @@ msgstr "" #: ../../library/time.rst:392 msgid "``%b``" -msgstr "" +msgstr "``%b``" #: ../../library/time.rst:392 msgid "Locale's abbreviated month name." @@ -512,7 +512,7 @@ msgstr "" #: ../../library/time.rst:395 msgid "``%B``" -msgstr "" +msgstr "``%B``" #: ../../library/time.rst:395 msgid "Locale's full month name." @@ -520,7 +520,7 @@ msgstr "" #: ../../library/time.rst:397 msgid "``%c``" -msgstr "" +msgstr "``%c``" #: ../../library/time.rst:397 msgid "Locale's appropriate date and time representation." @@ -528,7 +528,7 @@ msgstr "" #: ../../library/time.rst:400 msgid "``%d``" -msgstr "" +msgstr "``%d``" #: ../../library/time.rst:400 msgid "Day of the month as a decimal number [01,31]." @@ -536,7 +536,7 @@ msgstr "" #: ../../library/time.rst:403 msgid "``%H``" -msgstr "" +msgstr "``%H``" #: ../../library/time.rst:403 msgid "Hour (24-hour clock) as a decimal number [00,23]." @@ -544,7 +544,7 @@ msgstr "" #: ../../library/time.rst:406 msgid "``%I``" -msgstr "" +msgstr "``%I``" #: ../../library/time.rst:406 msgid "Hour (12-hour clock) as a decimal number [01,12]." @@ -552,7 +552,7 @@ msgstr "" #: ../../library/time.rst:409 msgid "``%j``" -msgstr "" +msgstr "``%j``" #: ../../library/time.rst:409 msgid "Day of the year as a decimal number [001,366]." @@ -560,7 +560,7 @@ msgstr "" #: ../../library/time.rst:412 msgid "``%m``" -msgstr "" +msgstr "``%m``" #: ../../library/time.rst:412 msgid "Month as a decimal number [01,12]." @@ -568,7 +568,7 @@ msgstr "" #: ../../library/time.rst:415 msgid "``%M``" -msgstr "" +msgstr "``%M``" #: ../../library/time.rst:415 msgid "Minute as a decimal number [00,59]." @@ -576,7 +576,7 @@ msgstr "" #: ../../library/time.rst:418 msgid "``%p``" -msgstr "" +msgstr "``%p``" #: ../../library/time.rst:418 msgid "Locale's equivalent of either AM or PM." @@ -588,7 +588,7 @@ msgstr "\\(1)" #: ../../library/time.rst:421 msgid "``%S``" -msgstr "" +msgstr "``%S``" #: ../../library/time.rst:421 msgid "Second as a decimal number [00,61]." @@ -600,7 +600,7 @@ msgstr "\\(2)" #: ../../library/time.rst:424 msgid "``%U``" -msgstr "" +msgstr "``%U``" #: ../../library/time.rst:424 msgid "" @@ -611,11 +611,11 @@ msgstr "" #: ../../library/time.rst:424 ../../library/time.rst:435 msgid "\\(3)" -msgstr "" +msgstr "\\(3)" #: ../../library/time.rst:432 msgid "``%w``" -msgstr "" +msgstr "``%w``" #: ../../library/time.rst:432 msgid "Weekday as a decimal number [0(Sunday),6]." @@ -623,7 +623,7 @@ msgstr "" #: ../../library/time.rst:435 msgid "``%W``" -msgstr "" +msgstr "``%W``" #: ../../library/time.rst:435 msgid "" @@ -634,7 +634,7 @@ msgstr "" #: ../../library/time.rst:443 msgid "``%x``" -msgstr "" +msgstr "``%x``" #: ../../library/time.rst:443 msgid "Locale's appropriate date representation." @@ -642,7 +642,7 @@ msgstr "" #: ../../library/time.rst:446 msgid "``%X``" -msgstr "" +msgstr "``%X``" #: ../../library/time.rst:446 msgid "Locale's appropriate time representation." @@ -650,7 +650,7 @@ msgstr "" #: ../../library/time.rst:449 msgid "``%y``" -msgstr "" +msgstr "``%y``" #: ../../library/time.rst:449 msgid "Year without century as a decimal number [00,99]." @@ -658,7 +658,7 @@ msgstr "" #: ../../library/time.rst:452 msgid "``%Y``" -msgstr "" +msgstr "``%Y``" #: ../../library/time.rst:452 msgid "Year with century as a decimal number." @@ -666,7 +666,7 @@ msgstr "" #: ../../library/time.rst:455 msgid "``%z``" -msgstr "" +msgstr "``%z``" #: ../../library/time.rst:455 msgid "" @@ -677,7 +677,7 @@ msgstr "" #: ../../library/time.rst:461 msgid "``%Z``" -msgstr "" +msgstr "``%Z``" #: ../../library/time.rst:461 msgid "Time zone name (no characters if no time zone exists)." @@ -685,7 +685,7 @@ msgstr "" #: ../../library/time.rst:464 msgid "``%%``" -msgstr "" +msgstr "``%%``" #: ../../library/time.rst:464 msgid "A literal ``'%'`` character." @@ -789,7 +789,7 @@ msgstr "" #: ../../library/time.rst:544 msgid "Attribute" -msgstr "" +msgstr "屬性" #: ../../library/time.rst:544 msgid "Values" @@ -801,7 +801,7 @@ msgstr "0" #: ../../library/time.rst:546 msgid ":attr:`tm_year`" -msgstr "" +msgstr ":attr:`tm_year`" #: ../../library/time.rst:546 msgid "(for example, 1993)" @@ -813,7 +813,7 @@ msgstr "1" #: ../../library/time.rst:548 msgid ":attr:`tm_mon`" -msgstr "" +msgstr ":attr:`tm_mon`" #: ../../library/time.rst:548 msgid "range [1, 12]" @@ -825,7 +825,7 @@ msgstr "2" #: ../../library/time.rst:550 msgid ":attr:`tm_mday`" -msgstr "" +msgstr ":attr:`tm_mday`" #: ../../library/time.rst:550 msgid "range [1, 31]" @@ -833,11 +833,11 @@ msgstr "" #: ../../library/time.rst:552 msgid "3" -msgstr "" +msgstr "3" #: ../../library/time.rst:552 msgid ":attr:`tm_hour`" -msgstr "" +msgstr ":attr:`tm_hour`" #: ../../library/time.rst:552 msgid "range [0, 23]" @@ -849,7 +849,7 @@ msgstr "4" #: ../../library/time.rst:554 msgid ":attr:`tm_min`" -msgstr "" +msgstr ":attr:`tm_min`" #: ../../library/time.rst:554 msgid "range [0, 59]" @@ -857,11 +857,11 @@ msgstr "" #: ../../library/time.rst:556 msgid "5" -msgstr "" +msgstr "5" #: ../../library/time.rst:556 msgid ":attr:`tm_sec`" -msgstr "" +msgstr ":attr:`tm_sec`" #: ../../library/time.rst:556 msgid "range [0, 61]; see **(2)** in :func:`strftime` description" @@ -869,11 +869,11 @@ msgstr "" #: ../../library/time.rst:559 msgid "6" -msgstr "" +msgstr "6" #: ../../library/time.rst:559 msgid ":attr:`tm_wday`" -msgstr "" +msgstr ":attr:`tm_wday`" #: ../../library/time.rst:559 msgid "range [0, 6], Monday is 0" @@ -881,11 +881,11 @@ msgstr "" #: ../../library/time.rst:561 msgid "7" -msgstr "" +msgstr "7" #: ../../library/time.rst:561 msgid ":attr:`tm_yday`" -msgstr "" +msgstr ":attr:`tm_yday`" #: ../../library/time.rst:561 msgid "range [1, 366]" @@ -897,7 +897,7 @@ msgstr "8" #: ../../library/time.rst:563 msgid ":attr:`tm_isdst`" -msgstr "" +msgstr ":attr:`tm_isdst`" #: ../../library/time.rst:563 msgid "0, 1 or -1; see below" @@ -905,11 +905,11 @@ msgstr "" #: ../../library/time.rst:565 ../../library/time.rst:567 msgid "N/A" -msgstr "" +msgstr "N/A" #: ../../library/time.rst:565 msgid ":attr:`tm_zone`" -msgstr "" +msgstr ":attr:`tm_zone`" #: ../../library/time.rst:565 msgid "abbreviation of timezone name" @@ -917,7 +917,7 @@ msgstr "" #: ../../library/time.rst:567 msgid ":attr:`tm_gmtoff`" -msgstr "" +msgstr ":attr:`tm_gmtoff`" #: ../../library/time.rst:567 msgid "offset east of UTC in seconds" @@ -1045,7 +1045,7 @@ msgstr "" #: ../../library/time.rst:676 msgid "``std`` and ``dst``" -msgstr "" +msgstr "``std`` 和 ``dst``" #: ../../library/time.rst:675 msgid "" @@ -1055,7 +1055,7 @@ msgstr "" #: ../../library/time.rst:682 msgid "``offset``" -msgstr "" +msgstr "``offset``" #: ../../library/time.rst:679 msgid "" @@ -1067,7 +1067,7 @@ msgstr "" #: ../../library/time.rst:704 msgid "``start[/time], end[/time]``" -msgstr "" +msgstr "``start[/time], end[/time]``" #: ../../library/time.rst:685 msgid "" @@ -1077,7 +1077,7 @@ msgstr "" #: ../../library/time.rst:690 msgid ":samp:`J{n}`" -msgstr "" +msgstr ":samp:`J{n}`" #: ../../library/time.rst:689 msgid "" @@ -1087,7 +1087,7 @@ msgstr "" #: ../../library/time.rst:694 msgid ":samp:`{n}`" -msgstr "" +msgstr ":samp:`{n}`" #: ../../library/time.rst:693 msgid "" @@ -1097,7 +1097,7 @@ msgstr "" #: ../../library/time.rst:701 msgid ":samp:`M{m}.{n}.{d}`" -msgstr "" +msgstr ":samp:`M{m}.{n}.{d}`" #: ../../library/time.rst:697 msgid "" @@ -1150,7 +1150,7 @@ msgstr "" #: ../../library/time.rst:754 msgid ":ref:`Availability `: Linux 2.6.39 or later." -msgstr "" +msgstr ":ref:`適用 `:Linux 2.6.39 以上。" #: ../../library/time.rst:760 msgid "" @@ -1161,7 +1161,7 @@ msgstr "" #: ../../library/time.rst:765 msgid ":ref:`Availability `: Solaris." -msgstr "" +msgstr ":ref:`適用 `:Solaris。" #: ../../library/time.rst:771 msgid "" @@ -1204,7 +1204,7 @@ msgstr "" #: ../../library/time.rst:814 msgid ":ref:`Availability `: Linux." -msgstr "" +msgstr ":ref:`適用 `:Linux。" #: ../../library/time.rst:819 msgid "Thread-specific CPU-time clock." @@ -1218,7 +1218,7 @@ msgstr "" #: ../../library/time.rst:833 msgid ":ref:`Availability `: FreeBSD, OpenBSD 5.5 or later." -msgstr "" +msgstr ":ref:`適用 `:FreeBSD、OpenBSD 5.5 以上。" #: ../../library/time.rst:839 msgid "" @@ -1229,7 +1229,7 @@ msgstr "" #: ../../library/time.rst:844 msgid ":ref:`Availability `: macOS 10.12 and newer." -msgstr "" +msgstr ":ref:`適用 `:macOS 10.12 以上。" #: ../../library/time.rst:847 msgid "" @@ -1285,7 +1285,7 @@ msgstr "" #: ../../library/time.rst:899 msgid "Module :mod:`datetime`" -msgstr "" +msgstr ":mod:`datetime` 模組" #: ../../library/time.rst:899 msgid "More object-oriented interface to dates and times." @@ -1293,7 +1293,7 @@ msgstr "" #: ../../library/time.rst:903 msgid "Module :mod:`locale`" -msgstr "" +msgstr ":mod:`locale` 模組" #: ../../library/time.rst:902 msgid "" @@ -1304,7 +1304,7 @@ msgstr "" #: ../../library/time.rst:906 msgid "Module :mod:`calendar`" -msgstr "" +msgstr ":mod:`calendar` 模組" #: ../../library/time.rst:906 msgid "" diff --git a/library/timeit.po b/library/timeit.po index 002dc1b2c4..bfd6cd7f1a 100644 --- a/library/timeit.po +++ b/library/timeit.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/timeit.rst:7 msgid "**Source code:** :source:`Lib/timeit.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/timeit.py`" #: ../../library/timeit.rst:15 msgid "" @@ -294,7 +294,7 @@ msgstr "" #: ../../library/timeit.rst:274 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/timeit.rst:276 msgid "" diff --git a/library/tkinter.colorchooser.po b/library/tkinter.colorchooser.po index 4dbf087cb9..715d325391 100644 --- a/library/tkinter.colorchooser.po +++ b/library/tkinter.colorchooser.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/tkinter.colorchooser.rst:8 msgid "**Source code:** :source:`Lib/tkinter/colorchooser.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tkinter/colorchooser.py`" #: ../../library/tkinter.colorchooser.rst:12 msgid "" @@ -43,7 +43,7 @@ msgstr "" #: ../../library/tkinter.colorchooser.rst:28 msgid "Module :mod:`tkinter.commondialog`" -msgstr "" +msgstr ":mod:`tkinter.commondialog` 模組" #: ../../library/tkinter.colorchooser.rst:29 msgid "Tkinter standard dialog module" diff --git a/library/tkinter.dnd.po b/library/tkinter.dnd.po index d1769a7b4a..471b216bca 100644 --- a/library/tkinter.dnd.po +++ b/library/tkinter.dnd.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/tkinter.dnd.rst:8 msgid "**Source code:** :source:`Lib/tkinter/dnd.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tkinter/dnd.py`" #: ../../library/tkinter.dnd.rst:12 msgid "" @@ -110,4 +110,4 @@ msgstr "" #: ../../library/tkinter.dnd.rst:64 msgid ":ref:`Bindings-and-Events`" -msgstr "" +msgstr ":ref:`Bindings-and-Events`" diff --git a/library/tkinter.font.po b/library/tkinter.font.po index a5e48a2291..24d3660c61 100644 --- a/library/tkinter.font.po +++ b/library/tkinter.font.po @@ -23,7 +23,7 @@ msgstr "" #: ../../library/tkinter.font.rst:8 msgid "**Source code:** :source:`Lib/tkinter/font.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tkinter/font.py`" #: ../../library/tkinter.font.rst:12 msgid "" @@ -46,7 +46,7 @@ msgstr "" #: ../../library/tkinter.font.rst:30 msgid "arguments:" -msgstr "" +msgstr "引數:" #: ../../library/tkinter.font.rst:0 msgid "*font* - font specifier tuple (family, size, options)" diff --git a/library/tkinter.messagebox.po b/library/tkinter.messagebox.po index 3403a92ec5..6ea74fa3ac 100644 --- a/library/tkinter.messagebox.po +++ b/library/tkinter.messagebox.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/tkinter.messagebox.rst:8 msgid "**Source code:** :source:`Lib/tkinter/messagebox.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tkinter/messagebox.py`" #: ../../library/tkinter.messagebox.rst:12 msgid "" diff --git a/library/tkinter.po b/library/tkinter.po index 72568845e5..f0bc6895c7 100644 --- a/library/tkinter.po +++ b/library/tkinter.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/tkinter.rst:9 msgid "**Source code:** :source:`Lib/tkinter/__init__.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tkinter/__init__.py`" #: ../../library/tkinter.rst:13 msgid "" @@ -90,7 +90,7 @@ msgstr "" #: ../../library/tkinter.rst:48 msgid "Tcl/Tk Resources:" -msgstr "" +msgstr "Tcl/Tk 相關資源:" #: ../../library/tkinter.rst:51 msgid "`Tk commands `_" @@ -112,46 +112,53 @@ msgstr "" #: ../../library/tkinter.rst:56 msgid "Books:" -msgstr "" +msgstr "書籍:" #: ../../library/tkinter.rst:59 msgid "" "`Modern Tkinter for Busy Python Developers `_" msgstr "" +"`Modern Tkinter for Busy Python Developers `_" #: ../../library/tkinter.rst:59 msgid "By Mark Roseman. (ISBN 978-1999149567)" -msgstr "" +msgstr "由 Mark Roseman 所著。(ISBN 978-1999149567)" #: ../../library/tkinter.rst:62 msgid "" "`Python and Tkinter Programming `_" msgstr "" +"`Python and Tkinter Programming `_" #: ../../library/tkinter.rst:62 msgid "By Alan Moore. (ISBN 978-1788835886)" -msgstr "" +msgstr "由 Alan Moore 所著。(ISBN 978-1788835886)" #: ../../library/tkinter.rst:65 msgid "`Programming Python `_" -msgstr "" +msgstr "`Programming Python `_" #: ../../library/tkinter.rst:65 msgid "By Mark Lutz; has excellent coverage of Tkinter. (ISBN 978-0596158101)" -msgstr "" +msgstr "由 Mark Lutz 所著;大部分 Tkinter 主題都有涵蓋。(ISBN 978-0596158101)" #: ../../library/tkinter.rst:67 msgid "" "`Tcl and the Tk Toolkit (2nd edition) `_" msgstr "" +"`Tcl and the Tk Toolkit (2nd edition) `_" #: ../../library/tkinter.rst:68 msgid "" "By John Ousterhout, inventor of Tcl/Tk, and Ken Jones; does not cover " "Tkinter. (ISBN 978-0321336330)" msgstr "" +"由 Tcl/Tk 發明者 John Ousterhout 與 Ken Jones 所著;不包含 Tkinter。" +"(ISBN 978-0321336330)" #: ../../library/tkinter.rst:72 msgid "Architecture" @@ -167,7 +174,7 @@ msgstr "" #: ../../library/tkinter.rst:90 msgid "Tcl" -msgstr "" +msgstr "Tcl" #: ../../library/tkinter.rst:80 msgid "" @@ -185,7 +192,7 @@ msgstr "" #: ../../library/tkinter.rst:97 ../../library/tkinter.rst:851 msgid "Tk" -msgstr "" +msgstr "Tk" #: ../../library/tkinter.rst:93 msgid "" @@ -198,7 +205,7 @@ msgstr "" #: ../../library/tkinter.rst:103 msgid "Ttk" -msgstr "" +msgstr "Ttk" #: ../../library/tkinter.rst:100 msgid "" @@ -260,7 +267,7 @@ msgstr "" #: ../../library/tkinter.rst:150 msgid ":mod:`tkinter`" -msgstr "" +msgstr ":mod:`tkinter`" #: ../../library/tkinter.rst:150 msgid "Main Tkinter module." @@ -268,7 +275,7 @@ msgstr "" #: ../../library/tkinter.rst:153 msgid ":mod:`tkinter.colorchooser`" -msgstr "" +msgstr ":mod:`tkinter.colorchooser`" #: ../../library/tkinter.rst:153 msgid "Dialog to let the user choose a color." @@ -276,7 +283,7 @@ msgstr "" #: ../../library/tkinter.rst:156 msgid ":mod:`tkinter.commondialog`" -msgstr "" +msgstr ":mod:`tkinter.commondialog`" #: ../../library/tkinter.rst:156 msgid "Base class for the dialogs defined in the other modules listed here." @@ -284,7 +291,7 @@ msgstr "" #: ../../library/tkinter.rst:159 msgid ":mod:`tkinter.filedialog`" -msgstr "" +msgstr ":mod:`tkinter.filedialog`" #: ../../library/tkinter.rst:159 msgid "Common dialogs to allow the user to specify a file to open or save." @@ -292,7 +299,7 @@ msgstr "" #: ../../library/tkinter.rst:162 msgid ":mod:`tkinter.font`" -msgstr "" +msgstr ":mod:`tkinter.font`" #: ../../library/tkinter.rst:162 msgid "Utilities to help work with fonts." @@ -300,7 +307,7 @@ msgstr "" #: ../../library/tkinter.rst:165 msgid ":mod:`tkinter.messagebox`" -msgstr "" +msgstr ":mod:`tkinter.messagebox`" #: ../../library/tkinter.rst:165 msgid "Access to standard Tk dialog boxes." @@ -308,7 +315,7 @@ msgstr "" #: ../../library/tkinter.rst:168 msgid ":mod:`tkinter.scrolledtext`" -msgstr "" +msgstr ":mod:`tkinter.scrolledtext`" #: ../../library/tkinter.rst:168 msgid "Text widget with a vertical scroll bar built in." @@ -316,7 +323,7 @@ msgstr "" #: ../../library/tkinter.rst:171 msgid ":mod:`tkinter.simpledialog`" -msgstr "" +msgstr ":mod:`tkinter.simpledialog`" #: ../../library/tkinter.rst:171 msgid "Basic dialogs and convenience functions." @@ -324,7 +331,7 @@ msgstr "" #: ../../library/tkinter.rst:175 msgid ":mod:`tkinter.ttk`" -msgstr "" +msgstr ":mod:`tkinter.ttk`" #: ../../library/tkinter.rst:174 msgid "" @@ -338,7 +345,7 @@ msgstr "" #: ../../library/tkinter.rst:184 msgid ":mod:`_tkinter`" -msgstr "" +msgstr ":mod:`_tkinter`" #: ../../library/tkinter.rst:180 msgid "" @@ -351,7 +358,7 @@ msgstr "" #: ../../library/tkinter.rst:188 msgid ":mod:`idlelib`" -msgstr "" +msgstr ":mod:`idlelib`" #: ../../library/tkinter.rst:187 msgid "" @@ -361,7 +368,7 @@ msgstr "" #: ../../library/tkinter.rst:193 msgid ":mod:`tkinter.constants`" -msgstr "" +msgstr ":mod:`tkinter.constants`" #: ../../library/tkinter.rst:191 msgid "" @@ -372,7 +379,7 @@ msgstr "" #: ../../library/tkinter.rst:197 msgid ":mod:`tkinter.dnd`" -msgstr "" +msgstr ":mod:`tkinter.dnd`" #: ../../library/tkinter.rst:196 msgid "" @@ -382,7 +389,7 @@ msgstr "" #: ../../library/tkinter.rst:201 msgid ":mod:`tkinter.tix`" -msgstr "" +msgstr ":mod:`tkinter.tix`" #: ../../library/tkinter.rst:200 msgid "" @@ -392,7 +399,7 @@ msgstr "" #: ../../library/tkinter.rst:205 msgid ":mod:`turtle`" -msgstr "" +msgstr ":mod:`turtle`" #: ../../library/tkinter.rst:204 msgid "Turtle graphics in a Tk window." @@ -876,7 +883,7 @@ msgstr "" #: ../../library/tkinter.rst:555 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/tkinter.rst:557 msgid "0" @@ -888,7 +895,7 @@ msgstr "" #: ../../library/tkinter.rst:557 ../../library/tkinter.rst:559 msgid "``'relief'``" -msgstr "" +msgstr "``'relief'``" #: ../../library/tkinter.rst:559 msgid "1" @@ -908,11 +915,11 @@ msgstr "" #: ../../library/tkinter.rst:561 msgid "``'Relief'``" -msgstr "" +msgstr "``'Relief'``" #: ../../library/tkinter.rst:564 msgid "3" -msgstr "" +msgstr "3" #: ../../library/tkinter.rst:564 msgid "default value" @@ -920,7 +927,7 @@ msgstr "" #: ../../library/tkinter.rst:564 msgid "``'raised'``" -msgstr "" +msgstr "``'raised'``" #: ../../library/tkinter.rst:566 msgid "4" @@ -932,11 +939,14 @@ msgstr "" #: ../../library/tkinter.rst:566 msgid "``'groove'``" -msgstr "" +msgstr "``'groove'``" #: ../../library/tkinter.rst:569 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/tkinter.rst:574 msgid "" @@ -1082,6 +1092,9 @@ msgstr "" #: ../../library/tkinter.rst:659 ../../library/tkinter.rst:838 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/tkinter.rst:692 msgid "The Window Manager" @@ -1111,6 +1124,9 @@ msgstr "" #: ../../library/tkinter.rst:710 msgid "Here are some examples of typical usage::" msgstr "" +"以下是一些常見用法範例:\n" +"\n" +"::" #: ../../library/tkinter.rst:733 msgid "Tk Option Data Types" @@ -1324,7 +1340,7 @@ msgstr "" #: ../../library/tkinter.rst:853 msgid "%f" -msgstr "" +msgstr "%f" #: ../../library/tkinter.rst:853 msgid "focus" @@ -1332,15 +1348,15 @@ msgstr "" #: ../../library/tkinter.rst:853 msgid "%A" -msgstr "" +msgstr "%A" #: ../../library/tkinter.rst:853 msgid "char" -msgstr "" +msgstr "char" #: ../../library/tkinter.rst:855 msgid "%h" -msgstr "" +msgstr "%h" #: ../../library/tkinter.rst:855 msgid "height" @@ -1348,15 +1364,15 @@ msgstr "" #: ../../library/tkinter.rst:855 msgid "%E" -msgstr "" +msgstr "%E" #: ../../library/tkinter.rst:855 msgid "send_event" -msgstr "" +msgstr "send_event" #: ../../library/tkinter.rst:857 msgid "%k" -msgstr "" +msgstr "%k" #: ../../library/tkinter.rst:857 msgid "keycode" @@ -1364,7 +1380,7 @@ msgstr "" #: ../../library/tkinter.rst:857 msgid "%K" -msgstr "" +msgstr "%K" #: ../../library/tkinter.rst:857 msgid "keysym" @@ -1372,7 +1388,7 @@ msgstr "" #: ../../library/tkinter.rst:859 msgid "%s" -msgstr "" +msgstr "%s" #: ../../library/tkinter.rst:859 msgid "state" @@ -1380,15 +1396,15 @@ msgstr "" #: ../../library/tkinter.rst:859 msgid "%N" -msgstr "" +msgstr "%N" #: ../../library/tkinter.rst:859 msgid "keysym_num" -msgstr "" +msgstr "keysym_num" #: ../../library/tkinter.rst:861 msgid "%t" -msgstr "" +msgstr "%t" #: ../../library/tkinter.rst:861 msgid "time" @@ -1396,7 +1412,7 @@ msgstr "" #: ../../library/tkinter.rst:861 msgid "%T" -msgstr "" +msgstr "%T" #: ../../library/tkinter.rst:861 msgid "type" @@ -1404,7 +1420,7 @@ msgstr "" #: ../../library/tkinter.rst:863 msgid "%w" -msgstr "" +msgstr "%w" #: ../../library/tkinter.rst:863 msgid "width" @@ -1412,7 +1428,7 @@ msgstr "" #: ../../library/tkinter.rst:863 msgid "%W" -msgstr "" +msgstr "%W" #: ../../library/tkinter.rst:863 msgid "widget" @@ -1420,35 +1436,35 @@ msgstr "" #: ../../library/tkinter.rst:865 msgid "%x" -msgstr "" +msgstr "%x" #: ../../library/tkinter.rst:865 msgid "x" -msgstr "" +msgstr "x" #: ../../library/tkinter.rst:865 msgid "%X" -msgstr "" +msgstr "%X" #: ../../library/tkinter.rst:865 msgid "x_root" -msgstr "" +msgstr "x_root" #: ../../library/tkinter.rst:867 msgid "%y" -msgstr "" +msgstr "%y" #: ../../library/tkinter.rst:867 msgid "y" -msgstr "" +msgstr "y" #: ../../library/tkinter.rst:867 msgid "%Y" -msgstr "" +msgstr "%Y" #: ../../library/tkinter.rst:867 msgid "y_root" -msgstr "" +msgstr "y_root" #: ../../library/tkinter.rst:872 msgid "The index Parameter" @@ -1612,6 +1628,3 @@ msgstr "" #: ../../library/tkinter.rst:984 msgid "Constants used in the *mask* arguments." msgstr "" - -#~ msgid "Notes:" -#~ msgstr "註解:" diff --git a/library/tkinter.scrolledtext.po b/library/tkinter.scrolledtext.po index 1ab040452f..acabaa7025 100644 --- a/library/tkinter.scrolledtext.po +++ b/library/tkinter.scrolledtext.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/tkinter.scrolledtext.rst:10 msgid "**Source code:** :source:`Lib/tkinter/scrolledtext.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tkinter/scrolledtext.py`" #: ../../library/tkinter.scrolledtext.rst:14 msgid "" diff --git a/library/tkinter.tix.po b/library/tkinter.tix.po index 2bcf8b4d68..cfb062943f 100644 --- a/library/tkinter.tix.po +++ b/library/tkinter.tix.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/tkinter.tix.rst:9 msgid "**Source code:** :source:`Lib/tkinter/tix.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tkinter/tix.py`" #: ../../library/tkinter.tix.rst:13 msgid "" diff --git a/library/tkinter.ttk.po b/library/tkinter.ttk.po index 54720ffed7..07200c2865 100644 --- a/library/tkinter.ttk.po +++ b/library/tkinter.ttk.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/tkinter.ttk.rst:9 msgid "**Source code:** :source:`Lib/tkinter/ttk.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tkinter/ttk.py`" #: ../../library/tkinter.ttk.rst:15 msgid "" @@ -463,7 +463,7 @@ msgstr "" #: ../../library/tkinter.ttk.rst:263 msgid "ttk.Widget" -msgstr "" +msgstr "ttk.Widget" #: ../../library/tkinter.ttk.rst:265 msgid "" @@ -614,7 +614,7 @@ msgstr "" #: ../../library/tkinter.ttk.rst:363 msgid "ttk.Combobox" -msgstr "" +msgstr "ttk.Combobox" #: ../../library/tkinter.ttk.rst:369 msgid "" @@ -731,7 +731,7 @@ msgstr "" #: ../../library/tkinter.ttk.rst:451 msgid "ttk.Spinbox" -msgstr "" +msgstr "ttk.Spinbox" #: ../../library/tkinter.ttk.rst:457 msgid "Returns the current value of the spinbox." @@ -880,7 +880,7 @@ msgstr "" #: ../../library/tkinter.ttk.rst:561 msgid "ttk.Notebook" -msgstr "" +msgstr "ttk.Notebook" #: ../../library/tkinter.ttk.rst:567 msgid "Adds a new tab to the notebook." @@ -1083,7 +1083,7 @@ msgstr "" #: ../../library/tkinter.ttk.rst:701 msgid "ttk.Progressbar" -msgstr "" +msgstr "ttk.Progressbar" #: ../../library/tkinter.ttk.rst:707 msgid "" @@ -1460,7 +1460,7 @@ msgstr "" #: ../../library/tkinter.ttk.rst:950 msgid "ttk.Treeview" -msgstr "" +msgstr "ttk.Treeview" #: ../../library/tkinter.ttk.rst:956 msgid "" @@ -1512,7 +1512,7 @@ msgstr "" #: ../../library/tkinter.ttk.rst:991 msgid "id" -msgstr "" +msgstr "id" #: ../../library/tkinter.ttk.rst:992 msgid "Returns the column name. This is a read-only option." diff --git a/library/token.po b/library/token.po index 5cab56753c..55426fe28a 100644 --- a/library/token.po +++ b/library/token.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/token.rst:9 msgid "**Source code:** :source:`Lib/token.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/token.py`" #: ../../library/token.rst:13 msgid "" diff --git a/library/tokenize.po b/library/tokenize.po index 843dabd1af..5ee4d61b61 100644 --- a/library/tokenize.po +++ b/library/tokenize.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/tokenize.rst:10 msgid "**Source code:** :source:`Lib/tokenize.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tokenize.py`" #: ../../library/tokenize.rst:14 msgid "" @@ -240,7 +240,7 @@ msgstr "" #: ../../library/tokenize.rst:177 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/tokenize.rst:179 msgid "" diff --git a/library/trace.po b/library/trace.po index ef9e91255d..547d8b54cb 100644 --- a/library/trace.po +++ b/library/trace.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/trace.rst:7 msgid "**Source code:** :source:`Lib/trace.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/trace.py`" #: ../../library/trace.rst:11 msgid "" diff --git a/library/traceback.po b/library/traceback.po index ec6bfbc74d..e9dee3c5fb 100644 --- a/library/traceback.po +++ b/library/traceback.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/traceback.rst:7 msgid "**Source code:** :source:`Lib/traceback.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/traceback.py`" #: ../../library/traceback.rst:11 msgid "" @@ -233,7 +233,7 @@ msgstr "" #: ../../library/traceback.rst:208 msgid ":class:`TracebackException` Objects" -msgstr "" +msgstr ":class:`TracebackException` 物件" #: ../../library/traceback.rst:212 msgid "" @@ -344,7 +344,7 @@ msgstr "" #: ../../library/traceback.rst:307 msgid ":class:`StackSummary` Objects" -msgstr "" +msgstr ":class:`StackSummary` 物件" #: ../../library/traceback.rst:311 msgid "" @@ -395,7 +395,7 @@ msgstr "" #: ../../library/traceback.rst:351 msgid ":class:`FrameSummary` Objects" -msgstr "" +msgstr ":class:`FrameSummary` 物件" #: ../../library/traceback.rst:355 msgid ":class:`FrameSummary` objects represent a single frame in a traceback." diff --git a/library/tracemalloc.po b/library/tracemalloc.po index 01a8d86790..8751fc27d9 100644 --- a/library/tracemalloc.po +++ b/library/tracemalloc.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/tracemalloc.rst:9 msgid "**Source code:** :source:`Lib/tracemalloc.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tracemalloc.py`" #: ../../library/tracemalloc.rst:13 msgid "" @@ -65,7 +65,7 @@ msgstr "" #: ../../library/tracemalloc.rst:34 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/tracemalloc.rst:37 msgid "Display the top 10" @@ -167,6 +167,9 @@ msgstr "" #: ../../library/tracemalloc.rst:280 ../../library/tracemalloc.rst:759 msgid "Output::" msgstr "" +"輸出:\n" +"\n" +"::" #: ../../library/tracemalloc.rst:285 msgid "" @@ -182,11 +185,11 @@ msgstr "" #: ../../library/tracemalloc.rst:295 msgid "API" -msgstr "" +msgstr "API" #: ../../library/tracemalloc.rst:298 msgid "Functions" -msgstr "" +msgstr "函式" #: ../../library/tracemalloc.rst:302 msgid "Clear traces of memory blocks allocated by Python." @@ -395,7 +398,7 @@ msgstr "" #: ../../library/tracemalloc.rst:455 msgid "Examples:" -msgstr "" +msgstr "範例:" #: ../../library/tracemalloc.rst:457 msgid "" @@ -563,15 +566,15 @@ msgstr "" #: ../../library/tracemalloc.rst:583 msgid "key_type" -msgstr "" +msgstr "key_type" #: ../../library/tracemalloc.rst:583 msgid "description" -msgstr "" +msgstr "描述" #: ../../library/tracemalloc.rst:585 msgid "``'filename'``" -msgstr "" +msgstr "``'filename'``" #: ../../library/tracemalloc.rst:585 msgid "filename" @@ -579,7 +582,7 @@ msgstr "" #: ../../library/tracemalloc.rst:586 msgid "``'lineno'``" -msgstr "" +msgstr "``'lineno'``" #: ../../library/tracemalloc.rst:586 msgid "filename and line number" @@ -587,7 +590,7 @@ msgstr "" #: ../../library/tracemalloc.rst:587 msgid "``'traceback'``" -msgstr "" +msgstr "``'traceback'``" #: ../../library/tracemalloc.rst:587 msgid "traceback" @@ -788,3 +791,6 @@ msgstr "" #: ../../library/tracemalloc.rst:753 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" diff --git a/library/tty.po b/library/tty.po index d07d568042..23372547cf 100644 --- a/library/tty.po +++ b/library/tty.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/tty.rst:11 msgid "**Source code:** :source:`Lib/tty.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/tty.py`" #: ../../library/tty.rst:15 msgid "" @@ -57,7 +57,7 @@ msgstr "" #: ../../library/tty.rst:39 msgid "Module :mod:`termios`" -msgstr "" +msgstr ":mod:`termios` 模組" #: ../../library/tty.rst:40 msgid "Low-level terminal control interface." diff --git a/library/turtle.po b/library/turtle.po index 677e798ebb..d393864b28 100644 --- a/library/turtle.po +++ b/library/turtle.po @@ -25,7 +25,7 @@ msgstr ":mod:`turtle` --- 龜圖學" #: ../../library/turtle.rst:10 msgid "**Source code:** :source:`Lib/turtle.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/turtle.py`" #: ../../library/turtle.rst:20 msgid "Introduction" @@ -175,67 +175,67 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`forward` | :func:`fd`" -msgstr "" +msgstr ":func:`forward` | :func:`fd`" #: ../../library/turtle.rst:0 msgid ":func:`backward` | :func:`bk` | :func:`back`" -msgstr "" +msgstr ":func:`backward` | :func:`bk` | :func:`back`" #: ../../library/turtle.rst:0 msgid ":func:`right` | :func:`rt`" -msgstr "" +msgstr ":func:`right` | :func:`rt`" #: ../../library/turtle.rst:0 msgid ":func:`left` | :func:`lt`" -msgstr "" +msgstr ":func:`left` | :func:`lt`" #: ../../library/turtle.rst:0 msgid ":func:`goto` | :func:`setpos` | :func:`setposition`" -msgstr "" +msgstr ":func:`goto` | :func:`setpos` | :func:`setposition`" #: ../../library/turtle.rst:0 msgid ":func:`setx`" -msgstr "" +msgstr ":func:`setx`" #: ../../library/turtle.rst:0 msgid ":func:`sety`" -msgstr "" +msgstr ":func:`sety`" #: ../../library/turtle.rst:0 msgid ":func:`setheading` | :func:`seth`" -msgstr "" +msgstr ":func:`setheading` | :func:`seth`" #: ../../library/turtle.rst:0 msgid ":func:`home`" -msgstr "" +msgstr ":func:`home`" #: ../../library/turtle.rst:0 ../../library/turtle.rst:2463 msgid ":func:`circle`" -msgstr "" +msgstr ":func:`circle`" #: ../../library/turtle.rst:0 msgid ":func:`dot`" -msgstr "" +msgstr ":func:`dot`" #: ../../library/turtle.rst:0 ../../library/turtle.rst:2441 msgid ":func:`stamp`" -msgstr "" +msgstr ":func:`stamp`" #: ../../library/turtle.rst:0 msgid ":func:`clearstamp`" -msgstr "" +msgstr ":func:`clearstamp`" #: ../../library/turtle.rst:0 msgid ":func:`clearstamps`" -msgstr "" +msgstr ":func:`clearstamps`" #: ../../library/turtle.rst:0 msgid ":func:`undo`" -msgstr "" +msgstr ":func:`undo`" #: ../../library/turtle.rst:0 msgid ":func:`speed`" -msgstr "" +msgstr ":func:`speed`" #: ../../library/turtle.rst:128 ../../library/turtle.rst:644 msgid "Tell Turtle's state" @@ -243,27 +243,27 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`position` | :func:`pos`" -msgstr "" +msgstr ":func:`position` | :func:`pos`" #: ../../library/turtle.rst:0 msgid ":func:`towards`" -msgstr "" +msgstr ":func:`towards`" #: ../../library/turtle.rst:0 msgid ":func:`xcor`" -msgstr "" +msgstr ":func:`xcor`" #: ../../library/turtle.rst:0 msgid ":func:`ycor`" -msgstr "" +msgstr ":func:`ycor`" #: ../../library/turtle.rst:0 msgid ":func:`heading`" -msgstr "" +msgstr ":func:`heading`" #: ../../library/turtle.rst:0 msgid ":func:`distance`" -msgstr "" +msgstr ":func:`distance`" #: ../../library/turtle.rst:132 msgid "Setting and measurement" @@ -271,11 +271,11 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`degrees`" -msgstr "" +msgstr ":func:`degrees`" #: ../../library/turtle.rst:0 msgid ":func:`radians`" -msgstr "" +msgstr ":func:`radians`" #: ../../library/turtle.rst:155 ../../library/turtle.rst:795 msgid "Pen control" @@ -287,23 +287,23 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`pendown` | :func:`pd` | :func:`down`" -msgstr "" +msgstr ":func:`pendown` | :func:`pd` | :func:`down`" #: ../../library/turtle.rst:0 msgid ":func:`penup` | :func:`pu` | :func:`up`" -msgstr "" +msgstr ":func:`penup` | :func:`pu` | :func:`up`" #: ../../library/turtle.rst:0 msgid ":func:`pensize` | :func:`width`" -msgstr "" +msgstr ":func:`pensize` | :func:`width`" #: ../../library/turtle.rst:0 msgid ":func:`pen`" -msgstr "" +msgstr ":func:`pen`" #: ../../library/turtle.rst:0 msgid ":func:`isdown`" -msgstr "" +msgstr ":func:`isdown`" #: ../../library/turtle.rst:145 ../../library/turtle.rst:890 msgid "Color control" @@ -311,15 +311,15 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`color`" -msgstr "" +msgstr ":func:`color`" #: ../../library/turtle.rst:0 msgid ":func:`pencolor`" -msgstr "" +msgstr ":func:`pencolor`" #: ../../library/turtle.rst:0 msgid ":func:`fillcolor`" -msgstr "" +msgstr ":func:`fillcolor`" #: ../../library/turtle.rst:150 ../../library/turtle.rst:1022 msgid "Filling" @@ -327,15 +327,15 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`filling`" -msgstr "" +msgstr ":func:`filling`" #: ../../library/turtle.rst:0 msgid ":func:`begin_fill`" -msgstr "" +msgstr ":func:`begin_fill`" #: ../../library/turtle.rst:0 msgid ":func:`end_fill`" -msgstr "" +msgstr ":func:`end_fill`" #: ../../library/turtle.rst:155 ../../library/turtle.rst:1069 msgid "More drawing control" @@ -343,15 +343,15 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`reset`" -msgstr "" +msgstr ":func:`reset`" #: ../../library/turtle.rst:0 msgid ":func:`clear`" -msgstr "" +msgstr ":func:`clear`" #: ../../library/turtle.rst:0 msgid ":func:`write`" -msgstr "" +msgstr ":func:`write`" #: ../../library/turtle.rst:172 ../../library/turtle.rst:1115 msgid "Turtle state" @@ -363,15 +363,15 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`showturtle` | :func:`st`" -msgstr "" +msgstr ":func:`showturtle` | :func:`st`" #: ../../library/turtle.rst:0 msgid ":func:`hideturtle` | :func:`ht`" -msgstr "" +msgstr ":func:`hideturtle` | :func:`ht`" #: ../../library/turtle.rst:0 msgid ":func:`isvisible`" -msgstr "" +msgstr ":func:`isvisible`" #: ../../library/turtle.rst:172 ../../library/turtle.rst:1157 msgid "Appearance" @@ -379,39 +379,39 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`shape`" -msgstr "" +msgstr ":func:`shape`" #: ../../library/turtle.rst:0 msgid ":func:`resizemode`" -msgstr "" +msgstr ":func:`resizemode`" #: ../../library/turtle.rst:0 msgid ":func:`shapesize` | :func:`turtlesize`" -msgstr "" +msgstr ":func:`shapesize` | :func:`turtlesize`" #: ../../library/turtle.rst:0 msgid ":func:`shearfactor`" -msgstr "" +msgstr ":func:`shearfactor`" #: ../../library/turtle.rst:0 msgid ":func:`settiltangle`" -msgstr "" +msgstr ":func:`settiltangle`" #: ../../library/turtle.rst:0 msgid ":func:`tiltangle`" -msgstr "" +msgstr ":func:`tiltangle`" #: ../../library/turtle.rst:0 msgid ":func:`tilt`" -msgstr "" +msgstr ":func:`tilt`" #: ../../library/turtle.rst:0 msgid ":func:`shapetransform`" -msgstr "" +msgstr ":func:`shapetransform`" #: ../../library/turtle.rst:0 msgid ":func:`get_shapepoly`" -msgstr "" +msgstr ":func:`get_shapepoly`" #: ../../library/turtle.rst:177 ../../library/turtle.rst:1362 msgid "Using events" @@ -419,15 +419,15 @@ msgstr "" #: ../../library/turtle.rst:0 ../../library/turtle.rst:2435 msgid ":func:`onclick`" -msgstr "" +msgstr ":func:`onclick`" #: ../../library/turtle.rst:0 msgid ":func:`onrelease`" -msgstr "" +msgstr ":func:`onrelease`" #: ../../library/turtle.rst:0 ../../library/turtle.rst:2418 msgid ":func:`ondrag`" -msgstr "" +msgstr ":func:`ondrag`" #: ../../library/turtle.rst:188 ../../library/turtle.rst:1436 msgid "Special Turtle methods" @@ -435,35 +435,35 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`begin_poly`" -msgstr "" +msgstr ":func:`begin_poly`" #: ../../library/turtle.rst:0 msgid ":func:`end_poly`" -msgstr "" +msgstr ":func:`end_poly`" #: ../../library/turtle.rst:0 msgid ":func:`get_poly`" -msgstr "" +msgstr ":func:`get_poly`" #: ../../library/turtle.rst:0 ../../library/turtle.rst:2454 msgid ":func:`clone`" -msgstr "" +msgstr ":func:`clone`" #: ../../library/turtle.rst:0 msgid ":func:`getturtle` | :func:`getpen`" -msgstr "" +msgstr ":func:`getturtle` | :func:`getpen`" #: ../../library/turtle.rst:0 msgid ":func:`getscreen`" -msgstr "" +msgstr ":func:`getscreen`" #: ../../library/turtle.rst:0 msgid ":func:`setundobuffer`" -msgstr "" +msgstr ":func:`setundobuffer`" #: ../../library/turtle.rst:0 msgid ":func:`undobufferentries`" -msgstr "" +msgstr ":func:`undobufferentries`" #: ../../library/turtle.rst:191 msgid "Methods of TurtleScreen/Screen" @@ -475,27 +475,27 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`bgcolor`" -msgstr "" +msgstr ":func:`bgcolor`" #: ../../library/turtle.rst:0 msgid ":func:`bgpic`" -msgstr "" +msgstr ":func:`bgpic`" #: ../../library/turtle.rst:0 msgid ":func:`clearscreen`" -msgstr "" +msgstr ":func:`clearscreen`" #: ../../library/turtle.rst:0 msgid ":func:`resetscreen`" -msgstr "" +msgstr ":func:`resetscreen`" #: ../../library/turtle.rst:0 msgid ":func:`screensize`" -msgstr "" +msgstr ":func:`screensize`" #: ../../library/turtle.rst:0 msgid ":func:`setworldcoordinates`" -msgstr "" +msgstr ":func:`setworldcoordinates`" #: ../../library/turtle.rst:204 ../../library/turtle.rst:1713 msgid "Animation control" @@ -503,15 +503,15 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`delay`" -msgstr "" +msgstr ":func:`delay`" #: ../../library/turtle.rst:0 msgid ":func:`tracer`" -msgstr "" +msgstr ":func:`tracer`" #: ../../library/turtle.rst:0 msgid ":func:`update`" -msgstr "" +msgstr ":func:`update`" #: ../../library/turtle.rst:212 ../../library/turtle.rst:1766 msgid "Using screen events" @@ -519,27 +519,27 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`listen`" -msgstr "" +msgstr ":func:`listen`" #: ../../library/turtle.rst:0 msgid ":func:`onkey` | :func:`onkeyrelease`" -msgstr "" +msgstr ":func:`onkey` | :func:`onkeyrelease`" #: ../../library/turtle.rst:0 msgid ":func:`onkeypress`" -msgstr "" +msgstr ":func:`onkeypress`" #: ../../library/turtle.rst:0 msgid ":func:`onclick` | :func:`onscreenclick`" -msgstr "" +msgstr ":func:`onclick` | :func:`onscreenclick`" #: ../../library/turtle.rst:0 msgid ":func:`ontimer`" -msgstr "" +msgstr ":func:`ontimer`" #: ../../library/turtle.rst:0 msgid ":func:`mainloop` | :func:`done`" -msgstr "" +msgstr ":func:`mainloop` | :func:`done`" #: ../../library/turtle.rst:222 ../../library/turtle.rst:1911 msgid "Settings and special methods" @@ -547,35 +547,35 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`mode`" -msgstr "" +msgstr ":func:`mode`" #: ../../library/turtle.rst:0 msgid ":func:`colormode`" -msgstr "" +msgstr ":func:`colormode`" #: ../../library/turtle.rst:0 msgid ":func:`getcanvas`" -msgstr "" +msgstr ":func:`getcanvas`" #: ../../library/turtle.rst:0 msgid ":func:`getshapes`" -msgstr "" +msgstr ":func:`getshapes`" #: ../../library/turtle.rst:0 msgid ":func:`register_shape` | :func:`addshape`" -msgstr "" +msgstr ":func:`register_shape` | :func:`addshape`" #: ../../library/turtle.rst:0 msgid ":func:`turtles`" -msgstr "" +msgstr ":func:`turtles`" #: ../../library/turtle.rst:0 msgid ":func:`window_height`" -msgstr "" +msgstr ":func:`window_height`" #: ../../library/turtle.rst:0 msgid ":func:`window_width`" -msgstr "" +msgstr ":func:`window_width`" #: ../../library/turtle.rst:226 ../../library/turtle.rst:1875 msgid "Input methods" @@ -583,11 +583,11 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`textinput`" -msgstr "" +msgstr ":func:`textinput`" #: ../../library/turtle.rst:0 msgid ":func:`numinput`" -msgstr "" +msgstr ":func:`numinput`" #: ../../library/turtle.rst:233 msgid "Methods specific to Screen" @@ -595,19 +595,19 @@ msgstr "" #: ../../library/turtle.rst:0 msgid ":func:`bye`" -msgstr "" +msgstr ":func:`bye`" #: ../../library/turtle.rst:0 msgid ":func:`exitonclick`" -msgstr "" +msgstr ":func:`exitonclick`" #: ../../library/turtle.rst:0 msgid ":func:`setup`" -msgstr "" +msgstr ":func:`setup`" #: ../../library/turtle.rst:0 msgid ":func:`title`" -msgstr "" +msgstr ":func:`title`" #: ../../library/turtle.rst:236 msgid "Methods of RawTurtle/Turtle and corresponding functions" @@ -621,7 +621,7 @@ msgstr "" #: ../../library/turtle.rst:0 msgid "Parameters" -msgstr "" +msgstr "參數" #: ../../library/turtle.rst:247 ../../library/turtle.rst:292 #: ../../library/turtle.rst:317 ../../library/turtle.rst:377 @@ -1011,7 +1011,7 @@ msgstr "" #: ../../library/turtle.rst:901 msgid "``pencolor()``" -msgstr "" +msgstr "``pencolor()``" #: ../../library/turtle.rst:899 msgid "" @@ -1021,7 +1021,7 @@ msgstr "" #: ../../library/turtle.rst:905 msgid "``pencolor(colorstring)``" -msgstr "" +msgstr "``pencolor(colorstring)``" #: ../../library/turtle.rst:904 msgid "" @@ -1031,7 +1031,7 @@ msgstr "" #: ../../library/turtle.rst:910 msgid "``pencolor((r, g, b))``" -msgstr "" +msgstr "``pencolor((r, g, b))``" #: ../../library/turtle.rst:908 msgid "" @@ -1042,7 +1042,7 @@ msgstr "" #: ../../library/turtle.rst:914 msgid "``pencolor(r, g, b)``" -msgstr "" +msgstr "``pencolor(r, g, b)``" #: ../../library/turtle.rst:913 msgid "" @@ -1062,7 +1062,7 @@ msgstr "" #: ../../library/turtle.rst:950 msgid "``fillcolor()``" -msgstr "" +msgstr "``fillcolor()``" #: ../../library/turtle.rst:948 msgid "" @@ -1073,7 +1073,7 @@ msgstr "" #: ../../library/turtle.rst:954 msgid "``fillcolor(colorstring)``" -msgstr "" +msgstr "``fillcolor(colorstring)``" #: ../../library/turtle.rst:953 msgid "" @@ -1083,7 +1083,7 @@ msgstr "" #: ../../library/turtle.rst:959 msgid "``fillcolor((r, g, b))``" -msgstr "" +msgstr "``fillcolor((r, g, b))``" #: ../../library/turtle.rst:957 msgid "" @@ -1094,7 +1094,7 @@ msgstr "" #: ../../library/turtle.rst:963 msgid "``fillcolor(r, g, b)``" -msgstr "" +msgstr "``fillcolor(r, g, b)``" #: ../../library/turtle.rst:962 msgid "" @@ -1119,7 +1119,7 @@ msgstr "" #: ../../library/turtle.rst:994 msgid "``color()``" -msgstr "" +msgstr "``color()``" #: ../../library/turtle.rst:992 msgid "" @@ -1130,7 +1130,7 @@ msgstr "" #: ../../library/turtle.rst:998 msgid "``color(colorstring)``, ``color((r,g,b))``, ``color(r,g,b)``" -msgstr "" +msgstr "``color(colorstring)``, ``color((r,g,b))``, ``color(r,g,b)``" #: ../../library/turtle.rst:997 msgid "" @@ -1142,6 +1142,7 @@ msgstr "" msgid "" "``color(colorstring1, colorstring2)``, ``color((r1,g1,b1), (r2,g2,b2))``" msgstr "" +"``color(colorstring1, colorstring2)``, ``color((r1,g1,b1), (r2,g2,b2))``" #: ../../library/turtle.rst:1001 msgid "" @@ -1478,7 +1479,7 @@ msgstr "" #: ../../library/turtle.rst:1550 msgid "For example:" -msgstr "" +msgstr "舉例來說:" #: ../../library/turtle.rst:1561 msgid "Now add the Shape to the Screen's shapelist and use it:" @@ -1971,7 +1972,7 @@ msgstr "" #: ../../library/turtle.rst:2153 msgid "*type_*" -msgstr "" +msgstr "*type_*" #: ../../library/turtle.rst:2153 msgid "*data*" @@ -2017,11 +2018,11 @@ msgstr "" #: ../../library/turtle.rst:2167 msgid "Example:" -msgstr "" +msgstr "例如:" #: ../../library/turtle.rst:2177 msgid "See :ref:`compoundshapes`." -msgstr "" +msgstr "請見\\ :ref:`compoundshapes`\\ 。" #: ../../library/turtle.rst:2182 msgid "" @@ -2372,7 +2373,7 @@ msgstr "" #: ../../library/turtle.rst:2427 msgid "minimal_hanoi" -msgstr "" +msgstr "minimal_hanoi" #: ../../library/turtle.rst:2427 msgid "Towers of Hanoi" @@ -2425,7 +2426,7 @@ msgstr "" #: ../../library/turtle.rst:2444 msgid "planet_and_moon" -msgstr "" +msgstr "planet_and_moon" #: ../../library/turtle.rst:2444 msgid "simulation of gravitational system" @@ -2437,7 +2438,7 @@ msgstr "" #: ../../library/turtle.rst:2447 msgid "round_dance" -msgstr "" +msgstr "round_dance" #: ../../library/turtle.rst:2447 msgid "dancing turtles rotating pairwise in opposite direction" @@ -2449,7 +2450,7 @@ msgstr "" #: ../../library/turtle.rst:2451 msgid "sorting_animate" -msgstr "" +msgstr "sorting_animate" #: ../../library/turtle.rst:2451 msgid "visual demonstration of different sorting methods" @@ -2469,7 +2470,7 @@ msgstr "" #: ../../library/turtle.rst:2457 msgid "two_canvases" -msgstr "" +msgstr "two_canvases" #: ../../library/turtle.rst:2457 msgid "simple design" @@ -2489,7 +2490,7 @@ msgstr "" #: ../../library/turtle.rst:2460 msgid ":func:`clone`, :func:`undo`" -msgstr "" +msgstr ":func:`clone`, :func:`undo`" #: ../../library/turtle.rst:2463 msgid "yinyang" diff --git a/library/types.po b/library/types.po index cc0660e33d..70d178b74c 100644 --- a/library/types.po +++ b/library/types.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/types.rst:7 msgid "**Source code:** :source:`Lib/types.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/types.py`" #: ../../library/types.rst:11 msgid "" @@ -101,7 +101,7 @@ msgstr "" #: ../../library/types.rst:67 msgid ":ref:`metaclasses`" -msgstr "" +msgstr ":ref:`metaclasses`" #: ../../library/types.rst:67 msgid "Full details of the class creation process supported by these functions" diff --git a/library/typing.po b/library/typing.po index 06d6ea167d..de9cbcc4ad 100644 --- a/library/typing.po +++ b/library/typing.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/typing.rst:10 msgid "**Source code:** :source:`Lib/typing.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/typing.py`" #: ../../library/typing.rst:14 msgid "" @@ -277,6 +277,9 @@ msgstr "" #: ../../library/typing.rst:2089 msgid "For example::" msgstr "" +"舉例來說:\n" +"\n" +"::" #: ../../library/typing.rst:210 msgid "" @@ -523,7 +526,7 @@ msgstr "" #: ../../library/typing.rst:538 msgid "Module contents" -msgstr "" +msgstr "模組內容" #: ../../library/typing.rst:540 msgid "The module defines the following classes, functions and decorators." @@ -768,7 +771,7 @@ msgstr "" #: ../../library/typing.rst:772 msgid ":class:`ParamSpec` and :class:`Callable`." -msgstr "" +msgstr ":class:`ParamSpec` 和 :class:`Callable`\\ 。" #: ../../library/typing.rst:777 msgid "" @@ -1061,6 +1064,9 @@ msgstr "" #: ../../library/typing.rst:1296 msgid "Usage::" msgstr "" +"用法:\n" +"\n" +"::" #: ../../library/typing.rst:1085 msgid "" @@ -1168,7 +1174,7 @@ msgstr "" #: ../../library/typing.rst:1192 msgid ":class:`Callable` and :class:`Concatenate`." -msgstr "" +msgstr ":class:`Callable` 和 :class:`Concatenate`\\ 。" #: ../../library/typing.rst:1197 msgid "" @@ -1259,6 +1265,9 @@ msgstr "" #: ../../library/typing.rst:1302 msgid "This is equivalent to::" msgstr "" +"這等價於:\n" +"\n" +"::" #: ../../library/typing.rst:1306 msgid "" @@ -1900,7 +1909,7 @@ msgstr "" #: ../../library/typing.rst:1925 msgid "Functions and decorators" -msgstr "" +msgstr "函式與裝飾器" #: ../../library/typing.rst:1929 msgid "Cast a value to a type." @@ -2054,7 +2063,7 @@ msgstr "" #: ../../library/typing.rst:2115 msgid "Constant" -msgstr "" +msgstr "常數" #: ../../library/typing.rst:2119 msgid "" diff --git a/library/undoc.po b/library/undoc.po index 53c2248112..b893860941 100644 --- a/library/undoc.po +++ b/library/undoc.po @@ -48,7 +48,7 @@ msgstr "" #: ../../library/undoc.rst:23 msgid ":mod:`ntpath`" -msgstr "" +msgstr ":mod:`ntpath`" #: ../../library/undoc.rst:23 msgid "--- Implementation of :mod:`os.path` on Win32 and Win64 platforms." @@ -56,7 +56,7 @@ msgstr "" #: ../../library/undoc.rst:25 msgid ":mod:`posixpath`" -msgstr "" +msgstr ":mod:`posixpath`" #: ../../library/undoc.rst:26 msgid "--- Implementation of :mod:`os.path` on POSIX." diff --git a/library/unicodedata.po b/library/unicodedata.po index a7402a283b..2e82341074 100644 --- a/library/unicodedata.po +++ b/library/unicodedata.po @@ -181,7 +181,7 @@ msgstr "" #: ../../library/unicodedata.rst:157 msgid "Examples:" -msgstr "" +msgstr "範例:" #: ../../library/unicodedata.rst:177 msgid "Footnotes" diff --git a/library/unittest.mock.po b/library/unittest.mock.po index c02415b9fd..c64a178f10 100644 --- a/library/unittest.mock.po +++ b/library/unittest.mock.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/unittest.mock.rst:13 msgid "**Source code:** :source:`Lib/unittest/mock.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/unittest/mock.py`" #: ../../library/unittest.mock.rst:17 msgid "" @@ -1156,7 +1156,7 @@ msgstr "" #: ../../library/unittest.mock.rst:1536 msgid "patch.object" -msgstr "" +msgstr "patch.object" #: ../../library/unittest.mock.rst:1540 msgid "" @@ -1201,7 +1201,7 @@ msgstr "" #: ../../library/unittest.mock.rst:1572 msgid "patch.dict" -msgstr "" +msgstr "patch.dict" #: ../../library/unittest.mock.rst:1576 msgid "" @@ -1289,7 +1289,7 @@ msgstr "" #: ../../library/unittest.mock.rst:1685 msgid "patch.multiple" -msgstr "" +msgstr "patch.multiple" #: ../../library/unittest.mock.rst:1689 msgid "" @@ -1409,7 +1409,7 @@ msgstr "" #: ../../library/unittest.mock.rst:1840 msgid "TEST_PREFIX" -msgstr "" +msgstr "TEST_PREFIX" #: ../../library/unittest.mock.rst:1842 msgid "" @@ -1566,15 +1566,15 @@ msgstr "" #: ../../library/unittest.mock.rst:2012 msgid "``__hash__``, ``__sizeof__``, ``__repr__`` and ``__str__``" -msgstr "" +msgstr "``__hash__``\\ 、\\ ``__sizeof__``\\ 、\\ ``__repr__`` 和 ``__str__``" #: ../../library/unittest.mock.rst:2013 msgid "``__dir__``, ``__format__`` and ``__subclasses__``" -msgstr "" +msgstr "``__dir__``\\ 、\\ ``__format__`` 和 ``__subclasses__``" #: ../../library/unittest.mock.rst:2014 msgid "``__round__``, ``__floor__``, ``__trunc__`` and ``__ceil__``" -msgstr "" +msgstr "``__round__``\\ 、\\ ``__floor__``\\ 、\\ ``__trunc__`` 和 ``__ceil__``" #: ../../library/unittest.mock.rst:2015 msgid "" @@ -1650,12 +1650,14 @@ msgstr "" #: ../../library/unittest.mock.rst:2044 msgid "``__getattr__``, ``__setattr__``, ``__init__`` and ``__new__``" -msgstr "" +msgstr "``__getattr__``\\ 、\\ ``__setattr__``\\ 、\\ ``__init__`` 和 ``__new__``" #: ../../library/unittest.mock.rst:2045 msgid "" "``__prepare__``, ``__instancecheck__``, ``__subclasscheck__``, ``__del__``" msgstr "" +"``__prepare__``\\ 、\\ ``__instancecheck__``\\ 、\\ ``__subclasscheck__``" +"\\ 、\\ ``__del__``" #: ../../library/unittest.mock.rst:2050 msgid "Magic Mock" @@ -1784,7 +1786,7 @@ msgstr "" #: ../../library/unittest.mock.rst:2111 msgid "For example:" -msgstr "" +msgstr "舉例來說:" #: ../../library/unittest.mock.rst:2123 msgid "" @@ -1821,23 +1823,23 @@ msgstr "" #: ../../library/unittest.mock.rst:2161 msgid "``__subclasses__``" -msgstr "" +msgstr "``__subclasses__``" #: ../../library/unittest.mock.rst:2162 msgid "``__dir__``" -msgstr "" +msgstr "``__dir__``" #: ../../library/unittest.mock.rst:2163 msgid "``__format__``" -msgstr "" +msgstr "``__format__``" #: ../../library/unittest.mock.rst:2164 msgid "``__get__``, ``__set__`` and ``__delete__``" -msgstr "" +msgstr "``__get__``\\ 、\\ ``__set__`` 和 ``__delete__``" #: ../../library/unittest.mock.rst:2165 msgid "``__reversed__`` and ``__missing__``" -msgstr "" +msgstr "``__reversed__`` 和 ``__missing__``" #: ../../library/unittest.mock.rst:2166 msgid "" @@ -1847,7 +1849,7 @@ msgstr "" #: ../../library/unittest.mock.rst:2168 msgid "``__getformat__`` and ``__setformat__``" -msgstr "" +msgstr "``__getformat__`` 和 ``__setformat__``" #: ../../library/unittest.mock.rst:2172 msgid "" @@ -1905,7 +1907,7 @@ msgstr "" #: ../../library/unittest.mock.rst:2216 msgid "DEFAULT" -msgstr "" +msgstr "DEFAULT" #: ../../library/unittest.mock.rst:2221 msgid "" @@ -1975,7 +1977,7 @@ msgstr "" #: ../../library/unittest.mock.rst:2315 msgid "create_autospec" -msgstr "" +msgstr "create_autospec" #: ../../library/unittest.mock.rst:2319 msgid "" @@ -2023,7 +2025,7 @@ msgstr "" #: ../../library/unittest.mock.rst:2348 msgid "ANY" -msgstr "" +msgstr "ANY" #: ../../library/unittest.mock.rst:2352 msgid "" @@ -2048,7 +2050,7 @@ msgstr "" #: ../../library/unittest.mock.rst:2379 msgid "FILTER_DIR" -msgstr "" +msgstr "FILTER_DIR" #: ../../library/unittest.mock.rst:2383 msgid "" @@ -2086,7 +2088,7 @@ msgstr "" #: ../../library/unittest.mock.rst:2443 msgid "mock_open" -msgstr "" +msgstr "mock_open" #: ../../library/unittest.mock.rst:2447 msgid "" diff --git a/library/unittest.po b/library/unittest.po index 5f4c1bcb17..8708a404c4 100644 --- a/library/unittest.po +++ b/library/unittest.po @@ -27,7 +27,7 @@ msgstr ":mod:`unittest` --- 單元測試框架" #: ../../library/unittest.rst:12 msgid "**Source code:** :source:`Lib/unittest/__init__.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/unittest/__init__.py`" #: ../../library/unittest.rst:16 msgid "" @@ -827,10 +827,16 @@ msgstr "" #: ../../library/unittest.rst:627 msgid "For example, the following test::" msgstr "" +"舉例來說,以下測試:\n" +"\n" +"::" #: ../../library/unittest.rst:639 msgid "will produce the following output::" msgstr "" +"會有以下輸出:\n" +"\n" +"::" #: ../../library/unittest.rst:665 msgid "" @@ -999,43 +1005,43 @@ msgstr "" #: ../../library/unittest.rst:821 msgid ":meth:`assertEqual(a, b) `" -msgstr "" +msgstr ":meth:`assertEqual(a, b) `" #: ../../library/unittest.rst:821 msgid "``a == b``" -msgstr "" +msgstr "``a == b``" #: ../../library/unittest.rst:824 msgid ":meth:`assertNotEqual(a, b) `" -msgstr "" +msgstr ":meth:`assertNotEqual(a, b) `" #: ../../library/unittest.rst:824 msgid "``a != b``" -msgstr "" +msgstr "``a != b``" #: ../../library/unittest.rst:827 msgid ":meth:`assertTrue(x) `" -msgstr "" +msgstr ":meth:`assertTrue(x) `" #: ../../library/unittest.rst:827 msgid "``bool(x) is True``" -msgstr "" +msgstr "``bool(x) is True``" #: ../../library/unittest.rst:830 msgid ":meth:`assertFalse(x) `" -msgstr "" +msgstr ":meth:`assertFalse(x) `" #: ../../library/unittest.rst:830 msgid "``bool(x) is False``" -msgstr "" +msgstr "``bool(x) is False``" #: ../../library/unittest.rst:833 msgid ":meth:`assertIs(a, b) `" -msgstr "" +msgstr ":meth:`assertIs(a, b) `" #: ../../library/unittest.rst:833 msgid "``a is b``" -msgstr "" +msgstr "``a is b``" #: ../../library/unittest.rst:833 ../../library/unittest.rst:836 #: ../../library/unittest.rst:839 ../../library/unittest.rst:842 @@ -1051,51 +1057,51 @@ msgstr "3.1" #: ../../library/unittest.rst:836 msgid ":meth:`assertIsNot(a, b) `" -msgstr "" +msgstr ":meth:`assertIsNot(a, b) `" #: ../../library/unittest.rst:836 msgid "``a is not b``" -msgstr "" +msgstr "``a is not b``" #: ../../library/unittest.rst:839 msgid ":meth:`assertIsNone(x) `" -msgstr "" +msgstr ":meth:`assertIsNone(x) `" #: ../../library/unittest.rst:839 msgid "``x is None``" -msgstr "" +msgstr "``x is None``" #: ../../library/unittest.rst:842 msgid ":meth:`assertIsNotNone(x) `" -msgstr "" +msgstr ":meth:`assertIsNotNone(x) `" #: ../../library/unittest.rst:842 msgid "``x is not None``" -msgstr "" +msgstr "``x is not None``" #: ../../library/unittest.rst:845 msgid ":meth:`assertIn(a, b) `" -msgstr "" +msgstr ":meth:`assertIn(a, b) `" #: ../../library/unittest.rst:845 msgid "``a in b``" -msgstr "" +msgstr "``a in b``" #: ../../library/unittest.rst:848 msgid ":meth:`assertNotIn(a, b) `" -msgstr "" +msgstr ":meth:`assertNotIn(a, b) `" #: ../../library/unittest.rst:848 msgid "``a not in b``" -msgstr "" +msgstr "``a not in b``" #: ../../library/unittest.rst:851 msgid ":meth:`assertIsInstance(a, b) `" -msgstr "" +msgstr ":meth:`assertIsInstance(a, b) `" #: ../../library/unittest.rst:851 msgid "``isinstance(a, b)``" -msgstr "" +msgstr "``isinstance(a, b)``" #: ../../library/unittest.rst:851 ../../library/unittest.rst:854 #: ../../library/unittest.rst:948 ../../library/unittest.rst:951 @@ -1105,11 +1111,11 @@ msgstr "3.2" #: ../../library/unittest.rst:854 msgid ":meth:`assertNotIsInstance(a, b) `" -msgstr "" +msgstr ":meth:`assertNotIsInstance(a, b) `" #: ../../library/unittest.rst:854 msgid "``not isinstance(a, b)``" -msgstr "" +msgstr "``not isinstance(a, b)``" #: ../../library/unittest.rst:858 msgid "" @@ -1192,7 +1198,7 @@ msgstr "" #: ../../library/unittest.rst:942 msgid ":meth:`assertRaises(exc, fun, *args, **kwds) `" -msgstr "" +msgstr ":meth:`assertRaises(exc, fun, *args, **kwds) `" #: ../../library/unittest.rst:942 msgid "``fun(*args, **kwds)`` raises *exc*" @@ -1210,7 +1216,7 @@ msgstr "" #: ../../library/unittest.rst:948 msgid ":meth:`assertWarns(warn, fun, *args, **kwds) `" -msgstr "" +msgstr ":meth:`assertWarns(warn, fun, *args, **kwds) `" #: ../../library/unittest.rst:948 msgid "``fun(*args, **kwds)`` raises *warn*" @@ -1228,7 +1234,7 @@ msgstr "" #: ../../library/unittest.rst:954 msgid ":meth:`assertLogs(logger, level) `" -msgstr "" +msgstr ":meth:`assertLogs(logger, level) `" #: ../../library/unittest.rst:954 msgid "The ``with`` block logs on *logger* with minimum *level*" @@ -1240,7 +1246,7 @@ msgstr "3.4" #: ../../library/unittest.rst:957 msgid ":meth:`assertNoLogs(logger, level) `" -msgstr "" +msgstr ":meth:`assertNoLogs(logger, level) `" #: ../../library/unittest.rst:957 msgid "The ``with`` block does not log on" @@ -1411,6 +1417,9 @@ msgstr "" #: ../../library/unittest.rst:1122 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/unittest.rst:1134 msgid "" @@ -1437,71 +1446,71 @@ msgstr "" #: ../../library/unittest.rst:1156 msgid ":meth:`assertAlmostEqual(a, b) `" -msgstr "" +msgstr ":meth:`assertAlmostEqual(a, b) `" #: ../../library/unittest.rst:1156 msgid "``round(a-b, 7) == 0``" -msgstr "" +msgstr "``round(a-b, 7) == 0``" #: ../../library/unittest.rst:1159 msgid ":meth:`assertNotAlmostEqual(a, b) `" -msgstr "" +msgstr ":meth:`assertNotAlmostEqual(a, b) `" #: ../../library/unittest.rst:1159 msgid "``round(a-b, 7) != 0``" -msgstr "" +msgstr "``round(a-b, 7) != 0``" #: ../../library/unittest.rst:1162 msgid ":meth:`assertGreater(a, b) `" -msgstr "" +msgstr ":meth:`assertGreater(a, b) `" #: ../../library/unittest.rst:1162 msgid "``a > b``" -msgstr "" +msgstr "``a > b``" #: ../../library/unittest.rst:1165 msgid ":meth:`assertGreaterEqual(a, b) `" -msgstr "" +msgstr ":meth:`assertGreaterEqual(a, b) `" #: ../../library/unittest.rst:1165 msgid "``a >= b``" -msgstr "" +msgstr "``a >= b``" #: ../../library/unittest.rst:1168 msgid ":meth:`assertLess(a, b) `" -msgstr "" +msgstr ":meth:`assertLess(a, b) `" #: ../../library/unittest.rst:1168 msgid "``a < b``" -msgstr "" +msgstr "``a < b``" #: ../../library/unittest.rst:1171 msgid ":meth:`assertLessEqual(a, b) `" -msgstr "" +msgstr ":meth:`assertLessEqual(a, b) `" #: ../../library/unittest.rst:1171 msgid "``a <= b``" -msgstr "" +msgstr "``a <= b``" #: ../../library/unittest.rst:1174 msgid ":meth:`assertRegex(s, r) `" -msgstr "" +msgstr ":meth:`assertRegex(s, r) `" #: ../../library/unittest.rst:1174 msgid "``r.search(s)``" -msgstr "" +msgstr "``r.search(s)``" #: ../../library/unittest.rst:1177 msgid ":meth:`assertNotRegex(s, r) `" -msgstr "" +msgstr ":meth:`assertNotRegex(s, r) `" #: ../../library/unittest.rst:1177 msgid "``not r.search(s)``" -msgstr "" +msgstr "``not r.search(s)``" #: ../../library/unittest.rst:1180 msgid ":meth:`assertCountEqual(a, b) `" -msgstr "" +msgstr ":meth:`assertCountEqual(a, b) `" #: ../../library/unittest.rst:1180 msgid "" @@ -1562,7 +1571,7 @@ msgstr "" #: ../../library/unittest.rst:1234 msgid ":meth:`.assertNotRegex`." -msgstr "" +msgstr ":meth:`.assertNotRegex`\\ 。" #: ../../library/unittest.rst:1236 msgid "" @@ -1617,7 +1626,7 @@ msgstr "" #: ../../library/unittest.rst:1283 msgid ":meth:`assertMultiLineEqual(a, b) `" -msgstr "" +msgstr ":meth:`assertMultiLineEqual(a, b) `" #: ../../library/unittest.rst:1283 msgid "strings" @@ -1625,7 +1634,7 @@ msgstr "" #: ../../library/unittest.rst:1286 msgid ":meth:`assertSequenceEqual(a, b) `" -msgstr "" +msgstr ":meth:`assertSequenceEqual(a, b) `" #: ../../library/unittest.rst:1286 msgid "sequences" @@ -1633,7 +1642,7 @@ msgstr "" #: ../../library/unittest.rst:1289 msgid ":meth:`assertListEqual(a, b) `" -msgstr "" +msgstr ":meth:`assertListEqual(a, b) `" #: ../../library/unittest.rst:1289 msgid "lists" @@ -1641,7 +1650,7 @@ msgstr "" #: ../../library/unittest.rst:1292 msgid ":meth:`assertTupleEqual(a, b) `" -msgstr "" +msgstr ":meth:`assertTupleEqual(a, b) `" #: ../../library/unittest.rst:1292 msgid "tuples" @@ -1649,7 +1658,7 @@ msgstr "" #: ../../library/unittest.rst:1295 msgid ":meth:`assertSetEqual(a, b) `" -msgstr "" +msgstr ":meth:`assertSetEqual(a, b) `" #: ../../library/unittest.rst:1295 msgid "sets or frozensets" @@ -1657,7 +1666,7 @@ msgstr "" #: ../../library/unittest.rst:1298 msgid ":meth:`assertDictEqual(a, b) `" -msgstr "" +msgstr ":meth:`assertDictEqual(a, b) `" #: ../../library/unittest.rst:1298 msgid "dicts" @@ -1965,103 +1974,103 @@ msgstr "" #: ../../library/unittest.rst:1616 msgid ":meth:`.assertEqual`" -msgstr "" +msgstr ":meth:`.assertEqual`" #: ../../library/unittest.rst:1616 msgid "failUnlessEqual" -msgstr "" +msgstr "failUnlessEqual" #: ../../library/unittest.rst:1616 msgid "assertEquals" -msgstr "" +msgstr "assertEquals" #: ../../library/unittest.rst:1617 msgid ":meth:`.assertNotEqual`" -msgstr "" +msgstr ":meth:`.assertNotEqual`" #: ../../library/unittest.rst:1617 msgid "failIfEqual" -msgstr "" +msgstr "failIfEqual" #: ../../library/unittest.rst:1617 msgid "assertNotEquals" -msgstr "" +msgstr "assertNotEquals" #: ../../library/unittest.rst:1618 msgid ":meth:`.assertTrue`" -msgstr "" +msgstr ":meth:`.assertTrue`" #: ../../library/unittest.rst:1618 msgid "failUnless" -msgstr "" +msgstr "failUnless" #: ../../library/unittest.rst:1618 msgid "assert\\_" -msgstr "" +msgstr "assert\\_" #: ../../library/unittest.rst:1619 msgid ":meth:`.assertFalse`" -msgstr "" +msgstr ":meth:`.assertFalse`" #: ../../library/unittest.rst:1619 msgid "failIf" -msgstr "" +msgstr "failIf" #: ../../library/unittest.rst:1620 msgid ":meth:`.assertRaises`" -msgstr "" +msgstr ":meth:`.assertRaises`" #: ../../library/unittest.rst:1620 msgid "failUnlessRaises" -msgstr "" +msgstr "failUnlessRaises" #: ../../library/unittest.rst:1621 msgid ":meth:`.assertAlmostEqual`" -msgstr "" +msgstr ":meth:`.assertAlmostEqual`" #: ../../library/unittest.rst:1621 msgid "failUnlessAlmostEqual" -msgstr "" +msgstr "failUnlessAlmostEqual" #: ../../library/unittest.rst:1621 msgid "assertAlmostEquals" -msgstr "" +msgstr "assertAlmostEquals" #: ../../library/unittest.rst:1622 msgid ":meth:`.assertNotAlmostEqual`" -msgstr "" +msgstr ":meth:`.assertNotAlmostEqual`" #: ../../library/unittest.rst:1622 msgid "failIfAlmostEqual" -msgstr "" +msgstr "failIfAlmostEqual" #: ../../library/unittest.rst:1622 msgid "assertNotAlmostEquals" -msgstr "" +msgstr "assertNotAlmostEquals" #: ../../library/unittest.rst:1623 msgid ":meth:`.assertRegex`" -msgstr "" +msgstr ":meth:`.assertRegex`" #: ../../library/unittest.rst:1623 msgid "assertRegexpMatches" -msgstr "" +msgstr "assertRegexpMatches" #: ../../library/unittest.rst:1624 msgid ":meth:`.assertNotRegex`" -msgstr "" +msgstr ":meth:`.assertNotRegex`" #: ../../library/unittest.rst:1624 msgid "assertNotRegexpMatches" -msgstr "" +msgstr "assertNotRegexpMatches" #: ../../library/unittest.rst:1625 msgid ":meth:`.assertRaisesRegex`" -msgstr "" +msgstr ":meth:`.assertRaisesRegex`" #: ../../library/unittest.rst:1625 msgid "assertRaisesRegexp" -msgstr "" +msgstr "assertRaisesRegexp" #: ../../library/unittest.rst:1628 msgid "The fail* aliases listed in the second column have been deprecated." diff --git a/library/urllib.error.po b/library/urllib.error.po index 3547052003..c49295c932 100644 --- a/library/urllib.error.po +++ b/library/urllib.error.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/urllib.error.rst:10 msgid "**Source code:** :source:`Lib/urllib/error.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/urllib/error.py`" #: ../../library/urllib.error.rst:14 msgid "" diff --git a/library/urllib.parse.po b/library/urllib.parse.po index ac0631ac69..36e99496d9 100644 --- a/library/urllib.parse.po +++ b/library/urllib.parse.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/urllib.parse.rst:7 msgid "**Source code:** :source:`Lib/urllib/parse.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/urllib/parse.py`" #: ../../library/urllib.parse.rst:18 msgid "" @@ -104,7 +104,7 @@ msgstr "" #: ../../library/urllib.parse.rst:96 ../../library/urllib.parse.rst:281 #: ../../library/urllib.parse.rst:385 msgid "Attribute" -msgstr "" +msgstr "屬性" #: ../../library/urllib.parse.rst:96 ../../library/urllib.parse.rst:281 #: ../../library/urllib.parse.rst:385 @@ -123,7 +123,7 @@ msgstr "" #: ../../library/urllib.parse.rst:98 ../../library/urllib.parse.rst:283 msgid ":attr:`scheme`" -msgstr "" +msgstr ":attr:`scheme`" #: ../../library/urllib.parse.rst:98 ../../library/urllib.parse.rst:283 #: ../../library/urllib.parse.rst:387 @@ -140,7 +140,7 @@ msgstr "" #: ../../library/urllib.parse.rst:100 ../../library/urllib.parse.rst:285 msgid ":attr:`netloc`" -msgstr "" +msgstr ":attr:`netloc`" #: ../../library/urllib.parse.rst:100 ../../library/urllib.parse.rst:285 #: ../../library/urllib.parse.rst:389 @@ -162,7 +162,7 @@ msgstr "" #: ../../library/urllib.parse.rst:102 ../../library/urllib.parse.rst:287 msgid ":attr:`path`" -msgstr "" +msgstr ":attr:`path`" #: ../../library/urllib.parse.rst:102 ../../library/urllib.parse.rst:287 msgid "2" @@ -174,11 +174,11 @@ msgstr "" #: ../../library/urllib.parse.rst:104 msgid ":attr:`params`" -msgstr "" +msgstr ":attr:`params`" #: ../../library/urllib.parse.rst:104 ../../library/urllib.parse.rst:289 msgid "3" -msgstr "" +msgstr "3" #: ../../library/urllib.parse.rst:104 msgid "Parameters for last path element" @@ -186,7 +186,7 @@ msgstr "" #: ../../library/urllib.parse.rst:107 ../../library/urllib.parse.rst:289 msgid ":attr:`query`" -msgstr "" +msgstr ":attr:`query`" #: ../../library/urllib.parse.rst:107 ../../library/urllib.parse.rst:291 msgid "4" @@ -199,11 +199,11 @@ msgstr "" #: ../../library/urllib.parse.rst:109 ../../library/urllib.parse.rst:291 #: ../../library/urllib.parse.rst:389 msgid ":attr:`fragment`" -msgstr "" +msgstr ":attr:`fragment`" #: ../../library/urllib.parse.rst:109 msgid "5" -msgstr "" +msgstr "5" #: ../../library/urllib.parse.rst:109 ../../library/urllib.parse.rst:291 #: ../../library/urllib.parse.rst:389 @@ -212,7 +212,7 @@ msgstr "" #: ../../library/urllib.parse.rst:111 ../../library/urllib.parse.rst:293 msgid ":attr:`username`" -msgstr "" +msgstr ":attr:`username`" #: ../../library/urllib.parse.rst:111 ../../library/urllib.parse.rst:293 msgid "User name" @@ -223,11 +223,11 @@ msgstr "" #: ../../library/urllib.parse.rst:293 ../../library/urllib.parse.rst:295 #: ../../library/urllib.parse.rst:297 ../../library/urllib.parse.rst:299 msgid ":const:`None`" -msgstr "" +msgstr ":const:`None`" #: ../../library/urllib.parse.rst:113 ../../library/urllib.parse.rst:295 msgid ":attr:`password`" -msgstr "" +msgstr ":attr:`password`" #: ../../library/urllib.parse.rst:113 ../../library/urllib.parse.rst:295 msgid "Password" @@ -235,7 +235,7 @@ msgstr "" #: ../../library/urllib.parse.rst:115 ../../library/urllib.parse.rst:297 msgid ":attr:`hostname`" -msgstr "" +msgstr ":attr:`hostname`" #: ../../library/urllib.parse.rst:115 ../../library/urllib.parse.rst:297 msgid "Host name (lower case)" @@ -243,7 +243,7 @@ msgstr "" #: ../../library/urllib.parse.rst:117 ../../library/urllib.parse.rst:299 msgid ":attr:`port`" -msgstr "" +msgstr ":attr:`port`" #: ../../library/urllib.parse.rst:117 ../../library/urllib.parse.rst:299 msgid "Port number as integer, if present" @@ -465,7 +465,7 @@ msgstr "" #: ../../library/urllib.parse.rst:387 msgid ":attr:`url`" -msgstr "" +msgstr ":attr:`url`" #: ../../library/urllib.parse.rst:387 msgid "URL with no fragment" diff --git a/library/urllib.robotparser.po b/library/urllib.robotparser.po index 03d8ef66dc..ebc827539d 100644 --- a/library/urllib.robotparser.po +++ b/library/urllib.robotparser.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/urllib.robotparser.rst:10 msgid "**Source code:** :source:`Lib/urllib/robotparser.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/urllib/robotparser.py`" #: ../../library/urllib.robotparser.rst:20 msgid "" diff --git a/library/uu.po b/library/uu.po index 3cacff16d1..fc1dadff8e 100644 --- a/library/uu.po +++ b/library/uu.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/uu.rst:9 msgid "**Source code:** :source:`Lib/uu.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/uu.py`" #: ../../library/uu.rst:13 msgid "" @@ -85,7 +85,7 @@ msgstr "" #: ../../library/uu.rst:65 msgid "Module :mod:`binascii`" -msgstr "" +msgstr ":mod:`binascii` 模組" #: ../../library/uu.rst:66 msgid "" diff --git a/library/uuid.po b/library/uuid.po index 18cf2db5bc..e40d6db546 100644 --- a/library/uuid.po +++ b/library/uuid.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/uuid.rst:9 msgid "**Source code:** :source:`Lib/uuid.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/uuid.py`" #: ../../library/uuid.rst:13 msgid "" @@ -123,15 +123,15 @@ msgstr "" #: ../../library/uuid.rst:99 msgid "Field" -msgstr "" +msgstr "欄位" #: ../../library/uuid.rst:99 msgid "Meaning" -msgstr "" +msgstr "意義" #: ../../library/uuid.rst:101 msgid ":attr:`time_low`" -msgstr "" +msgstr ":attr:`time_low`" #: ../../library/uuid.rst:101 msgid "the first 32 bits of the UUID" @@ -139,7 +139,7 @@ msgstr "" #: ../../library/uuid.rst:103 msgid ":attr:`time_mid`" -msgstr "" +msgstr ":attr:`time_mid`" #: ../../library/uuid.rst:103 ../../library/uuid.rst:105 msgid "the next 16 bits of the UUID" @@ -147,11 +147,11 @@ msgstr "" #: ../../library/uuid.rst:105 msgid ":attr:`time_hi_version`" -msgstr "" +msgstr ":attr:`time_hi_version`" #: ../../library/uuid.rst:107 msgid ":attr:`clock_seq_hi_variant`" -msgstr "" +msgstr ":attr:`clock_seq_hi_variant`" #: ../../library/uuid.rst:107 ../../library/uuid.rst:109 msgid "the next 8 bits of the UUID" @@ -159,11 +159,11 @@ msgstr "" #: ../../library/uuid.rst:109 msgid ":attr:`clock_seq_low`" -msgstr "" +msgstr ":attr:`clock_seq_low`" #: ../../library/uuid.rst:111 msgid ":attr:`node`" -msgstr "" +msgstr ":attr:`node`" #: ../../library/uuid.rst:111 msgid "the last 48 bits of the UUID" @@ -171,7 +171,7 @@ msgstr "" #: ../../library/uuid.rst:113 msgid ":attr:`time`" -msgstr "" +msgstr ":attr:`time`" #: ../../library/uuid.rst:113 msgid "the 60-bit timestamp" @@ -179,7 +179,7 @@ msgstr "" #: ../../library/uuid.rst:115 msgid ":attr:`clock_seq`" -msgstr "" +msgstr ":attr:`clock_seq`" #: ../../library/uuid.rst:115 msgid "the 14-bit sequence number" @@ -324,7 +324,7 @@ msgstr "" #: ../../library/uuid.rst:267 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/uuid.rst:269 msgid "Here are some examples of typical usage of the :mod:`uuid` module::" diff --git a/library/venv.po b/library/venv.po index c671818484..5fc7742685 100644 --- a/library/venv.po +++ b/library/venv.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/venv.rst:12 msgid "**Source code:** :source:`Lib/venv/`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/venv/`" #: ../../library/venv.rst:18 msgid "" @@ -170,7 +170,7 @@ msgstr "" #: ../../using/venv-create.inc:114 msgid "Platform" -msgstr "" +msgstr "平台" #: ../../using/venv-create.inc:114 msgid "Shell" @@ -182,31 +182,31 @@ msgstr "" #: ../../using/venv-create.inc:116 msgid "POSIX" -msgstr "" +msgstr "POSIX" #: ../../using/venv-create.inc:116 msgid "bash/zsh" -msgstr "" +msgstr "bash/zsh" #: ../../using/venv-create.inc:116 msgid "$ source /bin/activate" -msgstr "" +msgstr "$ source /bin/activate" #: ../../using/venv-create.inc:118 msgid "fish" -msgstr "" +msgstr "fish" #: ../../using/venv-create.inc:118 msgid "$ source /bin/activate.fish" -msgstr "" +msgstr "$ source /bin/activate.fish" #: ../../using/venv-create.inc:120 msgid "csh/tcsh" -msgstr "" +msgstr "csh/tcsh" #: ../../using/venv-create.inc:120 msgid "$ source /bin/activate.csh" -msgstr "" +msgstr "$ source /bin/activate.csh" #: ../../using/venv-create.inc:122 msgid "PowerShell Core" @@ -214,27 +214,27 @@ msgstr "" #: ../../using/venv-create.inc:122 msgid "$ /bin/Activate.ps1" -msgstr "" +msgstr "$ /bin/Activate.ps1" #: ../../using/venv-create.inc:124 msgid "Windows" -msgstr "" +msgstr "Windows" #: ../../using/venv-create.inc:124 msgid "cmd.exe" -msgstr "" +msgstr "cmd.exe" #: ../../using/venv-create.inc:124 msgid "C:\\\\> \\\\Scripts\\\\activate.bat" -msgstr "" +msgstr "C:\\\\> \\\\Scripts\\\\activate.bat" #: ../../using/venv-create.inc:126 msgid "PowerShell" -msgstr "" +msgstr "PowerShell" #: ../../using/venv-create.inc:126 msgid "PS C:\\\\> \\\\Scripts\\\\Activate.ps1" -msgstr "" +msgstr "PS C:\\\\> \\\\Scripts\\\\Activate.ps1" #: ../../using/venv-create.inc:129 msgid "" @@ -335,7 +335,7 @@ msgstr "" #: ../../library/venv.rst:91 msgid "API" -msgstr "" +msgstr "API" #: ../../library/venv.rst:95 msgid "" diff --git a/library/warnings.po b/library/warnings.po index d0c4701d03..415f979240 100644 --- a/library/warnings.po +++ b/library/warnings.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/warnings.rst:7 msgid "**Source code:** :source:`Lib/warnings.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/warnings.py`" #: ../../library/warnings.rst:13 msgid "" @@ -121,7 +121,7 @@ msgstr "描述" #: ../../library/warnings.rst:71 msgid ":exc:`Warning`" -msgstr "" +msgstr ":exc:`Warning`" #: ../../library/warnings.rst:71 msgid "" @@ -131,7 +131,7 @@ msgstr "" #: ../../library/warnings.rst:75 msgid ":exc:`UserWarning`" -msgstr "" +msgstr ":exc:`UserWarning`" #: ../../library/warnings.rst:75 msgid "The default category for :func:`warn`." @@ -139,7 +139,7 @@ msgstr "" #: ../../library/warnings.rst:77 msgid ":exc:`DeprecationWarning`" -msgstr "" +msgstr ":exc:`DeprecationWarning`" #: ../../library/warnings.rst:77 msgid "" @@ -150,7 +150,7 @@ msgstr "" #: ../../library/warnings.rst:82 msgid ":exc:`SyntaxWarning`" -msgstr "" +msgstr ":exc:`SyntaxWarning`" #: ../../library/warnings.rst:82 msgid "Base category for warnings about dubious syntactic features." @@ -158,7 +158,7 @@ msgstr "" #: ../../library/warnings.rst:85 msgid ":exc:`RuntimeWarning`" -msgstr "" +msgstr ":exc:`RuntimeWarning`" #: ../../library/warnings.rst:85 msgid "Base category for warnings about dubious runtime features." @@ -166,7 +166,7 @@ msgstr "" #: ../../library/warnings.rst:88 msgid ":exc:`FutureWarning`" -msgstr "" +msgstr ":exc:`FutureWarning`" #: ../../library/warnings.rst:88 msgid "" @@ -176,7 +176,7 @@ msgstr "" #: ../../library/warnings.rst:93 msgid ":exc:`PendingDeprecationWarning`" -msgstr "" +msgstr ":exc:`PendingDeprecationWarning`" #: ../../library/warnings.rst:93 msgid "" @@ -186,7 +186,7 @@ msgstr "" #: ../../library/warnings.rst:97 msgid ":exc:`ImportWarning`" -msgstr "" +msgstr ":exc:`ImportWarning`" #: ../../library/warnings.rst:97 msgid "" @@ -196,7 +196,7 @@ msgstr "" #: ../../library/warnings.rst:101 msgid ":exc:`UnicodeWarning`" -msgstr "" +msgstr ":exc:`UnicodeWarning`" #: ../../library/warnings.rst:101 msgid "Base category for warnings related to Unicode." @@ -204,7 +204,7 @@ msgstr "" #: ../../library/warnings.rst:104 msgid ":exc:`BytesWarning`" -msgstr "" +msgstr ":exc:`BytesWarning`" #: ../../library/warnings.rst:104 msgid "" @@ -213,7 +213,7 @@ msgstr "" #: ../../library/warnings.rst:107 msgid ":exc:`ResourceWarning`" -msgstr "" +msgstr ":exc:`ResourceWarning`" #: ../../library/warnings.rst:107 msgid "Base category for warnings related to resource usage." @@ -260,7 +260,7 @@ msgstr "" #: ../../library/warnings.rst:138 msgid "``\"default\"``" -msgstr "" +msgstr "``\"default\"``" #: ../../library/warnings.rst:138 msgid "" @@ -270,7 +270,7 @@ msgstr "" #: ../../library/warnings.rst:142 msgid "``\"error\"``" -msgstr "" +msgstr "``\"error\"``" #: ../../library/warnings.rst:142 msgid "turn matching warnings into exceptions" @@ -278,7 +278,7 @@ msgstr "" #: ../../library/warnings.rst:144 msgid "``\"ignore\"``" -msgstr "" +msgstr "``\"ignore\"``" #: ../../library/warnings.rst:144 msgid "never print matching warnings" @@ -286,7 +286,7 @@ msgstr "" #: ../../library/warnings.rst:146 msgid "``\"always\"``" -msgstr "" +msgstr "``\"always\"``" #: ../../library/warnings.rst:146 msgid "always print matching warnings" @@ -294,7 +294,7 @@ msgstr "" #: ../../library/warnings.rst:148 msgid "``\"module\"``" -msgstr "" +msgstr "``\"module\"``" #: ../../library/warnings.rst:148 msgid "" @@ -304,7 +304,7 @@ msgstr "" #: ../../library/warnings.rst:152 msgid "``\"once\"``" -msgstr "" +msgstr "``\"once\"``" #: ../../library/warnings.rst:152 msgid "" diff --git a/library/wave.po b/library/wave.po index 825a896866..2e708e0d92 100644 --- a/library/wave.po +++ b/library/wave.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/wave.rst:10 msgid "**Source code:** :source:`Lib/wave.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/wave.py`" #: ../../library/wave.rst:14 msgid "" @@ -45,7 +45,7 @@ msgstr "" #: ../../library/wave.rst:26 msgid "``'rb'``" -msgstr "" +msgstr "``'rb'``" #: ../../library/wave.rst:26 msgid "Read only mode." @@ -53,7 +53,7 @@ msgstr "" #: ../../library/wave.rst:29 msgid "``'wb'``" -msgstr "" +msgstr "``'wb'``" #: ../../library/wave.rst:29 msgid "Write only mode." diff --git a/library/weakref.po b/library/weakref.po index b811c1717e..fd701091eb 100644 --- a/library/weakref.po +++ b/library/weakref.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/weakref.rst:12 msgid "**Source code:** :source:`Lib/weakref.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/weakref.py`" #: ../../library/weakref.rst:16 msgid "" @@ -444,7 +444,7 @@ msgstr "" #: ../../library/weakref.rst:408 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/weakref.rst:410 msgid "" diff --git a/library/webbrowser.po b/library/webbrowser.po index 26a984b9be..acae247fe7 100644 --- a/library/webbrowser.po +++ b/library/webbrowser.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/webbrowser.rst:10 msgid "**Source code:** :source:`Lib/webbrowser.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/webbrowser.py`" #: ../../library/webbrowser.rst:14 msgid "" @@ -166,56 +166,56 @@ msgstr "註解" #: ../../library/webbrowser.rst:112 msgid "``'mozilla'``" -msgstr "" +msgstr "``'mozilla'``" #: ../../library/webbrowser.rst:112 ../../library/webbrowser.rst:114 msgid ":class:`Mozilla('mozilla')`" -msgstr "" +msgstr ":class:`Mozilla('mozilla')`" #: ../../library/webbrowser.rst:114 msgid "``'firefox'``" -msgstr "" +msgstr "``'firefox'``" #: ../../library/webbrowser.rst:116 msgid "``'netscape'``" -msgstr "" +msgstr "``'netscape'``" #: ../../library/webbrowser.rst:116 msgid ":class:`Mozilla('netscape')`" -msgstr "" +msgstr ":class:`Mozilla('netscape')`" #: ../../library/webbrowser.rst:118 msgid "``'galeon'``" -msgstr "" +msgstr "``'galeon'``" #: ../../library/webbrowser.rst:118 msgid ":class:`Galeon('galeon')`" -msgstr "" +msgstr ":class:`Galeon('galeon')`" #: ../../library/webbrowser.rst:120 msgid "``'epiphany'``" -msgstr "" +msgstr "``'epiphany'``" #: ../../library/webbrowser.rst:120 msgid ":class:`Galeon('epiphany')`" -msgstr "" +msgstr ":class:`Galeon('epiphany')`" #: ../../library/webbrowser.rst:122 msgid "``'skipstone'``" -msgstr "" +msgstr "``'skipstone'``" #: ../../library/webbrowser.rst:122 msgid ":class:`BackgroundBrowser('skipstone')`" -msgstr "" +msgstr ":class:`BackgroundBrowser('skipstone')`" #: ../../library/webbrowser.rst:124 msgid "``'kfmclient'``" -msgstr "" +msgstr "``'kfmclient'``" #: ../../library/webbrowser.rst:124 ../../library/webbrowser.rst:126 #: ../../library/webbrowser.rst:128 msgid ":class:`Konqueror()`" -msgstr "" +msgstr ":class:`Konqueror()`" #: ../../library/webbrowser.rst:124 ../../library/webbrowser.rst:126 #: ../../library/webbrowser.rst:128 @@ -224,75 +224,75 @@ msgstr "\\(1)" #: ../../library/webbrowser.rst:126 msgid "``'konqueror'``" -msgstr "" +msgstr "``'konqueror'``" #: ../../library/webbrowser.rst:128 msgid "``'kfm'``" -msgstr "" +msgstr "``'kfm'``" #: ../../library/webbrowser.rst:130 msgid "``'mosaic'``" -msgstr "" +msgstr "``'mosaic'``" #: ../../library/webbrowser.rst:130 msgid ":class:`BackgroundBrowser('mosaic')`" -msgstr "" +msgstr ":class:`BackgroundBrowser('mosaic')`" #: ../../library/webbrowser.rst:132 msgid "``'opera'``" -msgstr "" +msgstr "``'opera'``" #: ../../library/webbrowser.rst:132 msgid ":class:`Opera()`" -msgstr "" +msgstr ":class:`Opera()`" #: ../../library/webbrowser.rst:134 msgid "``'grail'``" -msgstr "" +msgstr "``'grail'``" #: ../../library/webbrowser.rst:134 msgid ":class:`Grail()`" -msgstr "" +msgstr ":class:`Grail()`" #: ../../library/webbrowser.rst:136 msgid "``'links'``" -msgstr "" +msgstr "``'links'``" #: ../../library/webbrowser.rst:136 msgid ":class:`GenericBrowser('links')`" -msgstr "" +msgstr ":class:`GenericBrowser('links')`" #: ../../library/webbrowser.rst:138 msgid "``'elinks'``" -msgstr "" +msgstr "``'elinks'``" #: ../../library/webbrowser.rst:138 msgid ":class:`Elinks('elinks')`" -msgstr "" +msgstr ":class:`Elinks('elinks')`" #: ../../library/webbrowser.rst:140 msgid "``'lynx'``" -msgstr "" +msgstr "``'lynx'``" #: ../../library/webbrowser.rst:140 msgid ":class:`GenericBrowser('lynx')`" -msgstr "" +msgstr ":class:`GenericBrowser('lynx')`" #: ../../library/webbrowser.rst:142 msgid "``'w3m'``" -msgstr "" +msgstr "``'w3m'``" #: ../../library/webbrowser.rst:142 msgid ":class:`GenericBrowser('w3m')`" -msgstr "" +msgstr ":class:`GenericBrowser('w3m')`" #: ../../library/webbrowser.rst:144 msgid "``'windows-default'``" -msgstr "" +msgstr "``'windows-default'``" #: ../../library/webbrowser.rst:144 msgid ":class:`WindowsDefault`" -msgstr "" +msgstr ":class:`WindowsDefault`" #: ../../library/webbrowser.rst:144 msgid "\\(2)" @@ -300,55 +300,55 @@ msgstr "\\(2)" #: ../../library/webbrowser.rst:146 msgid "``'macosx'``" -msgstr "" +msgstr "``'macosx'``" #: ../../library/webbrowser.rst:146 msgid ":class:`MacOSXOSAScript('default')`" -msgstr "" +msgstr ":class:`MacOSXOSAScript('default')`" #: ../../library/webbrowser.rst:146 ../../library/webbrowser.rst:148 msgid "\\(3)" -msgstr "" +msgstr "\\(3)" #: ../../library/webbrowser.rst:148 msgid "``'safari'``" -msgstr "" +msgstr "``'safari'``" #: ../../library/webbrowser.rst:148 msgid ":class:`MacOSXOSAScript('safari')`" -msgstr "" +msgstr ":class:`MacOSXOSAScript('safari')`" #: ../../library/webbrowser.rst:150 msgid "``'google-chrome'``" -msgstr "" +msgstr "``'google-chrome'``" #: ../../library/webbrowser.rst:150 msgid ":class:`Chrome('google-chrome')`" -msgstr "" +msgstr ":class:`Chrome('google-chrome')`" #: ../../library/webbrowser.rst:152 msgid "``'chrome'``" -msgstr "" +msgstr "``'chrome'``" #: ../../library/webbrowser.rst:152 msgid ":class:`Chrome('chrome')`" -msgstr "" +msgstr ":class:`Chrome('chrome')`" #: ../../library/webbrowser.rst:154 msgid "``'chromium'``" -msgstr "" +msgstr "``'chromium'``" #: ../../library/webbrowser.rst:154 msgid ":class:`Chromium('chromium')`" -msgstr "" +msgstr ":class:`Chromium('chromium')`" #: ../../library/webbrowser.rst:156 msgid "``'chromium-browser'``" -msgstr "" +msgstr "``'chromium-browser'``" #: ../../library/webbrowser.rst:156 msgid ":class:`Chromium('chromium-browser')`" -msgstr "" +msgstr ":class:`Chromium('chromium-browser')`" #: ../../library/webbrowser.rst:159 msgid "Notes:" @@ -379,6 +379,9 @@ msgstr "" #: ../../library/webbrowser.rst:177 msgid "Here are some simple examples::" msgstr "" +"以下是一些簡單範例:\n" +"\n" +"::" #: ../../library/webbrowser.rst:191 msgid "Browser Controller Objects" diff --git a/library/winreg.po b/library/winreg.po index 9c8e5eaa3b..65c7f3b907 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -38,7 +38,7 @@ msgstr "" #: ../../library/winreg.rst:26 msgid "Functions" -msgstr "" +msgstr "函式" #: ../../library/winreg.rst:28 msgid "This module offers the following functions:" @@ -272,7 +272,7 @@ msgstr "" #: ../../library/winreg.rst:230 ../../library/winreg.rst:350 #: ../../library/winreg.rst:398 msgid "``0``" -msgstr "" +msgstr "``0``" #: ../../library/winreg.rst:230 msgid "A string that identifies the value name" @@ -281,7 +281,7 @@ msgstr "" #: ../../library/winreg.rst:232 ../../library/winreg.rst:353 #: ../../library/winreg.rst:400 msgid "``1``" -msgstr "" +msgstr "``1``" #: ../../library/winreg.rst:232 msgid "" @@ -291,7 +291,7 @@ msgstr "" #: ../../library/winreg.rst:236 ../../library/winreg.rst:356 msgid "``2``" -msgstr "" +msgstr "``2``" #: ../../library/winreg.rst:236 msgid "" @@ -660,7 +660,7 @@ msgstr "" #: ../../library/winreg.rst:542 msgid "Constants" -msgstr "" +msgstr "常數" #: ../../library/winreg.rst:544 msgid "" diff --git a/library/winsound.po b/library/winsound.po index dfde6f757d..b788582e16 100644 --- a/library/winsound.po +++ b/library/winsound.po @@ -91,7 +91,7 @@ msgstr "" #: ../../library/winsound.rst:66 msgid "``'SystemAsterisk'``" -msgstr "" +msgstr "``'SystemAsterisk'``" #: ../../library/winsound.rst:66 msgid "Asterisk" @@ -99,7 +99,7 @@ msgstr "" #: ../../library/winsound.rst:68 msgid "``'SystemExclamation'``" -msgstr "" +msgstr "``'SystemExclamation'``" #: ../../library/winsound.rst:68 msgid "Exclamation" @@ -107,7 +107,7 @@ msgstr "" #: ../../library/winsound.rst:70 msgid "``'SystemExit'``" -msgstr "" +msgstr "``'SystemExit'``" #: ../../library/winsound.rst:70 msgid "Exit Windows" @@ -115,7 +115,7 @@ msgstr "" #: ../../library/winsound.rst:72 msgid "``'SystemHand'``" -msgstr "" +msgstr "``'SystemHand'``" #: ../../library/winsound.rst:72 msgid "Critical Stop" @@ -123,7 +123,7 @@ msgstr "" #: ../../library/winsound.rst:74 msgid "``'SystemQuestion'``" -msgstr "" +msgstr "``'SystemQuestion'``" #: ../../library/winsound.rst:74 msgid "Question" @@ -132,6 +132,9 @@ msgstr "" #: ../../library/winsound.rst:77 msgid "For example::" msgstr "" +"例如說:\n" +"\n" +"::" #: ../../library/winsound.rst:90 msgid "" @@ -179,16 +182,16 @@ msgstr "" #: ../../library/winsound.rst:140 ../../library/winsound.rst:160 msgid "Play the ``SystemDefault`` sound." -msgstr "" +msgstr "播放 ``SystemDefault`` 聲音。" #: ../../library/winsound.rst:145 msgid "Play the ``SystemExclamation`` sound." -msgstr "" +msgstr "播放 ``SystemExclamation`` 聲音。" #: ../../library/winsound.rst:150 msgid "Play the ``SystemHand`` sound." -msgstr "" +msgstr "播放 ``SystemHand`` 聲音。" #: ../../library/winsound.rst:155 msgid "Play the ``SystemQuestion`` sound." -msgstr "" +msgstr "播放 ``SystemQuestion`` 聲音。" diff --git a/library/wsgiref.po b/library/wsgiref.po index 3ca2f25bc2..19bf1458e4 100644 --- a/library/wsgiref.po +++ b/library/wsgiref.po @@ -159,6 +159,9 @@ msgstr "" #: ../../library/wsgiref.rst:286 ../../library/wsgiref.rst:418 msgid "Example usage::" msgstr "" +"用法範例:\n" +"\n" +"::" #: ../../library/wsgiref.rst:141 msgid "" @@ -837,7 +840,7 @@ msgstr "" #: ../../library/wsgiref.rst:759 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/wsgiref.rst:761 msgid "This is a working \"Hello World\" WSGI application::" diff --git a/library/xdrlib.po b/library/xdrlib.po index 8f2a4a6657..88d437c7a2 100644 --- a/library/xdrlib.po +++ b/library/xdrlib.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/xdrlib.rst:7 msgid "**Source code:** :source:`Lib/xdrlib.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/xdrlib.py`" #: ../../library/xdrlib.rst:15 msgid "" @@ -283,7 +283,7 @@ msgstr "" #: ../../library/xdrlib.rst:255 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/xdrlib.rst:257 msgid "Exceptions in this module are coded as class instances:" diff --git a/library/xml.dom.minidom.po b/library/xml.dom.minidom.po index 579d1204a8..3583ee7c5d 100644 --- a/library/xml.dom.minidom.po +++ b/library/xml.dom.minidom.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/xml.dom.minidom.rst:11 msgid "**Source code:** :source:`Lib/xml/dom/minidom.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/xml/dom/minidom.py`" #: ../../library/xml.dom.minidom.rst:15 msgid "" @@ -240,7 +240,7 @@ msgstr "" #: ../../library/xml.dom.minidom.rst:205 msgid "DOM Example" -msgstr "" +msgstr "DOM 範例" #: ../../library/xml.dom.minidom.rst:207 msgid "" @@ -333,11 +333,11 @@ msgstr "" #: ../../library/xml.dom.minidom.rst:261 msgid ":class:`DOMTimeStamp`" -msgstr "" +msgstr ":class:`DOMTimeStamp`" #: ../../library/xml.dom.minidom.rst:263 msgid ":class:`EntityReference`" -msgstr "" +msgstr ":class:`EntityReference`" #: ../../library/xml.dom.minidom.rst:265 msgid "" diff --git a/library/xml.dom.po b/library/xml.dom.po index c8076e4cb7..778009d84c 100644 --- a/library/xml.dom.po +++ b/library/xml.dom.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/xml.dom.rst:10 msgid "**Source code:** :source:`Lib/xml/dom/__init__.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/xml/dom/__init__.py`" #: ../../library/xml.dom.rst:14 msgid "" @@ -125,7 +125,7 @@ msgstr "" #: ../../library/xml.dom.rst:81 msgid "Module Contents" -msgstr "" +msgstr "模組內容" #: ../../library/xml.dom.rst:83 msgid "The :mod:`xml.dom` contains the following functions:" @@ -232,11 +232,11 @@ msgstr "" #: ../../library/xml.dom.rst:164 msgid ":class:`DOMImplementation`" -msgstr "" +msgstr ":class:`DOMImplementation`" #: ../../library/xml.dom.rst:164 msgid ":ref:`dom-implementation-objects`" -msgstr "" +msgstr ":ref:`dom-implementation-objects`" #: ../../library/xml.dom.rst:164 msgid "Interface to the underlying implementation." @@ -244,11 +244,11 @@ msgstr "" #: ../../library/xml.dom.rst:167 msgid ":class:`Node`" -msgstr "" +msgstr ":class:`Node`" #: ../../library/xml.dom.rst:167 msgid ":ref:`dom-node-objects`" -msgstr "" +msgstr ":ref:`dom-node-objects`" #: ../../library/xml.dom.rst:167 msgid "Base interface for most objects in a document." @@ -256,11 +256,11 @@ msgstr "" #: ../../library/xml.dom.rst:170 msgid ":class:`NodeList`" -msgstr "" +msgstr ":class:`NodeList`" #: ../../library/xml.dom.rst:170 msgid ":ref:`dom-nodelist-objects`" -msgstr "" +msgstr ":ref:`dom-nodelist-objects`" #: ../../library/xml.dom.rst:170 msgid "Interface for a sequence of nodes." @@ -268,11 +268,11 @@ msgstr "" #: ../../library/xml.dom.rst:173 msgid ":class:`DocumentType`" -msgstr "" +msgstr ":class:`DocumentType`" #: ../../library/xml.dom.rst:173 msgid ":ref:`dom-documenttype-objects`" -msgstr "" +msgstr ":ref:`dom-documenttype-objects`" #: ../../library/xml.dom.rst:173 msgid "Information about the declarations needed to process a document." @@ -280,11 +280,11 @@ msgstr "" #: ../../library/xml.dom.rst:177 msgid ":class:`Document`" -msgstr "" +msgstr ":class:`Document`" #: ../../library/xml.dom.rst:177 msgid ":ref:`dom-document-objects`" -msgstr "" +msgstr ":ref:`dom-document-objects`" #: ../../library/xml.dom.rst:177 msgid "Object which represents an entire document." @@ -292,11 +292,11 @@ msgstr "" #: ../../library/xml.dom.rst:180 msgid ":class:`Element`" -msgstr "" +msgstr ":class:`Element`" #: ../../library/xml.dom.rst:180 msgid ":ref:`dom-element-objects`" -msgstr "" +msgstr ":ref:`dom-element-objects`" #: ../../library/xml.dom.rst:180 msgid "Element nodes in the document hierarchy." @@ -304,11 +304,11 @@ msgstr "" #: ../../library/xml.dom.rst:183 msgid ":class:`Attr`" -msgstr "" +msgstr ":class:`Attr`" #: ../../library/xml.dom.rst:183 msgid ":ref:`dom-attr-objects`" -msgstr "" +msgstr ":ref:`dom-attr-objects`" #: ../../library/xml.dom.rst:183 msgid "Attribute value nodes on element nodes." @@ -316,11 +316,11 @@ msgstr "" #: ../../library/xml.dom.rst:186 msgid ":class:`Comment`" -msgstr "" +msgstr ":class:`Comment`" #: ../../library/xml.dom.rst:186 msgid ":ref:`dom-comment-objects`" -msgstr "" +msgstr ":ref:`dom-comment-objects`" #: ../../library/xml.dom.rst:186 msgid "Representation of comments in the source document." @@ -328,11 +328,11 @@ msgstr "" #: ../../library/xml.dom.rst:189 msgid ":class:`Text`" -msgstr "" +msgstr ":class:`Text`" #: ../../library/xml.dom.rst:189 msgid ":ref:`dom-text-objects`" -msgstr "" +msgstr ":ref:`dom-text-objects`" #: ../../library/xml.dom.rst:189 msgid "Nodes containing textual content from the document." @@ -340,11 +340,11 @@ msgstr "" #: ../../library/xml.dom.rst:192 msgid ":class:`ProcessingInstruction`" -msgstr "" +msgstr ":class:`ProcessingInstruction`" #: ../../library/xml.dom.rst:192 msgid ":ref:`dom-pi-objects`" -msgstr "" +msgstr ":ref:`dom-pi-objects`" #: ../../library/xml.dom.rst:192 msgid "Processing instruction representation." @@ -981,7 +981,7 @@ msgstr "" #: ../../library/xml.dom.rst:809 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/xml.dom.rst:811 msgid "" @@ -1106,131 +1106,131 @@ msgstr "" #: ../../library/xml.dom.rst:928 msgid "Constant" -msgstr "" +msgstr "常數" #: ../../library/xml.dom.rst:928 msgid "Exception" -msgstr "" +msgstr "例外" #: ../../library/xml.dom.rst:930 msgid ":const:`DOMSTRING_SIZE_ERR`" -msgstr "" +msgstr ":const:`DOMSTRING_SIZE_ERR`" #: ../../library/xml.dom.rst:930 msgid ":exc:`DomstringSizeErr`" -msgstr "" +msgstr ":exc:`DomstringSizeErr`" #: ../../library/xml.dom.rst:932 msgid ":const:`HIERARCHY_REQUEST_ERR`" -msgstr "" +msgstr ":const:`HIERARCHY_REQUEST_ERR`" #: ../../library/xml.dom.rst:932 msgid ":exc:`HierarchyRequestErr`" -msgstr "" +msgstr ":exc:`HierarchyRequestErr`" #: ../../library/xml.dom.rst:934 msgid ":const:`INDEX_SIZE_ERR`" -msgstr "" +msgstr ":const:`INDEX_SIZE_ERR`" #: ../../library/xml.dom.rst:934 msgid ":exc:`IndexSizeErr`" -msgstr "" +msgstr ":exc:`IndexSizeErr`" #: ../../library/xml.dom.rst:936 msgid ":const:`INUSE_ATTRIBUTE_ERR`" -msgstr "" +msgstr ":const:`INUSE_ATTRIBUTE_ERR`" #: ../../library/xml.dom.rst:936 msgid ":exc:`InuseAttributeErr`" -msgstr "" +msgstr ":exc:`InuseAttributeErr`" #: ../../library/xml.dom.rst:938 msgid ":const:`INVALID_ACCESS_ERR`" -msgstr "" +msgstr ":const:`INVALID_ACCESS_ERR`" #: ../../library/xml.dom.rst:938 msgid ":exc:`InvalidAccessErr`" -msgstr "" +msgstr ":exc:`InvalidAccessErr`" #: ../../library/xml.dom.rst:940 msgid ":const:`INVALID_CHARACTER_ERR`" -msgstr "" +msgstr ":const:`INVALID_CHARACTER_ERR`" #: ../../library/xml.dom.rst:940 msgid ":exc:`InvalidCharacterErr`" -msgstr "" +msgstr ":exc:`InvalidCharacterErr`" #: ../../library/xml.dom.rst:942 msgid ":const:`INVALID_MODIFICATION_ERR`" -msgstr "" +msgstr ":const:`INVALID_MODIFICATION_ERR`" #: ../../library/xml.dom.rst:942 msgid ":exc:`InvalidModificationErr`" -msgstr "" +msgstr ":exc:`InvalidModificationErr`" #: ../../library/xml.dom.rst:944 msgid ":const:`INVALID_STATE_ERR`" -msgstr "" +msgstr ":const:`INVALID_STATE_ERR`" #: ../../library/xml.dom.rst:944 msgid ":exc:`InvalidStateErr`" -msgstr "" +msgstr ":exc:`InvalidStateErr`" #: ../../library/xml.dom.rst:946 msgid ":const:`NAMESPACE_ERR`" -msgstr "" +msgstr ":const:`NAMESPACE_ERR`" #: ../../library/xml.dom.rst:946 msgid ":exc:`NamespaceErr`" -msgstr "" +msgstr ":exc:`NamespaceErr`" #: ../../library/xml.dom.rst:948 msgid ":const:`NOT_FOUND_ERR`" -msgstr "" +msgstr ":const:`NOT_FOUND_ERR`" #: ../../library/xml.dom.rst:948 msgid ":exc:`NotFoundErr`" -msgstr "" +msgstr ":exc:`NotFoundErr`" #: ../../library/xml.dom.rst:950 msgid ":const:`NOT_SUPPORTED_ERR`" -msgstr "" +msgstr ":const:`NOT_SUPPORTED_ERR`" #: ../../library/xml.dom.rst:950 msgid ":exc:`NotSupportedErr`" -msgstr "" +msgstr ":exc:`NotSupportedErr`" #: ../../library/xml.dom.rst:952 msgid ":const:`NO_DATA_ALLOWED_ERR`" -msgstr "" +msgstr ":const:`NO_DATA_ALLOWED_ERR`" #: ../../library/xml.dom.rst:952 msgid ":exc:`NoDataAllowedErr`" -msgstr "" +msgstr ":exc:`NoDataAllowedErr`" #: ../../library/xml.dom.rst:954 msgid ":const:`NO_MODIFICATION_ALLOWED_ERR`" -msgstr "" +msgstr ":const:`NO_MODIFICATION_ALLOWED_ERR`" #: ../../library/xml.dom.rst:954 msgid ":exc:`NoModificationAllowedErr`" -msgstr "" +msgstr ":exc:`NoModificationAllowedErr`" #: ../../library/xml.dom.rst:956 msgid ":const:`SYNTAX_ERR`" -msgstr "" +msgstr ":const:`SYNTAX_ERR`" #: ../../library/xml.dom.rst:956 msgid ":exc:`SyntaxErr`" -msgstr "" +msgstr ":exc:`SyntaxErr`" #: ../../library/xml.dom.rst:958 msgid ":const:`WRONG_DOCUMENT_ERR`" -msgstr "" +msgstr ":const:`WRONG_DOCUMENT_ERR`" #: ../../library/xml.dom.rst:958 msgid ":exc:`WrongDocumentErr`" -msgstr "" +msgstr ":exc:`WrongDocumentErr`" #: ../../library/xml.dom.rst:965 msgid "Conformance" @@ -1263,40 +1263,40 @@ msgstr "Python Type" #: ../../library/xml.dom.rst:983 msgid "``boolean``" -msgstr "" +msgstr "``boolean``" #: ../../library/xml.dom.rst:983 msgid "``bool`` or ``int``" -msgstr "" +msgstr "``bool`` 或 ``int``" #: ../../library/xml.dom.rst:985 ../../library/xml.dom.rst:987 #: ../../library/xml.dom.rst:989 msgid "``int``" -msgstr "" +msgstr "``int``" #: ../../library/xml.dom.rst:987 msgid "``long int``" -msgstr "" +msgstr "``long int``" #: ../../library/xml.dom.rst:989 msgid "``unsigned int``" -msgstr "" +msgstr "``unsigned int``" #: ../../library/xml.dom.rst:991 msgid "``DOMString``" -msgstr "" +msgstr "``DOMString``" #: ../../library/xml.dom.rst:991 msgid "``str`` or ``bytes``" -msgstr "" +msgstr "``str`` 或 ``bytes``" #: ../../library/xml.dom.rst:993 msgid "``null``" -msgstr "" +msgstr "``null``" #: ../../library/xml.dom.rst:993 msgid "``None``" -msgstr "" +msgstr "``None``" #: ../../library/xml.dom.rst:999 msgid "Accessor Methods" diff --git a/library/xml.dom.pulldom.po b/library/xml.dom.pulldom.po index 9c37ffb281..7258b8c871 100644 --- a/library/xml.dom.pulldom.po +++ b/library/xml.dom.pulldom.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/xml.dom.pulldom.rst:9 msgid "**Source code:** :source:`Lib/xml/dom/pulldom.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/xml/dom/pulldom.py`" #: ../../library/xml.dom.pulldom.rst:13 msgid "" @@ -55,6 +55,9 @@ msgstr "" #: ../../library/xml.dom.pulldom.rst:43 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/xml.dom.pulldom.rst:54 msgid "``event`` is a constant and can be one of:" @@ -62,35 +65,35 @@ msgstr "" #: ../../library/xml.dom.pulldom.rst:56 msgid ":data:`START_ELEMENT`" -msgstr "" +msgstr ":data:`START_ELEMENT`" #: ../../library/xml.dom.pulldom.rst:57 msgid ":data:`END_ELEMENT`" -msgstr "" +msgstr ":data:`END_ELEMENT`" #: ../../library/xml.dom.pulldom.rst:58 msgid ":data:`COMMENT`" -msgstr "" +msgstr ":data:`COMMENT`" #: ../../library/xml.dom.pulldom.rst:59 msgid ":data:`START_DOCUMENT`" -msgstr "" +msgstr ":data:`START_DOCUMENT`" #: ../../library/xml.dom.pulldom.rst:60 msgid ":data:`END_DOCUMENT`" -msgstr "" +msgstr ":data:`END_DOCUMENT`" #: ../../library/xml.dom.pulldom.rst:61 msgid ":data:`CHARACTERS`" -msgstr "" +msgstr ":data:`CHARACTERS`" #: ../../library/xml.dom.pulldom.rst:62 msgid ":data:`PROCESSING_INSTRUCTION`" -msgstr "" +msgstr ":data:`PROCESSING_INSTRUCTION`" #: ../../library/xml.dom.pulldom.rst:63 msgid ":data:`IGNORABLE_WHITESPACE`" -msgstr "" +msgstr ":data:`IGNORABLE_WHITESPACE`" #: ../../library/xml.dom.pulldom.rst:65 msgid "" diff --git a/library/xml.etree.elementtree.po b/library/xml.etree.elementtree.po index 9ae1a97f54..f86a59071c 100644 --- a/library/xml.etree.elementtree.po +++ b/library/xml.etree.elementtree.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:9 msgid "**Source code:** :source:`Lib/xml/etree/ElementTree.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/xml/etree/ElementTree.py`" #: ../../library/xml.etree.elementtree.rst:13 msgid "" @@ -304,7 +304,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:384 #: ../../library/xml.etree.elementtree.rst:776 msgid "Example" -msgstr "" +msgstr "範例" #: ../../library/xml.etree.elementtree.rst:386 msgid "" @@ -333,7 +333,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:424 msgid "``tag``" -msgstr "" +msgstr "``tag``" #: ../../library/xml.etree.elementtree.rst:424 msgid "" @@ -351,7 +351,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:436 msgid "``*``" -msgstr "" +msgstr "``*``" #: ../../library/xml.etree.elementtree.rst:436 msgid "" @@ -361,7 +361,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:440 msgid "``.``" -msgstr "" +msgstr "``.``" #: ../../library/xml.etree.elementtree.rst:440 msgid "" @@ -371,7 +371,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:444 msgid "``//``" -msgstr "" +msgstr "``//``" #: ../../library/xml.etree.elementtree.rst:444 msgid "" @@ -381,7 +381,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:448 msgid "``..``" -msgstr "" +msgstr "``..``" #: ../../library/xml.etree.elementtree.rst:448 msgid "" @@ -391,7 +391,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:452 msgid "``[@attrib]``" -msgstr "" +msgstr "``[@attrib]``" #: ../../library/xml.etree.elementtree.rst:452 msgid "Selects all elements that have the given attribute." @@ -399,7 +399,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:454 msgid "``[@attrib='value']``" -msgstr "" +msgstr "``[@attrib='value']``" #: ../../library/xml.etree.elementtree.rst:454 msgid "" @@ -409,7 +409,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:458 msgid "``[@attrib!='value']``" -msgstr "" +msgstr "``[@attrib!='value']``" #: ../../library/xml.etree.elementtree.rst:458 msgid "" @@ -419,7 +419,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:464 msgid "``[tag]``" -msgstr "" +msgstr "``[tag]``" #: ../../library/xml.etree.elementtree.rst:464 msgid "" @@ -429,7 +429,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:467 msgid "``[.='text']``" -msgstr "" +msgstr "``[.='text']``" #: ../../library/xml.etree.elementtree.rst:467 msgid "" @@ -439,7 +439,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:472 msgid "``[.!='text']``" -msgstr "" +msgstr "``[.!='text']``" #: ../../library/xml.etree.elementtree.rst:472 msgid "" @@ -449,7 +449,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:478 msgid "``[tag='text']``" -msgstr "" +msgstr "``[tag='text']``" #: ../../library/xml.etree.elementtree.rst:478 msgid "" @@ -459,7 +459,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:482 msgid "``[tag!='text']``" -msgstr "" +msgstr "``[tag!='text']``" #: ../../library/xml.etree.elementtree.rst:482 msgid "" @@ -469,7 +469,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:488 msgid "``[position]``" -msgstr "" +msgstr "``[position]``" #: ../../library/xml.etree.elementtree.rst:488 msgid "" @@ -494,7 +494,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:505 #: ../../library/xml.etree.elementtree.rst:833 msgid "Functions" -msgstr "" +msgstr "函式" #: ../../library/xml.etree.elementtree.rst:509 msgid "`C14N 2.0 `_ transformation function." @@ -1455,7 +1455,7 @@ msgstr "" #: ../../library/xml.etree.elementtree.rst:1483 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../library/xml.etree.elementtree.rst:1487 msgid "" diff --git a/library/xml.po b/library/xml.po index dac98dd4ac..8254362bdc 100644 --- a/library/xml.po +++ b/library/xml.po @@ -25,7 +25,7 @@ msgstr "XML 處理模組" #: ../../library/xml.rst:12 msgid "**Source code:** :source:`Lib/xml/`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/xml/`" #: ../../library/xml.rst:16 msgid "" @@ -107,23 +107,23 @@ msgstr "" #: ../../library/xml.rst:64 msgid "sax" -msgstr "" +msgstr "sax" #: ../../library/xml.rst:64 msgid "etree" -msgstr "" +msgstr "etree" #: ../../library/xml.rst:64 msgid "minidom" -msgstr "" +msgstr "minidom" #: ../../library/xml.rst:64 msgid "pulldom" -msgstr "" +msgstr "pulldom" #: ../../library/xml.rst:64 msgid "xmlrpc" -msgstr "" +msgstr "xmlrpc" #: ../../library/xml.rst:66 msgid "billion laughs" diff --git a/library/xml.sax.handler.po b/library/xml.sax.handler.po index 4ce738b6a5..23ec4caa06 100644 --- a/library/xml.sax.handler.po +++ b/library/xml.sax.handler.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/xml.sax.handler.rst:10 msgid "**Source code:** :source:`Lib/xml/sax/handler.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/xml/sax/handler.py`" #: ../../library/xml.sax.handler.rst:14 msgid "" diff --git a/library/xml.sax.po b/library/xml.sax.po index d8ee30a17a..e26988d75c 100644 --- a/library/xml.sax.po +++ b/library/xml.sax.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/xml.sax.rst:11 msgid "**Source code:** :source:`Lib/xml/sax/__init__.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/xml/sax/__init__.py`" #: ../../library/xml.sax.rst:15 msgid "" @@ -186,7 +186,7 @@ msgstr "" #: ../../library/xml.sax.rst:151 msgid "Module :mod:`xml.sax.handler`" -msgstr "" +msgstr ":mod:`xml.sax.handler` 模組" #: ../../library/xml.sax.rst:151 msgid "Definitions of the interfaces for application-provided objects." @@ -194,7 +194,7 @@ msgstr "" #: ../../library/xml.sax.rst:154 msgid "Module :mod:`xml.sax.saxutils`" -msgstr "" +msgstr ":mod:`xml.sax.saxutils` 模組" #: ../../library/xml.sax.rst:154 msgid "Convenience functions for use in SAX applications." @@ -202,7 +202,7 @@ msgstr "" #: ../../library/xml.sax.rst:156 msgid "Module :mod:`xml.sax.xmlreader`" -msgstr "" +msgstr ":mod:`xml.sax.xmlreader` 模組" #: ../../library/xml.sax.rst:157 msgid "Definitions of the interfaces for parser-provided objects." diff --git a/library/xml.sax.reader.po b/library/xml.sax.reader.po index d9110fecf3..ff777cb066 100644 --- a/library/xml.sax.reader.po +++ b/library/xml.sax.reader.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/xml.sax.reader.rst:10 msgid "**Source code:** :source:`Lib/xml/sax/xmlreader.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/xml/sax/xmlreader.py`" #: ../../library/xml.sax.reader.rst:14 msgid "" diff --git a/library/xml.sax.utils.po b/library/xml.sax.utils.po index 2207a924a2..655bf313c4 100644 --- a/library/xml.sax.utils.po +++ b/library/xml.sax.utils.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/xml.sax.utils.rst:10 msgid "**Source code:** :source:`Lib/xml/sax/saxutils.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/xml/sax/saxutils.py`" #: ../../library/xml.sax.utils.rst:14 msgid "" diff --git a/library/xmlrpc.client.po b/library/xmlrpc.client.po index 660edba84c..64d0e23e95 100644 --- a/library/xmlrpc.client.po +++ b/library/xmlrpc.client.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/xmlrpc.client.rst:10 msgid "**Source code:** :source:`Lib/xmlrpc/client.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/xmlrpc/client.py`" #: ../../library/xmlrpc.client.rst:17 msgid "" @@ -126,11 +126,11 @@ msgstr "" #: ../../library/xmlrpc.client.rst:95 msgid "``boolean``" -msgstr "" +msgstr "``boolean``" #: ../../library/xmlrpc.client.rst:95 msgid ":class:`bool`" -msgstr "" +msgstr ":class:`bool`" #: ../../library/xmlrpc.client.rst:97 msgid "``int``, ``i1``, ``i2``, ``i4``, ``i8`` or ``biginteger``" @@ -144,7 +144,7 @@ msgstr "" #: ../../library/xmlrpc.client.rst:102 msgid "``double`` or ``float``" -msgstr "" +msgstr "``double`` 或 ``float``" #: ../../library/xmlrpc.client.rst:102 msgid ":class:`float`. Values get the ```` tag." @@ -152,15 +152,15 @@ msgstr "" #: ../../library/xmlrpc.client.rst:105 msgid "``string``" -msgstr "" +msgstr "``string``" #: ../../library/xmlrpc.client.rst:105 msgid ":class:`str`" -msgstr "" +msgstr ":class:`str`" #: ../../library/xmlrpc.client.rst:107 msgid "``array``" -msgstr "" +msgstr "``array``" #: ../../library/xmlrpc.client.rst:107 msgid "" @@ -170,7 +170,7 @@ msgstr "" #: ../../library/xmlrpc.client.rst:111 msgid "``struct``" -msgstr "" +msgstr "``struct``" #: ../../library/xmlrpc.client.rst:111 msgid "" @@ -181,7 +181,7 @@ msgstr "" #: ../../library/xmlrpc.client.rst:116 msgid "``dateTime.iso8601``" -msgstr "" +msgstr "``dateTime.iso8601``" #: ../../library/xmlrpc.client.rst:116 msgid "" @@ -191,7 +191,7 @@ msgstr "" #: ../../library/xmlrpc.client.rst:120 msgid "``base64``" -msgstr "" +msgstr "``base64``" #: ../../library/xmlrpc.client.rst:120 msgid "" @@ -201,7 +201,7 @@ msgstr "" #: ../../library/xmlrpc.client.rst:124 msgid "``nil``" -msgstr "" +msgstr "``nil``" #: ../../library/xmlrpc.client.rst:124 msgid "" @@ -210,7 +210,7 @@ msgstr "" #: ../../library/xmlrpc.client.rst:127 msgid "``bigdecimal``" -msgstr "" +msgstr "``bigdecimal``" #: ../../library/xmlrpc.client.rst:127 msgid ":class:`decimal.Decimal`. Returned type only." @@ -246,7 +246,7 @@ msgstr "" #: ../../library/xmlrpc.client.rst:149 msgid "Added the *context* argument." -msgstr "" +msgstr "加入 *context* 引數。" #: ../../library/xmlrpc.client.rst:152 msgid "" diff --git a/library/xmlrpc.po b/library/xmlrpc.po index 6d15ea4ca1..b243e98a1b 100644 --- a/library/xmlrpc.po +++ b/library/xmlrpc.po @@ -37,8 +37,8 @@ msgstr "" #: ../../library/xmlrpc.rst:11 msgid ":mod:`xmlrpc.client`" -msgstr "" +msgstr ":mod:`xmlrpc.client`" #: ../../library/xmlrpc.rst:12 msgid ":mod:`xmlrpc.server`" -msgstr "" +msgstr ":mod:`xmlrpc.server`" diff --git a/library/xmlrpc.server.po b/library/xmlrpc.server.po index ccadb42a8d..468569cc87 100644 --- a/library/xmlrpc.server.po +++ b/library/xmlrpc.server.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/xmlrpc.server.rst:10 msgid "**Source code:** :source:`Lib/xmlrpc/server.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/xmlrpc/server.py`" #: ../../library/xmlrpc.server.rst:14 msgid "" @@ -111,7 +111,7 @@ msgstr "" #: ../../library/xmlrpc.server.rst:93 ../../library/xmlrpc.server.rst:307 msgid ":meth:`register_function` can be used as a decorator." -msgstr "" +msgstr ":meth:`register_function` 也可被當作裝飾器使用。" #: ../../library/xmlrpc.server.rst:99 msgid "" @@ -165,7 +165,7 @@ msgstr "" #: ../../library/xmlrpc.server.rst:146 msgid "SimpleXMLRPCServer Example" -msgstr "" +msgstr "SimpleXMLRPCServer 範例" #: ../../library/xmlrpc.server.rst:147 msgid "Server code::" @@ -213,7 +213,7 @@ msgstr "" #: ../../library/xmlrpc.server.rst:290 msgid "CGIXMLRPCRequestHandler" -msgstr "" +msgstr "CGIXMLRPCRequestHandler" #: ../../library/xmlrpc.server.rst:292 msgid "" @@ -256,6 +256,9 @@ msgstr "" #: ../../library/xmlrpc.server.rst:341 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../library/xmlrpc.server.rst:357 msgid "Documenting XMLRPC server" @@ -323,7 +326,7 @@ msgstr "" #: ../../library/xmlrpc.server.rst:421 msgid "DocCGIXMLRPCRequestHandler" -msgstr "" +msgstr "DocCGIXMLRPCRequestHandler" #: ../../library/xmlrpc.server.rst:423 msgid "" diff --git a/library/zipapp.po b/library/zipapp.po index 09413cbf0b..b063807343 100644 --- a/library/zipapp.po +++ b/library/zipapp.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/zipapp.rst:9 msgid "**Source code:** :source:`Lib/zipapp.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/zipapp.py`" #: ../../library/zipapp.rst:16 msgid "" @@ -36,7 +36,7 @@ msgstr "" #: ../../library/zipapp.rst:23 msgid "Basic Example" -msgstr "" +msgstr "基本範例" #: ../../library/zipapp.rst:25 msgid "" @@ -247,7 +247,7 @@ msgstr "" #: ../../library/zipapp.rst:188 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/zipapp.rst:190 msgid "Pack up a directory into an archive, and run it." diff --git a/library/zipfile.po b/library/zipfile.po index 195c3cd49d..606c7ae4b4 100644 --- a/library/zipfile.po +++ b/library/zipfile.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/zipfile.rst:10 msgid "**Source code:** :source:`Lib/zipfile.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/zipfile.py`" #: ../../library/zipfile.rst:14 msgid "" @@ -782,7 +782,7 @@ msgstr "" #: ../../library/zipfile.rst:692 msgid "``0``" -msgstr "" +msgstr "``0``" #: ../../library/zipfile.rst:692 msgid "Year (>= 1980)" @@ -790,7 +790,7 @@ msgstr "" #: ../../library/zipfile.rst:694 msgid "``1``" -msgstr "" +msgstr "``1``" #: ../../library/zipfile.rst:694 msgid "Month (one-based)" @@ -798,7 +798,7 @@ msgstr "" #: ../../library/zipfile.rst:696 msgid "``2``" -msgstr "" +msgstr "``2``" #: ../../library/zipfile.rst:696 msgid "Day of month (one-based)" @@ -806,7 +806,7 @@ msgstr "" #: ../../library/zipfile.rst:698 msgid "``3``" -msgstr "" +msgstr "``3``" #: ../../library/zipfile.rst:698 msgid "Hours (zero-based)" @@ -814,7 +814,7 @@ msgstr "" #: ../../library/zipfile.rst:700 msgid "``4``" -msgstr "" +msgstr "``4``" #: ../../library/zipfile.rst:700 msgid "Minutes (zero-based)" @@ -822,7 +822,7 @@ msgstr "" #: ../../library/zipfile.rst:702 msgid "``5``" -msgstr "" +msgstr "``5``" #: ../../library/zipfile.rst:702 msgid "Seconds (zero-based)" diff --git a/library/zipimport.po b/library/zipimport.po index 6b8c2084b8..dabf1e0171 100644 --- a/library/zipimport.po +++ b/library/zipimport.po @@ -24,7 +24,7 @@ msgstr "" #: ../../library/zipimport.rst:9 msgid "**Source code:** :source:`Lib/zipimport.py`" -msgstr "" +msgstr "**原始碼:**\\ :source:`Lib/zipimport.py`" #: ../../library/zipimport.rst:13 msgid "" @@ -230,7 +230,7 @@ msgstr "" #: ../../library/zipimport.rst:198 msgid "Examples" -msgstr "" +msgstr "範例" #: ../../library/zipimport.rst:200 msgid "" diff --git a/library/zlib.po b/library/zlib.po index 11c65c4327..f9a5d22f3a 100644 --- a/library/zlib.po +++ b/library/zlib.po @@ -422,7 +422,7 @@ msgstr "" #: ../../library/zlib.rst:332 msgid "Module :mod:`gzip`" -msgstr "" +msgstr ":mod:`gzip` 模組" #: ../../library/zlib.rst:332 msgid "Reading and writing :program:`gzip`\\ -format files." diff --git a/library/zoneinfo.po b/library/zoneinfo.po index 6f85d6669a..af614176b5 100644 --- a/library/zoneinfo.po +++ b/library/zoneinfo.po @@ -32,7 +32,7 @@ msgstr "" #: ../../library/zoneinfo.rst:24 msgid "Module: :mod:`datetime`" -msgstr "" +msgstr ":mod:`datetime` 模組" #: ../../library/zoneinfo.rst:23 msgid "" @@ -392,7 +392,7 @@ msgstr "" #: ../../library/zoneinfo.rst:339 msgid "Functions" -msgstr "" +msgstr "函式" #: ../../library/zoneinfo.rst:343 msgid "" diff --git a/reference/compound_stmts.po b/reference/compound_stmts.po index 90185fb0be..29be6da630 100644 --- a/reference/compound_stmts.po +++ b/reference/compound_stmts.po @@ -992,7 +992,7 @@ msgstr "" #: ../../reference/compound_stmts.rst:948 msgid "``len(subject) == ``" -msgstr "" +msgstr "``len(subject) == ``" #: ../../reference/compound_stmts.rst:949 msgid "" @@ -1075,7 +1075,7 @@ msgstr "" #: ../../reference/compound_stmts.rst:998 msgid "``KEY1 in ``" -msgstr "" +msgstr "``KEY1 in ``" #: ../../reference/compound_stmts.rst:999 msgid "``P1`` matches ``[KEY1]``" @@ -1305,7 +1305,7 @@ msgstr "" #: ../../reference/compound_stmts.rst:1121 msgid "Function definitions" -msgstr "" +msgstr "函式定義" #: ../../reference/compound_stmts.rst:1136 msgid "" @@ -1343,6 +1343,9 @@ msgstr "" #: ../../reference/compound_stmts.rst:1355 msgid "is roughly equivalent to ::" msgstr "" +"大致等價於:\n" +"\n" +"::" #: ../../reference/compound_stmts.rst:1183 msgid "" @@ -1605,6 +1608,9 @@ msgstr "" #: ../../reference/compound_stmts.rst:1421 msgid "An example of a coroutine function::" msgstr "" +"一個協程韓式函式範例:\n" +"\n" +"::" #: ../../reference/compound_stmts.rst:1427 msgid "" diff --git a/reference/datamodel.po b/reference/datamodel.po index f7b7539b21..7cdb52b4d8 100644 --- a/reference/datamodel.po +++ b/reference/datamodel.po @@ -307,7 +307,7 @@ msgstr "" #: ../../reference/datamodel.rst:256 msgid ":class:`numbers.Real` (:class:`float`)" -msgstr "" +msgstr ":class:`numbers.Real` (:class:`float`)" #: ../../reference/datamodel.rst:250 msgid "" @@ -322,7 +322,7 @@ msgstr "" #: ../../reference/datamodel.rst:266 msgid ":class:`numbers.Complex` (:class:`complex`)" -msgstr "" +msgstr ":class:`numbers.Complex` (:class:`complex`)" #: ../../reference/datamodel.rst:263 msgid "" @@ -603,7 +603,7 @@ msgstr "" #: ../../reference/datamodel.rst:505 msgid "Attribute" -msgstr "" +msgstr "屬性" #: ../../reference/datamodel.rst:505 msgid "Meaning" @@ -940,7 +940,7 @@ msgstr "" #: ../../reference/datamodel.rst:788 msgid "Modules" -msgstr "" +msgstr "模組" #: ../../reference/datamodel.rst:732 msgid "" @@ -1988,7 +1988,7 @@ msgstr "" #: ../../reference/datamodel.rst:1693 msgid ":pep:`562` - Module __getattr__ and __dir__" -msgstr "" +msgstr ":pep:`562` - 模組 __getattr__ 和 __dir__" #: ../../reference/datamodel.rst:1694 msgid "Describes the ``__getattr__`` and ``__dir__`` functions on modules." @@ -2171,7 +2171,7 @@ msgstr "" #: ../../reference/datamodel.rst:1816 msgid "__slots__" -msgstr "" +msgstr "__slots__" #: ../../reference/datamodel.rst:1818 msgid "" @@ -3236,7 +3236,7 @@ msgstr "" #: ../../reference/datamodel.rst:2837 msgid "Coroutines" -msgstr "" +msgstr "協程" #: ../../reference/datamodel.rst:2841 msgid "Awaitable Objects" diff --git a/reference/executionmodel.po b/reference/executionmodel.po index 95e6c3ebef..09d5157a2d 100644 --- a/reference/executionmodel.po +++ b/reference/executionmodel.po @@ -234,7 +234,7 @@ msgstr "" #: ../../reference/executionmodel.rst:212 msgid "Exceptions" -msgstr "" +msgstr "例外" #: ../../reference/executionmodel.rst:223 msgid "" diff --git a/reference/expressions.po b/reference/expressions.po index da9c95c684..924086ea94 100644 --- a/reference/expressions.po +++ b/reference/expressions.po @@ -635,7 +635,7 @@ msgstr "" #: ../../reference/expressions.rst:583 msgid "Examples" -msgstr "" +msgstr "模組" #: ../../reference/expressions.rst:585 msgid "" @@ -1952,11 +1952,11 @@ msgstr "描述" #: ../../reference/expressions.rst:1862 msgid "``(expressions...)``," -msgstr "" +msgstr "``(expressions...)``," #: ../../reference/expressions.rst:1864 msgid "``[expressions...]``, ``{key: value...}``, ``{expressions...}``" -msgstr "" +msgstr "``[expressions...]``, ``{key: value...}``, ``{expressions...}``" #: ../../reference/expressions.rst:1862 msgid "" @@ -1966,7 +1966,7 @@ msgstr "" #: ../../reference/expressions.rst:1868 msgid "``x[index]``, ``x[index:index]``, ``x(arguments...)``, ``x.attribute``" -msgstr "" +msgstr "``x[index]``, ``x[index:index]``, ``x(arguments...)``, ``x.attribute``" #: ../../reference/expressions.rst:1868 msgid "Subscription, slicing, call, attribute reference" diff --git a/reference/import.po b/reference/import.po index 2e21690e89..d643ce685f 100644 --- a/reference/import.po +++ b/reference/import.po @@ -776,7 +776,7 @@ msgstr "" #: ../../reference/import.rst:625 msgid "module.__path__" -msgstr "" +msgstr "module.__path__" #: ../../reference/import.rst:627 msgid "" @@ -1252,7 +1252,7 @@ msgstr "" #: ../../reference/import.rst:989 msgid "__main__.__spec__" -msgstr "" +msgstr "__main__.__spec__" #: ../../reference/import.rst:991 msgid "" @@ -1281,7 +1281,7 @@ msgstr "" #: ../../reference/import.rst:1004 msgid ":option:`-c` option" -msgstr "" +msgstr ":option:`-c` 選項" #: ../../reference/import.rst:1005 msgid "running from stdin" diff --git a/reference/introduction.po b/reference/introduction.po index 93640873a9..f071090595 100644 --- a/reference/introduction.po +++ b/reference/introduction.po @@ -80,7 +80,7 @@ msgstr "" #: ../../reference/introduction.rst:51 msgid "CPython" -msgstr "" +msgstr "CPython" #: ../../reference/introduction.rst:50 msgid "" @@ -90,7 +90,7 @@ msgstr "" #: ../../reference/introduction.rst:57 msgid "Jython" -msgstr "" +msgstr "Jython" #: ../../reference/introduction.rst:54 msgid "" @@ -115,7 +115,7 @@ msgstr "" #: ../../reference/introduction.rst:69 msgid "IronPython" -msgstr "" +msgstr "IronPython" #: ../../reference/introduction.rst:66 msgid "" @@ -127,7 +127,7 @@ msgstr "" #: ../../reference/introduction.rst:77 msgid "PyPy" -msgstr "" +msgstr "PyPy" #: ../../reference/introduction.rst:72 msgid "" diff --git a/reference/simple_stmts.po b/reference/simple_stmts.po index 51de1e1934..4fc3aa0869 100644 --- a/reference/simple_stmts.po +++ b/reference/simple_stmts.po @@ -777,6 +777,9 @@ msgstr "" #: ../../reference/simple_stmts.rst:795 msgid "Examples::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../reference/simple_stmts.rst:805 msgid "" diff --git a/sphinx.po b/sphinx.po index 0b34a5e1ff..2a51fc567d 100644 --- a/sphinx.po +++ b/sphinx.po @@ -56,7 +56,7 @@ msgstr "預發行" #: ../../tools/templates/dummy.html:15 msgid "stable" -msgstr "" +msgstr "穩定版本" #: ../../tools/templates/dummy.html:16 msgid "security-fixes" @@ -64,7 +64,7 @@ msgstr "安全性修護" #: ../../tools/templates/dummy.html:17 msgid "EOL" -msgstr "" +msgstr "停止維護" #: ../../tools/templates/indexcontent.html:8 msgid "Welcome! This is the official documentation for Python %(release)s." @@ -246,7 +246,7 @@ msgstr "各版本說明文件" #: ../../tools/templates/indexsidebar.html:5 msgid "Stable" -msgstr "" +msgstr "穩定版本" #: ../../tools/templates/indexsidebar.html:6 msgid "In development" @@ -289,15 +289,3 @@ msgstr "這份說明文件是寫給一個不再被支援的舊版 Python。你 #: ../../tools/templates/layout.html:8 msgid " Python documentation for the current stable release" msgstr " 當前穩定發行的 Python 版本說明文件" - -#~ msgid "Python 3.8 (stable)" -#~ msgstr "Python 3.8(穩定)" - -#~ msgid "Python 3.7 (stable)" -#~ msgstr "Python 3.7(穩定)" - -#~ msgid "Python 2.7 (EOL)" -#~ msgstr "Python 2.7(終止支援)" - -#~ msgid "Documentation " -#~ msgstr "說明文件 " diff --git a/using/cmdline.po b/using/cmdline.po index 8368b3af47..52f107f7c8 100644 --- a/using/cmdline.po +++ b/using/cmdline.po @@ -1053,7 +1053,7 @@ msgstr "" #: ../../using/cmdline.rst:841 ../../using/cmdline.rst:855 msgid ":ref:`Availability `: Windows." -msgstr "" +msgstr ":ref:`適用 `:Windows。" #: ../../using/cmdline.rst:842 msgid "See :pep:`529` for more details." @@ -1144,7 +1144,7 @@ msgstr "" #: ../../using/cmdline.rst:906 msgid ":ref:`Availability `: \\*nix." -msgstr "" +msgstr ":ref:`適用 `:\\*nix。" #: ../../using/cmdline.rst:907 msgid "See :pep:`538` for more details." diff --git a/using/configure.po b/using/configure.po index d44e542276..694ab7a823 100644 --- a/using/configure.po +++ b/using/configure.po @@ -720,7 +720,7 @@ msgstr "" #: ../../using/configure.rst:500 msgid ":file:`configure.ac` => :file:`configure`;" -msgstr "" +msgstr ":file:`configure.ac` => :file:`configure`\\ ;" #: ../../using/configure.rst:501 msgid "" @@ -729,7 +729,7 @@ msgstr "" #: ../../using/configure.rst:502 msgid ":file:`pyconfig.h` (created by :file:`configure`);" -msgstr "" +msgstr ":file:`pyconfig.h` (created by :file:`configure`)\\ ;" #: ../../using/configure.rst:503 msgid "" diff --git a/using/mac.po b/using/mac.po index b0316dfbec..f27a8ceadd 100644 --- a/using/mac.po +++ b/using/mac.po @@ -27,7 +27,7 @@ msgstr "在 Mac 系統使用Python" #: ../../using/mac.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../using/mac.rst:8 msgid "Bob Savage " diff --git a/using/windows.po b/using/windows.po index 19100c2cf9..b1fba9d624 100644 --- a/using/windows.po +++ b/using/windows.po @@ -1415,7 +1415,7 @@ msgstr "" #: ../../using/windows.rst:888 msgid "Examples:" -msgstr "" +msgstr "範例:" #: ../../using/windows.rst:890 msgid "" @@ -1743,22 +1743,23 @@ msgstr "" msgid "" "`Win32 How Do I...? `_" msgstr "" +"`Win32 How Do I...? `_" #: ../../using/windows.rst:1100 msgid "by Tim Golden" -msgstr "" +msgstr "由 Tim Golden 所著" #: ../../using/windows.rst:1102 msgid "`Python and COM `_" -msgstr "" +msgstr "`Python and COM `_" #: ../../using/windows.rst:1103 msgid "by David and Paul Boddie" -msgstr "" +msgstr "由 David 與 Paul Boddie 所著" #: ../../using/windows.rst:1107 msgid "cx_Freeze" -msgstr "" +msgstr "cx_Freeze" #: ../../using/windows.rst:1109 msgid "" @@ -1771,7 +1772,7 @@ msgstr "" #: ../../using/windows.rst:1117 msgid "WConio" -msgstr "" +msgstr "WConio" #: ../../using/windows.rst:1119 msgid "" diff --git a/whatsnew/2.0.po b/whatsnew/2.0.po index b044e6f02b..5006638dd8 100644 --- a/whatsnew/2.0.po +++ b/whatsnew/2.0.po @@ -20,15 +20,15 @@ msgstr "" #: ../../whatsnew/2.0.rst:3 msgid "What's New in Python 2.0" -msgstr "" +msgstr "Python 2.0 有什麼新功能" #: ../../whatsnew/2.0.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../whatsnew/2.0.rst:5 msgid "A.M. Kuchling and Moshe Zadka" -msgstr "" +msgstr "A.M. Kuchling 和 Moshe Zadka" #: ../../whatsnew/2.0.rst:13 msgid "Introduction" @@ -1237,7 +1237,7 @@ msgstr "" #: ../../whatsnew/2.0.rst:1029 msgid "Module changes" -msgstr "" +msgstr "模組變更" #: ../../whatsnew/2.0.rst:1031 msgid "" @@ -1502,7 +1502,7 @@ msgstr "" #: ../../whatsnew/2.0.rst:1199 msgid "Acknowledgements" -msgstr "" +msgstr "致謝" #: ../../whatsnew/2.0.rst:1201 msgid "" diff --git a/whatsnew/2.1.po b/whatsnew/2.1.po index 41cd19bf86..c6b8a02c8f 100644 --- a/whatsnew/2.1.po +++ b/whatsnew/2.1.po @@ -20,15 +20,15 @@ msgstr "" #: ../../whatsnew/2.1.rst:3 msgid "What's New in Python 2.1" -msgstr "" +msgstr "Python 2.1 有什麼新功能" #: ../../whatsnew/2.1.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../whatsnew/2.1.rst:5 msgid "A.M. Kuchling" -msgstr "" +msgstr "A.M. Kuchling" #: ../../whatsnew/2.1.rst:13 msgid "Introduction" @@ -1006,7 +1006,7 @@ msgstr "" #: ../../whatsnew/2.1.rst:789 msgid "Acknowledgements" -msgstr "" +msgstr "致謝" #: ../../whatsnew/2.1.rst:791 msgid "" diff --git a/whatsnew/2.2.po b/whatsnew/2.2.po index 1c4c44d7c2..0e0a8704a3 100644 --- a/whatsnew/2.2.po +++ b/whatsnew/2.2.po @@ -20,15 +20,15 @@ msgstr "" #: ../../whatsnew/2.2.rst:3 msgid "What's New in Python 2.2" -msgstr "" +msgstr "Python 2.2 有什麼新功能" #: ../../whatsnew/2.2.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../whatsnew/2.2.rst:5 msgid "A.M. Kuchling" -msgstr "" +msgstr "A.M. Kuchling" #: ../../whatsnew/2.2.rst:13 msgid "Introduction" @@ -1517,7 +1517,7 @@ msgstr "" #: ../../whatsnew/2.2.rst:1260 msgid "Acknowledgements" -msgstr "" +msgstr "致謝" #: ../../whatsnew/2.2.rst:1262 msgid "" diff --git a/whatsnew/2.3.po b/whatsnew/2.3.po index f05fbfb330..09d1882ecb 100644 --- a/whatsnew/2.3.po +++ b/whatsnew/2.3.po @@ -20,15 +20,15 @@ msgstr "" #: ../../whatsnew/2.3.rst:3 msgid "What's New in Python 2.3" -msgstr "" +msgstr "Python 2.3 有什麼新功能" #: ../../whatsnew/2.3.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../whatsnew/2.3.rst:5 msgid "A.M. Kuchling" -msgstr "" +msgstr "A.M. Kuchling" #: ../../whatsnew/2.3.rst:11 msgid "" @@ -85,6 +85,9 @@ msgstr "" #: ../../whatsnew/2.3.rst:50 msgid "Here's a simple example::" msgstr "" +"以下是個簡單範例:\n" +"\n" +"::" #: ../../whatsnew/2.3.rst:66 msgid "" @@ -2333,7 +2336,7 @@ msgstr "" #: ../../whatsnew/2.3.rst:2077 msgid "Acknowledgements" -msgstr "" +msgstr "致謝" #: ../../whatsnew/2.3.rst:2079 msgid "" diff --git a/whatsnew/2.4.po b/whatsnew/2.4.po index 3359955cee..b053049f1a 100644 --- a/whatsnew/2.4.po +++ b/whatsnew/2.4.po @@ -20,15 +20,15 @@ msgstr "" #: ../../whatsnew/2.4.rst:3 msgid "What's New in Python 2.4" -msgstr "" +msgstr "Python 2.4 有什麼新功能" #: ../../whatsnew/2.4.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../whatsnew/2.4.rst:5 msgid "A.M. Kuchling" -msgstr "" +msgstr "A.M. Kuchling" #: ../../whatsnew/2.4.rst:14 msgid "" @@ -1795,7 +1795,7 @@ msgstr "" #: ../../whatsnew/2.4.rst:1559 msgid "Acknowledgements" -msgstr "" +msgstr "致謝" #: ../../whatsnew/2.4.rst:1561 msgid "" diff --git a/whatsnew/2.5.po b/whatsnew/2.5.po index 7298f8a872..f25d912544 100644 --- a/whatsnew/2.5.po +++ b/whatsnew/2.5.po @@ -20,15 +20,15 @@ msgstr "" #: ../../whatsnew/2.5.rst:3 msgid "What's New in Python 2.5" -msgstr "" +msgstr "Python 2.5 有什麼新功能" #: ../../whatsnew/2.5.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../whatsnew/2.5.rst:5 msgid "A.M. Kuchling" -msgstr "" +msgstr "A.M. Kuchling" #: ../../whatsnew/2.5.rst:12 msgid "" @@ -2722,7 +2722,7 @@ msgstr "" #: ../../whatsnew/2.5.rst:2281 msgid "Acknowledgements" -msgstr "" +msgstr "致謝" #: ../../whatsnew/2.5.rst:2283 msgid "" diff --git a/whatsnew/2.6.po b/whatsnew/2.6.po index 4b6564631e..bbeb71482a 100644 --- a/whatsnew/2.6.po +++ b/whatsnew/2.6.po @@ -20,15 +20,15 @@ msgstr "" #: ../../whatsnew/2.6.rst:5 msgid "What's New in Python 2.6" -msgstr "" +msgstr "Python 2.6 有什麼新功能" #: ../../whatsnew/2.6.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../whatsnew/2.6.rst:9 msgid "A.M. Kuchling (amk at amk.ca)" -msgstr "" +msgstr "A.M. Kuchling (amk at amk.ca)" #: ../../whatsnew/2.6.rst:52 msgid "" @@ -74,7 +74,7 @@ msgstr "" #: ../../whatsnew/2.6.rst:90 msgid "Python 3.0" -msgstr "" +msgstr "Python 3.0" #: ../../whatsnew/2.6.rst:92 msgid "" @@ -3681,7 +3681,7 @@ msgstr "" #: ../../whatsnew/2.6.rst:3308 msgid "Acknowledgements" -msgstr "" +msgstr "致謝" #: ../../whatsnew/2.6.rst:3310 msgid "" diff --git a/whatsnew/2.7.po b/whatsnew/2.7.po index 3f2356f3b6..36d7897616 100644 --- a/whatsnew/2.7.po +++ b/whatsnew/2.7.po @@ -20,15 +20,15 @@ msgstr "" #: ../../whatsnew/2.7.rst:3 msgid "What's New in Python 2.7" -msgstr "" +msgstr "Python 2.7 有什麼新功能" #: ../../whatsnew/2.7.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../whatsnew/2.7.rst:5 msgid "A.M. Kuchling (amk at amk.ca)" -msgstr "" +msgstr "A.M. Kuchling (amk at amk.ca)" #: ../../whatsnew/2.7.rst:52 msgid "" @@ -455,6 +455,9 @@ msgstr "" #: ../../whatsnew/2.7.rst:370 msgid "Here's an example::" msgstr "" +"以下是個範例:\n" +"\n" +"::" #: ../../whatsnew/2.7.rst:393 msgid "" @@ -482,7 +485,7 @@ msgstr "" #: ../../whatsnew/2.7.rst:438 msgid ":mod:`argparse` documentation" -msgstr "" +msgstr ":mod:`argparse` 文件" #: ../../whatsnew/2.7.rst:438 msgid "The documentation page of the argparse module." @@ -490,7 +493,7 @@ msgstr "" #: ../../whatsnew/2.7.rst:442 msgid ":ref:`upgrading-optparse-code`" -msgstr "" +msgstr ":ref:`upgrading-optparse-code`" #: ../../whatsnew/2.7.rst:441 msgid "" @@ -1960,6 +1963,9 @@ msgstr "" #: ../../whatsnew/2.7.rst:1752 msgid "Here are some examples::" msgstr "" +"以下是一些範例:\n" +"\n" +"::" #: ../../whatsnew/2.7.rst:1763 msgid "" @@ -3298,7 +3304,7 @@ msgstr "" #: ../../whatsnew/2.7.rst:2794 msgid "Acknowledgements" -msgstr "" +msgstr "致謝" #: ../../whatsnew/2.7.rst:2796 msgid "" diff --git a/whatsnew/3.0.po b/whatsnew/3.0.po index e25784fff5..6c175b6335 100644 --- a/whatsnew/3.0.po +++ b/whatsnew/3.0.po @@ -20,15 +20,15 @@ msgstr "" #: ../../whatsnew/3.0.rst:3 msgid "What's New In Python 3.0" -msgstr "" +msgstr "Python 3.0 有什麼新功能" #: ../../whatsnew/3.0.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../whatsnew/3.0.rst:7 msgid "Guido van Rossum" -msgstr "" +msgstr "Guido van Rossum" #: ../../whatsnew/3.0.rst:54 msgid "" @@ -630,11 +630,11 @@ msgstr "" #: ../../whatsnew/3.0.rst:496 msgid ":ref:`pep-0370`." -msgstr "" +msgstr ":ref:`pep-0370`\\ 。" #: ../../whatsnew/3.0.rst:498 msgid ":ref:`pep-0371`." -msgstr "" +msgstr ":ref:`pep-0371`\\ 。" #: ../../whatsnew/3.0.rst:500 msgid "" @@ -700,7 +700,7 @@ msgstr "" #: ../../whatsnew/3.0.rst:543 msgid ":ref:`pep-3129`." -msgstr "" +msgstr ":ref:`pep-3129`\\ 。" #: ../../whatsnew/3.0.rst:545 msgid "" @@ -747,75 +747,75 @@ msgstr "" #: ../../whatsnew/3.0.rst:576 msgid "Old Name" -msgstr "" +msgstr "舊名" #: ../../whatsnew/3.0.rst:576 msgid "New Name" -msgstr "" +msgstr "新名" #: ../../whatsnew/3.0.rst:578 msgid "_winreg" -msgstr "" +msgstr "_winreg" #: ../../whatsnew/3.0.rst:578 msgid "winreg" -msgstr "" +msgstr "winreg" #: ../../whatsnew/3.0.rst:579 msgid "ConfigParser" -msgstr "" +msgstr "ConfigParser" #: ../../whatsnew/3.0.rst:579 msgid "configparser" -msgstr "" +msgstr "configparser" #: ../../whatsnew/3.0.rst:580 msgid "copy_reg" -msgstr "" +msgstr "copy_reg" #: ../../whatsnew/3.0.rst:580 msgid "copyreg" -msgstr "" +msgstr "copyreg" #: ../../whatsnew/3.0.rst:581 msgid "Queue" -msgstr "" +msgstr "Queue" #: ../../whatsnew/3.0.rst:581 msgid "queue" -msgstr "" +msgstr "queue" #: ../../whatsnew/3.0.rst:582 msgid "SocketServer" -msgstr "" +msgstr "SocketServer" #: ../../whatsnew/3.0.rst:582 msgid "socketserver" -msgstr "" +msgstr "socketserver" #: ../../whatsnew/3.0.rst:583 msgid "markupbase" -msgstr "" +msgstr "markupbase" #: ../../whatsnew/3.0.rst:583 msgid "_markupbase" -msgstr "" +msgstr "_markupbase" #: ../../whatsnew/3.0.rst:584 msgid "repr" -msgstr "" +msgstr "repr" #: ../../whatsnew/3.0.rst:584 msgid "reprlib" -msgstr "" +msgstr "reprlib" #: ../../whatsnew/3.0.rst:585 msgid "test.test_support" -msgstr "" +msgstr "test.test_support" #: ../../whatsnew/3.0.rst:585 msgid "test.support" -msgstr "" +msgstr "test.support" #: ../../whatsnew/3.0.rst:588 msgid "" @@ -846,7 +846,7 @@ msgstr "" #: ../../whatsnew/3.0.rst:609 msgid ":mod:`html` (:mod:`HTMLParser`, :mod:`htmlentitydefs`)." -msgstr "" +msgstr ":mod:`html`\\ (\\ :mod:`HTMLParser`\\ 、\\ :mod:`htmlentitydefs`\\ )。" #: ../../whatsnew/3.0.rst:611 msgid "" @@ -990,7 +990,7 @@ msgstr "" #: ../../whatsnew/3.0.rst:705 msgid ":exc:`StandardError` was removed." -msgstr "" +msgstr ":exc:`StandardError` 被移除。" #: ../../whatsnew/3.0.rst:707 msgid "" @@ -1112,7 +1112,7 @@ msgstr "" #: ../../whatsnew/3.0.rst:792 msgid ":meth:`__nonzero__` is now :meth:`__bool__`." -msgstr "" +msgstr ":meth:`__nonzero__` 現在為 :meth:`__bool__`\\ 。" #: ../../whatsnew/3.0.rst:795 msgid "Builtins" diff --git a/whatsnew/3.1.po b/whatsnew/3.1.po index 72945cf081..b5d7e0d94c 100644 --- a/whatsnew/3.1.po +++ b/whatsnew/3.1.po @@ -20,15 +20,15 @@ msgstr "" #: ../../whatsnew/3.1.rst:3 msgid "What's New In Python 3.1" -msgstr "" +msgstr "Python 3.1 有什麼新功能" #: ../../whatsnew/3.1.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../whatsnew/3.1.rst:5 msgid "Raymond Hettinger" -msgstr "" +msgstr "Raymond Hettinger" #: ../../whatsnew/3.1.rst:49 msgid "This article explains the new features in Python 3.1, compared to 3.0." @@ -575,7 +575,7 @@ msgstr "" #: ../../whatsnew/3.1.rst:465 msgid "IDLE" -msgstr "" +msgstr "IDLE" #: ../../whatsnew/3.1.rst:467 msgid "" diff --git a/whatsnew/3.10.po b/whatsnew/3.10.po index 5d41558de5..f71ce0d376 100644 --- a/whatsnew/3.10.po +++ b/whatsnew/3.10.po @@ -20,31 +20,31 @@ msgstr "" #: ../../whatsnew/3.10.rst:3 msgid "What's New In Python 3.10" -msgstr "" +msgstr "Python 3.10 有什麼新功能" #: ../../whatsnew/3.10.rst:0 msgid "Release" -msgstr "" +msgstr "發行版本" #: ../../whatsnew/3.10.rst:5 msgid "|release|" -msgstr "" +msgstr "|release|" #: ../../whatsnew/3.10.rst:0 msgid "Date" -msgstr "" +msgstr "日期" #: ../../whatsnew/3.10.rst:6 msgid "|today|" -msgstr "" +msgstr "|today|" #: ../../whatsnew/3.10.rst:0 msgid "Editor" -msgstr "" +msgstr "編輯者" #: ../../whatsnew/3.10.rst:7 msgid "Pablo Galindo Salgado" -msgstr "" +msgstr "Pablo Galindo Salgado" #: ../../whatsnew/3.10.rst:49 msgid "This article explains the new features in Python 3.10, compared to 3.9." @@ -177,7 +177,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:154 msgid "SyntaxErrors" -msgstr "" +msgstr "SyntaxErrors" #: ../../whatsnew/3.10.rst:156 msgid "" @@ -305,7 +305,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:337 msgid "IndentationErrors" -msgstr "" +msgstr "IndentationErrors" #: ../../whatsnew/3.10.rst:339 msgid "" @@ -316,7 +316,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:354 msgid "AttributeErrors" -msgstr "" +msgstr "AttributeErrors" #: ../../whatsnew/3.10.rst:356 msgid "" @@ -338,7 +338,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:375 msgid "NameErrors" -msgstr "" +msgstr "NameErrors" #: ../../whatsnew/3.10.rst:377 msgid "" @@ -963,7 +963,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:896 msgid "asyncio" -msgstr "" +msgstr "asyncio" #: ../../whatsnew/3.10.rst:898 msgid "" @@ -974,7 +974,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:903 msgid "argparse" -msgstr "" +msgstr "argparse" #: ../../whatsnew/3.10.rst:905 msgid "" @@ -985,7 +985,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:909 msgid "array" -msgstr "" +msgstr "array" #: ../../whatsnew/3.10.rst:911 msgid "" @@ -996,7 +996,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:916 msgid "asynchat, asyncore, smtpd" -msgstr "" +msgstr "asynchat, asyncore, smtpd" #: ../../whatsnew/3.10.rst:917 msgid "" @@ -1007,7 +1007,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:922 msgid "base64" -msgstr "" +msgstr "base64" #: ../../whatsnew/3.10.rst:924 msgid "" @@ -1017,7 +1017,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:928 msgid "bdb" -msgstr "" +msgstr "bdb" #: ../../whatsnew/3.10.rst:930 msgid "" @@ -1027,7 +1027,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:934 msgid "bisect" -msgstr "" +msgstr "bisect" #: ../../whatsnew/3.10.rst:936 msgid "" @@ -1037,7 +1037,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:940 msgid "codecs" -msgstr "" +msgstr "codecs" #: ../../whatsnew/3.10.rst:942 msgid "" @@ -1047,7 +1047,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:946 msgid "collections.abc" -msgstr "" +msgstr "collections.abc" #: ../../whatsnew/3.10.rst:948 msgid "" @@ -1067,7 +1067,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:961 msgid "contextlib" -msgstr "" +msgstr "contextlib" #: ../../whatsnew/3.10.rst:963 msgid "" @@ -1090,7 +1090,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:974 msgid "curses" -msgstr "" +msgstr "curses" #: ../../whatsnew/3.10.rst:976 msgid "" @@ -1111,11 +1111,11 @@ msgstr "" #: ../../whatsnew/3.10.rst:988 msgid "dataclasses" -msgstr "" +msgstr "dataclasses" #: ../../whatsnew/3.10.rst:991 msgid "__slots__" -msgstr "" +msgstr "__slots__" #: ../../whatsnew/3.10.rst:993 msgid "" @@ -1170,7 +1170,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1055 msgid "distutils" -msgstr "" +msgstr "distutils" #: ../../whatsnew/3.10.rst:1057 msgid "" @@ -1194,7 +1194,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1073 msgid "doctest" -msgstr "" +msgstr "doctest" #: ../../whatsnew/3.10.rst:1075 ../../whatsnew/3.10.rst:1186 #: ../../whatsnew/3.10.rst:1207 ../../whatsnew/3.10.rst:1306 @@ -1205,7 +1205,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1079 msgid "encodings" -msgstr "" +msgstr "encodings" #: ../../whatsnew/3.10.rst:1081 msgid "" @@ -1215,7 +1215,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1085 msgid "fileinput" -msgstr "" +msgstr "fileinput" #: ../../whatsnew/3.10.rst:1087 msgid "" @@ -1232,7 +1232,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1096 msgid "faulthandler" -msgstr "" +msgstr "faulthandler" #: ../../whatsnew/3.10.rst:1098 msgid "" @@ -1243,7 +1243,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1103 msgid "gc" -msgstr "" +msgstr "gc" #: ../../whatsnew/3.10.rst:1105 msgid "" @@ -1253,7 +1253,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1109 msgid "glob" -msgstr "" +msgstr "glob" #: ../../whatsnew/3.10.rst:1111 msgid "" @@ -1264,7 +1264,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1116 msgid "hashlib" -msgstr "" +msgstr "hashlib" #: ../../whatsnew/3.10.rst:1118 msgid "" @@ -1287,7 +1287,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1130 msgid "hmac" -msgstr "" +msgstr "hmac" #: ../../whatsnew/3.10.rst:1132 msgid "" @@ -1345,7 +1345,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1168 msgid "importlib.metadata" -msgstr "" +msgstr "importlib.metadata" #: ../../whatsnew/3.10.rst:1170 msgid "" @@ -1370,7 +1370,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1184 msgid "inspect" -msgstr "" +msgstr "inspect" #: ../../whatsnew/3.10.rst:1189 msgid "" @@ -1392,11 +1392,11 @@ msgstr "" #: ../../whatsnew/3.10.rst:1205 msgid "linecache" -msgstr "" +msgstr "linecache" #: ../../whatsnew/3.10.rst:1211 msgid "os" -msgstr "" +msgstr "os" #: ../../whatsnew/3.10.rst:1213 msgid "" @@ -1428,7 +1428,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1230 msgid "os.path" -msgstr "" +msgstr "os.path" #: ../../whatsnew/3.10.rst:1232 msgid "" @@ -1439,7 +1439,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1238 msgid "pathlib" -msgstr "" +msgstr "pathlib" #: ../../whatsnew/3.10.rst:1240 msgid "" @@ -1471,7 +1471,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1258 msgid "platform" -msgstr "" +msgstr "platform" #: ../../whatsnew/3.10.rst:1260 msgid "" @@ -1483,7 +1483,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1266 msgid "pprint" -msgstr "" +msgstr "pprint" #: ../../whatsnew/3.10.rst:1268 msgid "" @@ -1499,7 +1499,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1275 msgid "py_compile" -msgstr "" +msgstr "py_compile" #: ../../whatsnew/3.10.rst:1277 msgid "" @@ -1509,7 +1509,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1281 msgid "pyclbr" -msgstr "" +msgstr "pyclbr" #: ../../whatsnew/3.10.rst:1283 msgid "" @@ -1521,7 +1521,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1289 msgid "shelve" -msgstr "" +msgstr "shelve" #: ../../whatsnew/3.10.rst:1291 msgid "" @@ -1532,7 +1532,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1296 msgid "statistics" -msgstr "" +msgstr "statistics" #: ../../whatsnew/3.10.rst:1298 msgid "" @@ -1543,11 +1543,11 @@ msgstr "" #: ../../whatsnew/3.10.rst:1304 msgid "site" -msgstr "" +msgstr "site" #: ../../whatsnew/3.10.rst:1310 msgid "socket" -msgstr "" +msgstr "socket" #: ../../whatsnew/3.10.rst:1312 msgid "" @@ -1569,7 +1569,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1322 msgid "ssl" -msgstr "" +msgstr "ssl" #: ../../whatsnew/3.10.rst:1324 msgid "" @@ -1633,7 +1633,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1363 msgid "sqlite3" -msgstr "" +msgstr "sqlite3" #: ../../whatsnew/3.10.rst:1365 msgid "" @@ -1644,7 +1644,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1371 msgid "sys" -msgstr "" +msgstr "sys" #: ../../whatsnew/3.10.rst:1373 msgid "" @@ -1661,7 +1661,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1382 msgid "_thread" -msgstr "" +msgstr "_thread" #: ../../whatsnew/3.10.rst:1384 msgid "" @@ -1672,7 +1672,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1389 msgid "threading" -msgstr "" +msgstr "threading" #: ../../whatsnew/3.10.rst:1391 msgid "" @@ -1690,7 +1690,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1402 msgid "traceback" -msgstr "" +msgstr "traceback" #: ../../whatsnew/3.10.rst:1404 msgid "" @@ -1702,7 +1702,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1411 msgid "types" -msgstr "" +msgstr "types" #: ../../whatsnew/3.10.rst:1413 msgid "" @@ -1714,7 +1714,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1419 msgid "typing" -msgstr "" +msgstr "typing" #: ../../whatsnew/3.10.rst:1421 msgid "For major changes, see `New Features Related to Type Hints`_." @@ -1783,7 +1783,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1466 msgid "unittest" -msgstr "" +msgstr "unittest" #: ../../whatsnew/3.10.rst:1468 msgid "" @@ -1794,7 +1794,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1473 msgid "urllib.parse" -msgstr "" +msgstr "urllib.parse" #: ../../whatsnew/3.10.rst:1475 msgid "" @@ -1821,7 +1821,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1493 msgid "xml" -msgstr "" +msgstr "xml" #: ../../whatsnew/3.10.rst:1495 msgid "" @@ -1832,7 +1832,7 @@ msgstr "" #: ../../whatsnew/3.10.rst:1500 msgid "zipimport" -msgstr "" +msgstr "zipimport" #: ../../whatsnew/3.10.rst:1501 msgid "" @@ -2121,36 +2121,37 @@ msgstr "" #: ../../whatsnew/3.10.rst:1712 msgid "``threading.currentThread`` => :func:`threading.current_thread`" -msgstr "" +msgstr "``threading.currentThread`` => :func:`threading.current_thread`" #: ../../whatsnew/3.10.rst:1714 msgid "``threading.activeCount`` => :func:`threading.active_count`" -msgstr "" +msgstr "``threading.activeCount`` => :func:`threading.active_count`" #: ../../whatsnew/3.10.rst:1716 msgid "" "``threading.Condition.notifyAll`` => :meth:`threading.Condition.notify_all`" msgstr "" +"``threading.Condition.notifyAll`` => :meth:`threading.Condition.notify_all`" #: ../../whatsnew/3.10.rst:1719 msgid "``threading.Event.isSet`` => :meth:`threading.Event.is_set`" -msgstr "" +msgstr "``threading.Event.isSet`` => :meth:`threading.Event.is_set`" #: ../../whatsnew/3.10.rst:1721 msgid "``threading.Thread.setName`` => :attr:`threading.Thread.name`" -msgstr "" +msgstr "``threading.Thread.setName`` => :attr:`threading.Thread.name`" #: ../../whatsnew/3.10.rst:1723 msgid "``threading.thread.getName`` => :attr:`threading.Thread.name`" -msgstr "" +msgstr "``threading.thread.getName`` => :attr:`threading.Thread.name`" #: ../../whatsnew/3.10.rst:1725 msgid "``threading.Thread.isDaemon`` => :attr:`threading.Thread.daemon`" -msgstr "" +msgstr "``threading.Thread.isDaemon`` => :attr:`threading.Thread.daemon`" #: ../../whatsnew/3.10.rst:1727 msgid "``threading.Thread.setDaemon`` => :attr:`threading.Thread.daemon`" -msgstr "" +msgstr "``threading.Thread.setDaemon`` => :attr:`threading.Thread.daemon`" #: ../../whatsnew/3.10.rst:1729 msgid "(Contributed by Jelle Zijlstra in :issue:`21574`.)" @@ -2199,11 +2200,11 @@ msgstr "" #: ../../whatsnew/3.10.rst:1755 msgid ":func:`~ssl.match_hostname`" -msgstr "" +msgstr ":func:`~ssl.match_hostname`" #: ../../whatsnew/3.10.rst:1757 msgid ":func:`~ssl.RAND_pseudo_bytes`, :func:`~ssl.RAND_egd`" -msgstr "" +msgstr ":func:`~ssl.RAND_pseudo_bytes`, :func:`~ssl.RAND_egd`" #: ../../whatsnew/3.10.rst:1759 msgid "" @@ -2931,27 +2932,27 @@ msgstr "" #: ../../whatsnew/3.10.rst:2247 msgid "``PyST_GetScope()``" -msgstr "" +msgstr "``PyST_GetScope()``" #: ../../whatsnew/3.10.rst:2248 msgid "``PySymtable_Build()``" -msgstr "" +msgstr "``PySymtable_Build()``" #: ../../whatsnew/3.10.rst:2249 msgid "``PySymtable_BuildObject()``" -msgstr "" +msgstr "``PySymtable_BuildObject()``" #: ../../whatsnew/3.10.rst:2250 msgid "``PySymtable_Free()``" -msgstr "" +msgstr "``PySymtable_Free()``" #: ../../whatsnew/3.10.rst:2251 msgid "``Py_SymtableString()``" -msgstr "" +msgstr "``Py_SymtableString()``" #: ../../whatsnew/3.10.rst:2252 msgid "``Py_SymtableStringObject()``" -msgstr "" +msgstr "``Py_SymtableStringObject()``" #: ../../whatsnew/3.10.rst:2254 msgid "" @@ -2993,43 +2994,43 @@ msgstr "" #: ../../whatsnew/3.10.rst:2278 msgid "``PyAST_Compile()``" -msgstr "" +msgstr "``PyAST_Compile()``" #: ../../whatsnew/3.10.rst:2279 msgid "``PyAST_CompileEx()``" -msgstr "" +msgstr "``PyAST_CompileEx()``" #: ../../whatsnew/3.10.rst:2280 msgid "``PyAST_CompileObject()``" -msgstr "" +msgstr "``PyAST_CompileObject()``" #: ../../whatsnew/3.10.rst:2281 msgid "``PyFuture_FromAST()``" -msgstr "" +msgstr "``PyFuture_FromAST()``" #: ../../whatsnew/3.10.rst:2282 msgid "``PyFuture_FromASTObject()``" -msgstr "" +msgstr "``PyFuture_FromASTObject()``" #: ../../whatsnew/3.10.rst:2283 msgid "``PyParser_ASTFromFile()``" -msgstr "" +msgstr "``PyParser_ASTFromFile()``" #: ../../whatsnew/3.10.rst:2284 msgid "``PyParser_ASTFromFileObject()``" -msgstr "" +msgstr "``PyParser_ASTFromFileObject()``" #: ../../whatsnew/3.10.rst:2285 msgid "``PyParser_ASTFromFilename()``" -msgstr "" +msgstr "``PyParser_ASTFromFilename()``" #: ../../whatsnew/3.10.rst:2286 msgid "``PyParser_ASTFromString()``" -msgstr "" +msgstr "``PyParser_ASTFromString()``" #: ../../whatsnew/3.10.rst:2287 msgid "``PyParser_ASTFromStringObject()``" -msgstr "" +msgstr "``PyParser_ASTFromStringObject()``" #: ../../whatsnew/3.10.rst:2289 msgid "" @@ -3043,19 +3044,19 @@ msgstr "" #: ../../whatsnew/3.10.rst:2294 msgid "``PyArena_New()``" -msgstr "" +msgstr "``PyArena_New()``" #: ../../whatsnew/3.10.rst:2295 msgid "``PyArena_Free()``" -msgstr "" +msgstr "``PyArena_Free()``" #: ../../whatsnew/3.10.rst:2296 msgid "``PyArena_Malloc()``" -msgstr "" +msgstr "``PyArena_Malloc()``" #: ../../whatsnew/3.10.rst:2297 msgid "``PyArena_AddPyObject()``" -msgstr "" +msgstr "``PyArena_AddPyObject()``" #: ../../whatsnew/3.10.rst:2299 msgid "" diff --git a/whatsnew/3.2.po b/whatsnew/3.2.po index eb12c01538..3c086becca 100644 --- a/whatsnew/3.2.po +++ b/whatsnew/3.2.po @@ -20,15 +20,15 @@ msgstr "" #: ../../whatsnew/3.2.rst:3 msgid "What's New In Python 3.2" -msgstr "" +msgstr "Python 3.2 有什麼新功能" #: ../../whatsnew/3.2.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../whatsnew/3.2.rst:5 msgid "Raymond Hettinger" -msgstr "" +msgstr "Raymond Hettinger" #: ../../whatsnew/3.2.rst:51 msgid "" @@ -544,7 +544,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:564 msgid "(See :issue:`4617`.)" -msgstr "" +msgstr "(請見 :issue:`4617`\\ 。)" #: ../../whatsnew/3.2.rst:566 msgid "" @@ -632,7 +632,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:646 msgid "(See :issue:`10518`.)" -msgstr "" +msgstr "(請見 :issue:`10518`\\ 。)" #: ../../whatsnew/3.2.rst:648 msgid "" @@ -685,7 +685,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:678 msgid "email" -msgstr "" +msgstr "email" #: ../../whatsnew/3.2.rst:680 msgid "" @@ -751,7 +751,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:718 msgid "elementtree" -msgstr "" +msgstr "elementtree" #: ../../whatsnew/3.2.rst:720 msgid "" @@ -834,7 +834,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:752 msgid "functools" -msgstr "" +msgstr "functools" #: ../../whatsnew/3.2.rst:754 msgid "" @@ -931,7 +931,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:837 msgid "itertools" -msgstr "" +msgstr "itertools" #: ../../whatsnew/3.2.rst:839 msgid "" @@ -953,7 +953,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:857 msgid "collections" -msgstr "" +msgstr "collections" #: ../../whatsnew/3.2.rst:859 msgid "" @@ -995,7 +995,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:916 msgid "threading" -msgstr "" +msgstr "threading" #: ../../whatsnew/3.2.rst:918 msgid "" @@ -1069,7 +1069,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:983 msgid "datetime and time" -msgstr "" +msgstr "datetime 和 time" #: ../../whatsnew/3.2.rst:985 msgid "" @@ -1126,7 +1126,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1042 msgid "math" -msgstr "" +msgstr "math" #: ../../whatsnew/3.2.rst:1044 msgid "" @@ -1170,7 +1170,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1093 msgid "abc" -msgstr "" +msgstr "abc" #: ../../whatsnew/3.2.rst:1095 msgid "" @@ -1191,7 +1191,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1113 msgid "io" -msgstr "" +msgstr "io" #: ../../whatsnew/3.2.rst:1115 msgid "" @@ -1207,7 +1207,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1144 msgid "reprlib" -msgstr "" +msgstr "reprlib" #: ../../whatsnew/3.2.rst:1146 msgid "" @@ -1231,7 +1231,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1170 msgid "logging" -msgstr "" +msgstr "logging" #: ../../whatsnew/3.2.rst:1172 msgid "" @@ -1284,7 +1284,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1208 msgid "csv" -msgstr "" +msgstr "csv" #: ../../whatsnew/3.2.rst:1210 msgid "" @@ -1308,7 +1308,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1232 msgid "contextlib" -msgstr "" +msgstr "contextlib" #: ../../whatsnew/3.2.rst:1234 msgid "" @@ -1435,7 +1435,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1341 msgid "ftp" -msgstr "" +msgstr "ftp" #: ../../whatsnew/3.2.rst:1343 msgid "" @@ -1470,7 +1470,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1375 msgid "popen" -msgstr "" +msgstr "popen" #: ../../whatsnew/3.2.rst:1377 msgid "" @@ -1486,7 +1486,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1384 msgid "select" -msgstr "" +msgstr "select" #: ../../whatsnew/3.2.rst:1386 msgid "" @@ -1502,7 +1502,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1398 msgid "gzip and zipfile" -msgstr "" +msgstr "gzip 和 zipfile" #: ../../whatsnew/3.2.rst:1400 msgid "" @@ -1542,7 +1542,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1435 msgid "tarfile" -msgstr "" +msgstr "tarfile" #: ../../whatsnew/3.2.rst:1437 msgid "" @@ -1569,7 +1569,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1469 msgid "hashlib" -msgstr "" +msgstr "hashlib" #: ../../whatsnew/3.2.rst:1471 msgid "" @@ -1584,7 +1584,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1489 msgid "ast" -msgstr "" +msgstr "ast" #: ../../whatsnew/3.2.rst:1491 msgid "" @@ -1602,7 +1602,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1515 msgid "os" -msgstr "" +msgstr "os" #: ../../whatsnew/3.2.rst:1517 msgid "" @@ -1632,7 +1632,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1538 msgid "shutil" -msgstr "" +msgstr "shutil" #: ../../whatsnew/3.2.rst:1540 msgid "The :func:`shutil.copytree` function has two new options:" @@ -1675,7 +1675,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1590 msgid "sqlite3" -msgstr "" +msgstr "sqlite3" #: ../../whatsnew/3.2.rst:1592 msgid "" @@ -1703,7 +1703,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1605 msgid "html" -msgstr "" +msgstr "html" #: ../../whatsnew/3.2.rst:1607 msgid "" @@ -1714,7 +1714,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1616 msgid "socket" -msgstr "" +msgstr "socket" #: ../../whatsnew/3.2.rst:1618 msgid "The :mod:`socket` module has two new improvements." @@ -1737,7 +1737,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1631 msgid "ssl" -msgstr "" +msgstr "ssl" #: ../../whatsnew/3.2.rst:1633 msgid "" @@ -1806,7 +1806,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1673 msgid "nntp" -msgstr "" +msgstr "nntp" #: ../../whatsnew/3.2.rst:1675 msgid "" @@ -1831,7 +1831,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1687 msgid "certificates" -msgstr "" +msgstr "certificates" #: ../../whatsnew/3.2.rst:1689 msgid "" @@ -1847,7 +1847,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1697 msgid "imaplib" -msgstr "" +msgstr "imaplib" #: ../../whatsnew/3.2.rst:1699 msgid "" @@ -1861,7 +1861,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1705 msgid "http.client" -msgstr "" +msgstr "http.client" #: ../../whatsnew/3.2.rst:1707 msgid "" @@ -1911,7 +1911,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1736 msgid "unittest" -msgstr "" +msgstr "unittest" #: ../../whatsnew/3.2.rst:1738 msgid "" @@ -2067,7 +2067,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1831 msgid "random" -msgstr "" +msgstr "random" #: ../../whatsnew/3.2.rst:1833 msgid "" @@ -2087,7 +2087,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1845 msgid "poplib" -msgstr "" +msgstr "poplib" #: ../../whatsnew/3.2.rst:1847 msgid "" @@ -2103,7 +2103,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1855 msgid "asyncore" -msgstr "" +msgstr "asyncore" #: ../../whatsnew/3.2.rst:1857 msgid "" @@ -2121,7 +2121,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1867 msgid "tempfile" -msgstr "" +msgstr "tempfile" #: ../../whatsnew/3.2.rst:1869 msgid "" @@ -2136,7 +2136,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1879 msgid "inspect" -msgstr "" +msgstr "inspect" #: ../../whatsnew/3.2.rst:1881 msgid "" @@ -2159,7 +2159,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1922 msgid "pydoc" -msgstr "" +msgstr "pydoc" #: ../../whatsnew/3.2.rst:1924 msgid "" @@ -2174,7 +2174,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1935 msgid "dis" -msgstr "" +msgstr "dis" #: ../../whatsnew/3.2.rst:1937 msgid "" @@ -2204,7 +2204,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:1993 msgid "dbm" -msgstr "" +msgstr "dbm" #: ../../whatsnew/3.2.rst:1995 msgid "" @@ -2218,7 +2218,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:2000 msgid "ctypes" -msgstr "" +msgstr "ctypes" #: ../../whatsnew/3.2.rst:2002 msgid "" @@ -2228,7 +2228,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:2005 msgid "site" -msgstr "" +msgstr "site" #: ../../whatsnew/3.2.rst:2007 msgid "" @@ -2265,7 +2265,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:2043 msgid "sysconfig" -msgstr "" +msgstr "sysconfig" #: ../../whatsnew/3.2.rst:2045 msgid "" @@ -2321,7 +2321,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:2108 msgid "pdb" -msgstr "" +msgstr "pdb" #: ../../whatsnew/3.2.rst:2110 msgid "" @@ -2372,7 +2372,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:2128 msgid "configparser" -msgstr "" +msgstr "configparser" #: ../../whatsnew/3.2.rst:2130 msgid "" @@ -2420,7 +2420,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:2214 msgid "urllib.parse" -msgstr "" +msgstr "urllib.parse" #: ../../whatsnew/3.2.rst:2216 msgid "" @@ -2465,7 +2465,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:2264 msgid "mailbox" -msgstr "" +msgstr "mailbox" #: ../../whatsnew/3.2.rst:2266 msgid "" @@ -2521,7 +2521,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:2297 msgid "turtledemo" -msgstr "" +msgstr "turtledemo" #: ../../whatsnew/3.2.rst:2299 msgid "" @@ -2764,7 +2764,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:2456 msgid "Documentation" -msgstr "" +msgstr "文件" #: ../../whatsnew/3.2.rst:2458 msgid "The documentation continues to be improved." @@ -2827,7 +2827,7 @@ msgstr "" #: ../../whatsnew/3.2.rst:2494 msgid "IDLE" -msgstr "" +msgstr "IDLE" #: ../../whatsnew/3.2.rst:2496 msgid "" diff --git a/whatsnew/3.3.po b/whatsnew/3.3.po index 5c04793b7f..17583f5af9 100644 --- a/whatsnew/3.3.po +++ b/whatsnew/3.3.po @@ -20,7 +20,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:3 msgid "What's New In Python 3.3" -msgstr "" +msgstr "Python 3.3 有什麼新功能" #: ../../whatsnew/3.3.rst:45 msgid "" @@ -722,10 +722,16 @@ msgstr "" #: ../../whatsnew/3.3.rst:568 msgid "Example with nested classes::" msgstr "" +"巢狀類別範例:\n" +"\n" +"::" #: ../../whatsnew/3.3.rst:584 msgid "Example with nested functions::" msgstr "" +"巢狀函式範例:\n" +"\n" +"::" #: ../../whatsnew/3.3.rst:596 msgid "" @@ -1135,11 +1141,11 @@ msgstr "" #: ../../whatsnew/3.3.rst:861 msgid "New Modules" -msgstr "" +msgstr "新模組" #: ../../whatsnew/3.3.rst:864 msgid "faulthandler" -msgstr "" +msgstr "faulthandler" #: ../../whatsnew/3.3.rst:866 msgid "" @@ -1158,7 +1164,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:890 msgid "ipaddress" -msgstr "" +msgstr "ipaddress" #: ../../whatsnew/3.3.rst:892 msgid "" @@ -1173,7 +1179,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:899 msgid "lzma" -msgstr "" +msgstr "lzma" #: ../../whatsnew/3.3.rst:901 msgid "" @@ -1192,7 +1198,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:912 msgid "abc" -msgstr "" +msgstr "abc" #: ../../whatsnew/3.3.rst:914 msgid "" @@ -1232,7 +1238,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:933 msgid "array" -msgstr "" +msgstr "array" #: ../../whatsnew/3.3.rst:935 msgid "" @@ -1246,7 +1252,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:942 msgid "base64" -msgstr "" +msgstr "base64" #: ../../whatsnew/3.3.rst:944 msgid "" @@ -1258,7 +1264,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:950 msgid "binascii" -msgstr "" +msgstr "binascii" #: ../../whatsnew/3.3.rst:952 msgid "" @@ -1269,7 +1275,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:958 msgid "bz2" -msgstr "" +msgstr "bz2" #: ../../whatsnew/3.3.rst:960 msgid "" @@ -1313,7 +1319,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:983 msgid "codecs" -msgstr "" +msgstr "codecs" #: ../../whatsnew/3.3.rst:985 msgid "" @@ -1341,7 +1347,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:999 msgid "(:issue:`12016`)" -msgstr "" +msgstr "(:issue:`12016`)" #: ../../whatsnew/3.3.rst:1001 msgid "" @@ -1357,7 +1363,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1012 msgid "(:issue:`12100`)" -msgstr "" +msgstr "(:issue:`12100`)" #: ../../whatsnew/3.3.rst:1014 msgid "The ``unicode_internal`` codec has been deprecated." @@ -1365,7 +1371,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1018 msgid "collections" -msgstr "" +msgstr "collections" #: ../../whatsnew/3.3.rst:1020 msgid "" @@ -1391,7 +1397,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1037 msgid "contextlib" -msgstr "" +msgstr "contextlib" #: ../../whatsnew/3.3.rst:1039 msgid "" @@ -1407,11 +1413,11 @@ msgstr "" #: ../../whatsnew/3.3.rst:1048 msgid "(:issue:`13585`)" -msgstr "" +msgstr "(:issue:`13585`)" #: ../../whatsnew/3.3.rst:1052 msgid "crypt" -msgstr "" +msgstr "crypt" #: ../../whatsnew/3.3.rst:1054 msgid "" @@ -1421,11 +1427,11 @@ msgstr "" #: ../../whatsnew/3.3.rst:1057 msgid "(:issue:`10924`)" -msgstr "" +msgstr "(:issue:`10924`)" #: ../../whatsnew/3.3.rst:1060 msgid "curses" -msgstr "" +msgstr "curses" #: ../../whatsnew/3.3.rst:1062 msgid "" @@ -1462,7 +1468,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1076 msgid "datetime" -msgstr "" +msgstr "datetime" #: ../../whatsnew/3.3.rst:1078 msgid "" @@ -1491,7 +1497,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1093 msgid "decimal" -msgstr "" +msgstr "decimal" #: ../../whatsnew/3.3.rst:1096 msgid ":issue:`7652` - integrate fast native decimal arithmetic." @@ -1530,11 +1536,11 @@ msgstr "decimal.py" #: ../../whatsnew/3.3.rst:1112 msgid "_decimal" -msgstr "" +msgstr "_decimal" #: ../../whatsnew/3.3.rst:1112 msgid "speedup" -msgstr "" +msgstr "speedup" #: ../../whatsnew/3.3.rst:1114 msgid "pi" @@ -1554,7 +1560,7 @@ msgstr "120x" #: ../../whatsnew/3.3.rst:1116 msgid "telco" -msgstr "" +msgstr "telco" #: ../../whatsnew/3.3.rst:1116 msgid "172.19s" @@ -2002,7 +2008,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1430 msgid "html" -msgstr "" +msgstr "html" #: ../../whatsnew/3.3.rst:1432 msgid "" @@ -2028,7 +2034,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1450 msgid "imaplib" -msgstr "" +msgstr "imaplib" #: ../../whatsnew/3.3.rst:1452 msgid "" @@ -2042,7 +2048,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1459 msgid "inspect" -msgstr "" +msgstr "inspect" #: ../../whatsnew/3.3.rst:1461 msgid "" @@ -2070,7 +2076,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1476 msgid "io" -msgstr "" +msgstr "io" #: ../../whatsnew/3.3.rst:1478 msgid "" @@ -2094,7 +2100,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1492 msgid "itertools" -msgstr "" +msgstr "itertools" #: ../../whatsnew/3.3.rst:1494 msgid "" @@ -2104,7 +2110,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1499 msgid "logging" -msgstr "" +msgstr "logging" #: ../../whatsnew/3.3.rst:1501 msgid "" @@ -2124,7 +2130,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1512 msgid "math" -msgstr "" +msgstr "math" #: ../../whatsnew/3.3.rst:1514 msgid "" @@ -2138,7 +2144,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1521 msgid "mmap" -msgstr "" +msgstr "mmap" #: ../../whatsnew/3.3.rst:1523 msgid "" @@ -2150,7 +2156,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1530 msgid "multiprocessing" -msgstr "" +msgstr "multiprocessing" #: ../../whatsnew/3.3.rst:1532 msgid "" @@ -2191,7 +2197,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1558 msgid "nntplib" -msgstr "" +msgstr "nntplib" #: ../../whatsnew/3.3.rst:1560 msgid "" @@ -2206,7 +2212,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1575 msgid "os" -msgstr "" +msgstr "os" #: ../../whatsnew/3.3.rst:1577 msgid "" @@ -2435,7 +2441,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1706 msgid "pdb" -msgstr "" +msgstr "pdb" #: ../../whatsnew/3.3.rst:1708 msgid "" @@ -2450,7 +2456,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1716 msgid "pickle" -msgstr "" +msgstr "pickle" #: ../../whatsnew/3.3.rst:1718 msgid "" @@ -2464,7 +2470,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1726 msgid "pydoc" -msgstr "" +msgstr "pydoc" #: ../../whatsnew/3.3.rst:1728 msgid "" @@ -2475,7 +2481,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1734 msgid "re" -msgstr "" +msgstr "re" #: ../../whatsnew/3.3.rst:1736 msgid "" @@ -2488,7 +2494,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1742 msgid "sched" -msgstr "" +msgstr "sched" #: ../../whatsnew/3.3.rst:1744 msgid "" @@ -2528,7 +2534,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1769 msgid "select" -msgstr "" +msgstr "select" #: ../../whatsnew/3.3.rst:1771 msgid "" @@ -2539,7 +2545,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1777 msgid "shlex" -msgstr "" +msgstr "shlex" #: ../../whatsnew/3.3.rst:1779 msgid "" @@ -2551,7 +2557,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1786 msgid "shutil" -msgstr "" +msgstr "shutil" #: ../../whatsnew/3.3.rst:1788 msgid "New functions:" @@ -2612,11 +2618,11 @@ msgstr "" #: ../../whatsnew/3.3.rst:1822 msgid "signal" -msgstr "" +msgstr "signal" #: ../../whatsnew/3.3.rst:1824 msgid "The :mod:`signal` module has new functions:" -msgstr "" +msgstr ":mod:`signal` 模組有了新的函式:" #: ../../whatsnew/3.3.rst:1826 msgid "" @@ -2663,7 +2669,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1845 msgid "smtpd" -msgstr "" +msgstr "smtpd" #: ../../whatsnew/3.3.rst:1847 msgid "" @@ -2681,7 +2687,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1857 msgid "smtplib" -msgstr "" +msgstr "smtplib" #: ../../whatsnew/3.3.rst:1859 msgid "" @@ -2708,7 +2714,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1875 msgid "socket" -msgstr "" +msgstr "socket" #: ../../whatsnew/3.3.rst:1877 msgid "" @@ -2769,7 +2775,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1906 msgid "socketserver" -msgstr "" +msgstr "socketserver" #: ../../whatsnew/3.3.rst:1908 msgid "" @@ -2782,7 +2788,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1916 msgid "sqlite3" -msgstr "" +msgstr "sqlite3" #: ../../whatsnew/3.3.rst:1918 msgid "" @@ -2793,7 +2799,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1925 msgid "ssl" -msgstr "" +msgstr "ssl" #: ../../whatsnew/3.3.rst:1927 msgid "The :mod:`ssl` module has two new random generation functions:" @@ -2879,7 +2885,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1974 msgid "stat" -msgstr "" +msgstr "stat" #: ../../whatsnew/3.3.rst:1976 msgid "" @@ -2894,7 +2900,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1984 msgid "struct" -msgstr "" +msgstr "struct" #: ../../whatsnew/3.3.rst:1986 msgid "" @@ -2905,7 +2911,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:1992 msgid "subprocess" -msgstr "" +msgstr "subprocess" #: ../../whatsnew/3.3.rst:1994 msgid "" @@ -2922,7 +2928,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:2003 msgid "sys" -msgstr "" +msgstr "sys" #: ../../whatsnew/3.3.rst:2005 msgid "" @@ -2932,7 +2938,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:2011 msgid "tarfile" -msgstr "" +msgstr "tarfile" #: ../../whatsnew/3.3.rst:2013 msgid "" @@ -2942,7 +2948,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:2018 msgid "tempfile" -msgstr "" +msgstr "tempfile" #: ../../whatsnew/3.3.rst:2020 msgid "" @@ -2953,7 +2959,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:2026 msgid "textwrap" -msgstr "" +msgstr "textwrap" #: ../../whatsnew/3.3.rst:2028 msgid "" @@ -2964,7 +2970,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:2034 msgid "threading" -msgstr "" +msgstr "threading" #: ../../whatsnew/3.3.rst:2036 msgid "" @@ -2993,7 +2999,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:2054 msgid "time" -msgstr "" +msgstr "time" #: ../../whatsnew/3.3.rst:2056 msgid "The :pep:`418` added new functions to the :mod:`time` module:" @@ -3041,7 +3047,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:2078 msgid "types" -msgstr "" +msgstr "types" #: ../../whatsnew/3.3.rst:2080 msgid "" @@ -3058,7 +3064,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:2089 msgid "unittest" -msgstr "" +msgstr "unittest" #: ../../whatsnew/3.3.rst:2091 msgid "" @@ -3076,7 +3082,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:2101 msgid "urllib" -msgstr "" +msgstr "urllib" #: ../../whatsnew/3.3.rst:2103 msgid "" @@ -3091,7 +3097,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:2113 msgid "webbrowser" -msgstr "" +msgstr "webbrowser" #: ../../whatsnew/3.3.rst:2115 msgid "" @@ -3106,7 +3112,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:2125 msgid "xml.etree.ElementTree" -msgstr "" +msgstr "xml.etree.ElementTree" #: ../../whatsnew/3.3.rst:2127 msgid "" @@ -3121,7 +3127,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:2137 msgid "zlib" -msgstr "" +msgstr "zlib" #: ../../whatsnew/3.3.rst:2139 msgid "" @@ -3365,7 +3371,7 @@ msgstr "" #: ../../whatsnew/3.3.rst:2243 msgid ":mod:`abc` module:" -msgstr "" +msgstr ":mod:`abc` 模組:" #: ../../whatsnew/3.3.rst:2252 msgid ":mod:`importlib` package:" diff --git a/whatsnew/3.4.po b/whatsnew/3.4.po index 5fa5ea64b0..7dd19e9c22 100644 --- a/whatsnew/3.4.po +++ b/whatsnew/3.4.po @@ -20,15 +20,15 @@ msgstr "" #: ../../whatsnew/3.4.rst:3 msgid "What's New In Python 3.4" -msgstr "" +msgstr "Python 3.4 有什麼新功能" #: ../../whatsnew/3.4.rst:0 msgid "Author" -msgstr "" +msgstr "作者" #: ../../whatsnew/3.4.rst:5 msgid "R. David Murray (Editor)" -msgstr "" +msgstr "R. David Murray (編輯者)" #: ../../whatsnew/3.4.rst:63 msgid "" @@ -618,11 +618,11 @@ msgstr "" #: ../../whatsnew/3.4.rst:458 msgid "New Modules" -msgstr "" +msgstr "新模組" #: ../../whatsnew/3.4.rst:464 msgid "asyncio" -msgstr "" +msgstr "asyncio" #: ../../whatsnew/3.4.rst:466 msgid "" @@ -646,7 +646,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:482 msgid "ensurepip" -msgstr "" +msgstr "ensurepip" #: ../../whatsnew/3.4.rst:484 msgid "" @@ -679,7 +679,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:508 msgid "enum" -msgstr "" +msgstr "enum" #: ../../whatsnew/3.4.rst:510 msgid "" @@ -702,7 +702,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:526 msgid "pathlib" -msgstr "" +msgstr "pathlib" #: ../../whatsnew/3.4.rst:528 msgid "" @@ -723,7 +723,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:545 msgid "selectors" -msgstr "" +msgstr "selectors" #: ../../whatsnew/3.4.rst:547 msgid "" @@ -734,7 +734,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:555 msgid "statistics" -msgstr "" +msgstr "statistics" #: ../../whatsnew/3.4.rst:557 msgid "" @@ -754,7 +754,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:571 msgid "tracemalloc" -msgstr "" +msgstr "tracemalloc" #: ../../whatsnew/3.4.rst:573 msgid "" @@ -1310,7 +1310,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:981 msgid "importlib" -msgstr "" +msgstr "importlib" #: ../../whatsnew/3.4.rst:983 msgid "" @@ -1378,7 +1378,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1024 msgid "inspect" -msgstr "" +msgstr "inspect" #: ../../whatsnew/3.4.rst:1026 msgid "" @@ -1426,7 +1426,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1059 msgid "ipaddress" -msgstr "" +msgstr "ipaddress" #: ../../whatsnew/3.4.rst:1061 msgid "" @@ -1445,7 +1445,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1073 msgid "logging" -msgstr "" +msgstr "logging" #: ../../whatsnew/3.4.rst:1075 msgid "" @@ -1481,7 +1481,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1101 msgid "marshal" -msgstr "" +msgstr "marshal" #: ../../whatsnew/3.4.rst:1103 msgid "" @@ -1498,7 +1498,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1114 msgid "mmap" -msgstr "" +msgstr "mmap" #: ../../whatsnew/3.4.rst:1116 msgid "" @@ -1508,7 +1508,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1121 msgid "multiprocessing" -msgstr "" +msgstr "multiprocessing" #: ../../whatsnew/3.4.rst:1125 msgid "" @@ -1555,7 +1555,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1158 msgid "operator" -msgstr "" +msgstr "operator" #: ../../whatsnew/3.4.rst:1160 msgid "" @@ -1574,7 +1574,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1171 msgid "os" -msgstr "" +msgstr "os" #: ../../whatsnew/3.4.rst:1173 msgid "" @@ -1618,7 +1618,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1199 msgid "pdb" -msgstr "" +msgstr "pdb" #: ../../whatsnew/3.4.rst:1201 msgid "" @@ -1643,7 +1643,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1220 msgid "pickle" -msgstr "" +msgstr "pickle" #: ../../whatsnew/3.4.rst:1222 msgid "" @@ -1665,7 +1665,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1235 msgid "plistlib" -msgstr "" +msgstr "plistlib" #: ../../whatsnew/3.4.rst:1237 msgid "" @@ -1680,7 +1680,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1247 msgid "poplib" -msgstr "" +msgstr "poplib" #: ../../whatsnew/3.4.rst:1249 msgid "" @@ -1693,7 +1693,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1257 msgid "pprint" -msgstr "" +msgstr "pprint" #: ../../whatsnew/3.4.rst:1259 msgid "" @@ -1713,7 +1713,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1271 msgid "pty" -msgstr "" +msgstr "pty" #: ../../whatsnew/3.4.rst:1273 msgid "" @@ -1723,7 +1723,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1278 msgid "pydoc" -msgstr "" +msgstr "pydoc" #: ../../whatsnew/3.4.rst:1280 msgid "" @@ -1758,7 +1758,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1301 msgid "re" -msgstr "" +msgstr "re" #: ../../whatsnew/3.4.rst:1303 msgid "" @@ -1780,7 +1780,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1318 msgid "resource" -msgstr "" +msgstr "resource" #: ../../whatsnew/3.4.rst:1320 msgid "" @@ -1808,7 +1808,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1338 msgid "select" -msgstr "" +msgstr "select" #: ../../whatsnew/3.4.rst:1340 msgid "" @@ -1827,7 +1827,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1352 msgid "shelve" -msgstr "" +msgstr "shelve" #: ../../whatsnew/3.4.rst:1354 msgid "" @@ -1838,7 +1838,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1360 msgid "shutil" -msgstr "" +msgstr "shutil" #: ../../whatsnew/3.4.rst:1362 msgid "" @@ -1851,7 +1851,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1370 msgid "smtpd" -msgstr "" +msgstr "smtpd" #: ../../whatsnew/3.4.rst:1372 msgid "" @@ -1864,7 +1864,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1380 msgid "smtplib" -msgstr "" +msgstr "smtplib" #: ../../whatsnew/3.4.rst:1382 msgid "" @@ -1876,7 +1876,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1389 msgid "socket" -msgstr "" +msgstr "socket" #: ../../whatsnew/3.4.rst:1391 msgid "" @@ -1910,7 +1910,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1409 msgid "sqlite3" -msgstr "" +msgstr "sqlite3" #: ../../whatsnew/3.4.rst:1411 msgid "" @@ -1922,7 +1922,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1418 msgid "ssl" -msgstr "" +msgstr "ssl" #: ../../whatsnew/3.4.rst:1422 msgid "" @@ -2021,7 +2021,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1496 msgid "stat" -msgstr "" +msgstr "stat" #: ../../whatsnew/3.4.rst:1498 msgid "" @@ -2039,7 +2039,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1508 msgid "struct" -msgstr "" +msgstr "struct" #: ../../whatsnew/3.4.rst:1510 msgid "" @@ -2051,7 +2051,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1517 msgid "subprocess" -msgstr "" +msgstr "subprocess" #: ../../whatsnew/3.4.rst:1519 msgid "" @@ -2069,7 +2069,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1529 msgid "sunau" -msgstr "" +msgstr "sunau" #: ../../whatsnew/3.4.rst:1531 msgid "" @@ -2101,7 +2101,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1549 msgid "sys" -msgstr "" +msgstr "sys" #: ../../whatsnew/3.4.rst:1551 msgid "" @@ -2131,7 +2131,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1573 msgid "tarfile" -msgstr "" +msgstr "tarfile" #: ../../whatsnew/3.4.rst:1575 msgid "" @@ -2143,7 +2143,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1581 msgid "textwrap" -msgstr "" +msgstr "textwrap" #: ../../whatsnew/3.4.rst:1583 msgid "" @@ -2161,7 +2161,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1595 msgid "threading" -msgstr "" +msgstr "threading" #: ../../whatsnew/3.4.rst:1597 msgid "" @@ -2173,7 +2173,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1604 msgid "traceback" -msgstr "" +msgstr "traceback" #: ../../whatsnew/3.4.rst:1606 msgid "" @@ -2185,7 +2185,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1613 msgid "types" -msgstr "" +msgstr "types" #: ../../whatsnew/3.4.rst:1615 msgid "" @@ -2199,7 +2199,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1624 msgid "urllib" -msgstr "" +msgstr "urllib" #: ../../whatsnew/3.4.rst:1626 msgid "" @@ -2241,7 +2241,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1655 msgid "unittest" -msgstr "" +msgstr "unittest" #: ../../whatsnew/3.4.rst:1657 msgid "" @@ -2328,7 +2328,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1718 msgid "venv" -msgstr "" +msgstr "venv" #: ../../whatsnew/3.4.rst:1720 msgid "" @@ -2347,7 +2347,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1731 msgid "wave" -msgstr "" +msgstr "wave" #: ../../whatsnew/3.4.rst:1733 msgid "" @@ -2377,7 +2377,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1749 msgid "weakref" -msgstr "" +msgstr "weakref" #: ../../whatsnew/3.4.rst:1751 msgid "" @@ -2402,7 +2402,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1765 msgid "xml.etree" -msgstr "" +msgstr "xml.etree" #: ../../whatsnew/3.4.rst:1767 msgid "" @@ -2426,7 +2426,7 @@ msgstr "" #: ../../whatsnew/3.4.rst:1783 msgid "zipfile" -msgstr "" +msgstr "zipfile" #: ../../whatsnew/3.4.rst:1785 msgid "" diff --git a/whatsnew/3.5.po b/whatsnew/3.5.po index b0a8108ec0..9533ad8b51 100644 --- a/whatsnew/3.5.po +++ b/whatsnew/3.5.po @@ -22,11 +22,11 @@ msgstr "" #: ../../whatsnew/3.5.rst:3 msgid "What's New In Python 3.5" -msgstr "Python 3.5 有什麼新功能" +msgstr "Python 3.4 有什麼新功能" #: ../../whatsnew/3.5.rst:0 msgid "Editors" -msgstr "" +msgstr "編輯者" #: ../../whatsnew/3.5.rst:5 msgid "Elvis Pranskevichus , Yury Selivanov " @@ -390,6 +390,9 @@ msgstr "" #: ../../whatsnew/3.5.rst:373 ../../whatsnew/3.5.rst:1848 msgid "Examples::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../whatsnew/3.5.rst:381 msgid "" @@ -462,7 +465,7 @@ msgstr "" #: ../../whatsnew/3.5.rst:437 msgid ":mod:`typing` module documentation" -msgstr "" +msgstr ":mod:`typing` 模組文件" #: ../../whatsnew/3.5.rst:439 msgid ":pep:`484` -- Type Hints" @@ -554,6 +557,9 @@ msgstr "" #: ../../whatsnew/3.5.rst:496 msgid "and::" msgstr "" +"和:\n" +"\n" +"::" #: ../../whatsnew/3.5.rst:505 msgid "" @@ -572,11 +578,11 @@ msgstr "" #: ../../whatsnew/3.5.rst:515 msgid ":func:`open` and :func:`io.open`;" -msgstr "" +msgstr ":func:`open` 和 :func:`io.open`\\ ;" #: ../../whatsnew/3.5.rst:517 msgid "functions of the :mod:`faulthandler` module;" -msgstr "" +msgstr ":mod:`faulthandler` 模組的函式;" #: ../../whatsnew/3.5.rst:519 msgid "" @@ -615,11 +621,11 @@ msgstr "" #: ../../whatsnew/3.5.rst:545 msgid ":func:`signal.sigtimedwait` and :func:`signal.sigwaitinfo`;" -msgstr "" +msgstr ":func:`signal.sigtimedwait` 和 :func:`signal.sigwaitinfo`\\ ;" #: ../../whatsnew/3.5.rst:547 msgid ":func:`time.sleep`." -msgstr "" +msgstr ":func:`time.sleep`\\ 。" #: ../../whatsnew/3.5.rst:552 msgid ":pep:`475` -- Retry system calls failing with EINTR" @@ -1063,7 +1069,7 @@ msgstr "" #: ../../whatsnew/3.5.rst:893 msgid "code" -msgstr "" +msgstr "code" #: ../../whatsnew/3.5.rst:895 msgid "" @@ -1215,6 +1221,9 @@ msgstr "" #: ../../whatsnew/3.5.rst:998 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../whatsnew/3.5.rst:1016 msgid "(Contributed by Łukasz Langa in :issue:`18159`.)" diff --git a/whatsnew/3.6.po b/whatsnew/3.6.po index 09f1499b02..e0cc77da86 100644 --- a/whatsnew/3.6.po +++ b/whatsnew/3.6.po @@ -17,15 +17,15 @@ msgstr "" #: ../../whatsnew/3.6.rst:3 msgid "What's New In Python 3.6" -msgstr "" +msgstr "Python 3.6 有什麼新功能" #: ../../whatsnew/3.6.rst:0 msgid "Editors" -msgstr "" +msgstr "編輯者" #: ../../whatsnew/3.6.rst:5 msgid "Elvis Pranskevichus , Yury Selivanov " -msgstr "" +msgstr "Elvis Pranskevichus , Yury Selivanov " #: ../../whatsnew/3.6.rst:47 msgid "" @@ -884,11 +884,11 @@ msgstr "" #: ../../whatsnew/3.6.rst:768 msgid "New Modules" -msgstr "" +msgstr "新模組" #: ../../whatsnew/3.6.rst:773 msgid "secrets" -msgstr "" +msgstr "secrets" #: ../../whatsnew/3.6.rst:775 msgid "" @@ -2505,7 +2505,7 @@ msgstr "" #: ../../whatsnew/3.6.rst:1926 msgid "New Keywords" -msgstr "" +msgstr "新關鍵字" #: ../../whatsnew/3.6.rst:1928 msgid "" @@ -2557,7 +2557,7 @@ msgstr "" #: ../../whatsnew/3.6.rst:1962 msgid "asynchat" -msgstr "" +msgstr "asynchat" #: ../../whatsnew/3.6.rst:1964 msgid "" @@ -2567,7 +2567,7 @@ msgstr "" #: ../../whatsnew/3.6.rst:1969 msgid "asyncore" -msgstr "" +msgstr "asyncore" #: ../../whatsnew/3.6.rst:1971 msgid "" @@ -2577,7 +2577,7 @@ msgstr "" #: ../../whatsnew/3.6.rst:1976 msgid "dbm" -msgstr "" +msgstr "dbm" #: ../../whatsnew/3.6.rst:1978 msgid "" @@ -2597,7 +2597,7 @@ msgstr "" #: ../../whatsnew/3.6.rst:1995 msgid "grp" -msgstr "" +msgstr "grp" #: ../../whatsnew/3.6.rst:1997 msgid "" diff --git a/whatsnew/3.7.po b/whatsnew/3.7.po index 0ca21bf6c7..5b7db2b850 100644 --- a/whatsnew/3.7.po +++ b/whatsnew/3.7.po @@ -17,15 +17,15 @@ msgstr "" #: ../../whatsnew/3.7.rst:3 msgid "What's New In Python 3.7" -msgstr "" +msgstr "Python 3.7 有什麼新功能" #: ../../whatsnew/3.7.rst:0 msgid "Editor" -msgstr "" +msgstr "編輯者" #: ../../whatsnew/3.7.rst:5 msgid "Elvis Pranskevichus " -msgstr "" +msgstr "Elvis Pranskevichus " #: ../../whatsnew/3.7.rst:47 msgid "" @@ -53,7 +53,7 @@ msgstr "" #: ../../whatsnew/3.7.rst:64 msgid ":keyword:`async` and :keyword:`await` are now reserved keywords." -msgstr "" +msgstr ":keyword:`async` 和 :keyword:`await` 現為保留關鍵字。" #: ../../whatsnew/3.7.rst:66 msgid "New library modules:" @@ -70,7 +70,7 @@ msgstr "" #: ../../whatsnew/3.7.rst:70 msgid ":ref:`whatsnew37_importlib_resources`" -msgstr "" +msgstr ":ref:`whatsnew37_importlib_resources`" #: ../../whatsnew/3.7.rst:72 msgid "New built-in features:" @@ -142,7 +142,7 @@ msgstr "" #: ../../whatsnew/3.7.rst:105 msgid ":ref:`New Python Development Mode `" -msgstr "" +msgstr ":ref:`新版 Python 開發模式 `" #: ../../whatsnew/3.7.rst:106 msgid "" @@ -771,11 +771,11 @@ msgstr "" #: ../../whatsnew/3.7.rst:545 msgid "New Modules" -msgstr "" +msgstr "新模組" #: ../../whatsnew/3.7.rst:550 msgid "contextvars" -msgstr "" +msgstr "contextvars" #: ../../whatsnew/3.7.rst:552 msgid "" @@ -817,6 +817,9 @@ msgstr "" #: ../../whatsnew/3.7.rst:580 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../whatsnew/3.7.rst:593 msgid ":pep:`557` -- Data Classes" @@ -868,7 +871,7 @@ msgstr "" #: ../../whatsnew/3.7.rst:634 ../../whatsnew/3.7.rst:1951 msgid "asyncio" -msgstr "" +msgstr "asyncio" #: ../../whatsnew/3.7.rst:636 msgid "" @@ -2302,7 +2305,7 @@ msgstr "" #: ../../whatsnew/3.7.rst:1633 msgid "zipfile" -msgstr "" +msgstr "zipfile" #: ../../whatsnew/3.7.rst:1635 msgid "" @@ -2766,7 +2769,7 @@ msgstr "" #: ../../whatsnew/3.7.rst:1941 msgid "aifc" -msgstr "" +msgstr "aifc" #: ../../whatsnew/3.7.rst:1943 msgid "" @@ -2820,7 +2823,7 @@ msgstr "" #: ../../whatsnew/3.7.rst:1996 msgid "gettext" -msgstr "" +msgstr "gettext" #: ../../whatsnew/3.7.rst:1998 msgid "" @@ -2854,7 +2857,7 @@ msgstr "" #: ../../whatsnew/3.7.rst:2029 msgid "macpath" -msgstr "" +msgstr "macpath" #: ../../whatsnew/3.7.rst:2031 msgid "" @@ -2864,7 +2867,7 @@ msgstr "" #: ../../whatsnew/3.7.rst:2036 msgid "threading" -msgstr "" +msgstr "threading" #: ../../whatsnew/3.7.rst:2038 msgid "" @@ -2889,7 +2892,7 @@ msgstr "" #: ../../whatsnew/3.7.rst:2062 msgid "sunau" -msgstr "" +msgstr "sunau" #: ../../whatsnew/3.7.rst:2064 msgid "" @@ -2913,7 +2916,7 @@ msgstr "" #: ../../whatsnew/3.7.rst:2081 msgid "wave" -msgstr "" +msgstr "wave" #: ../../whatsnew/3.7.rst:2083 msgid "" diff --git a/whatsnew/3.8.po b/whatsnew/3.8.po index 34eb74c448..862ec3b7d7 100644 --- a/whatsnew/3.8.po +++ b/whatsnew/3.8.po @@ -20,15 +20,15 @@ msgstr "" #: ../../whatsnew/3.8.rst:3 msgid "What's New In Python 3.8" -msgstr "" +msgstr "Python 3.8 有什麼新功能" #: ../../whatsnew/3.8.rst:0 msgid "Editor" -msgstr "" +msgstr "編輯者" #: ../../whatsnew/3.8.rst:45 msgid "Raymond Hettinger" -msgstr "" +msgstr "Raymond Hettinger" #: ../../whatsnew/3.8.rst:47 msgid "" @@ -761,6 +761,9 @@ msgstr "" #: ../../whatsnew/3.8.rst:610 msgid "This is *roughly* equivalent to::" msgstr "" +"這\\ *大致*\\ 等價於:\n" +"\n" +"::" #: ../../whatsnew/3.8.rst:627 msgid "" @@ -1692,6 +1695,9 @@ msgstr "" #: ../../whatsnew/3.8.rst:1378 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../whatsnew/3.8.rst:1401 msgid "venv" @@ -1962,15 +1968,15 @@ msgstr "" #: ../../whatsnew/3.8.rst:1569 msgid ":c:func:`Py_INCREF`, :c:func:`Py_DECREF`" -msgstr "" +msgstr ":c:func:`Py_INCREF`, :c:func:`Py_DECREF`" #: ../../whatsnew/3.8.rst:1570 msgid ":c:func:`Py_XINCREF`, :c:func:`Py_XDECREF`" -msgstr "" +msgstr ":c:func:`Py_XINCREF`, :c:func:`Py_XDECREF`" #: ../../whatsnew/3.8.rst:1571 msgid ":c:func:`PyObject_INIT`, :c:func:`PyObject_INIT_VAR`" -msgstr "" +msgstr ":c:func:`PyObject_INIT`, :c:func:`PyObject_INIT_VAR`" #: ../../whatsnew/3.8.rst:1572 msgid "" @@ -2686,7 +2692,7 @@ msgstr "" #: ../../whatsnew/3.8.rst:2062 ../../whatsnew/3.8.rst:2081 #: ../../whatsnew/3.8.rst:2100 msgid "Example:" -msgstr "" +msgstr "範例:" #: ../../whatsnew/3.8.rst:2078 msgid "" diff --git a/whatsnew/3.9.po b/whatsnew/3.9.po index a3ffedc232..e6e55dbb36 100644 --- a/whatsnew/3.9.po +++ b/whatsnew/3.9.po @@ -20,31 +20,31 @@ msgstr "" #: ../../whatsnew/3.9.rst:3 msgid "What's New In Python 3.9" -msgstr "" +msgstr "Python 3.9 有什麼新功能" #: ../../whatsnew/3.9.rst:0 msgid "Release" -msgstr "" +msgstr "發行版本" #: ../../whatsnew/3.9.rst:5 msgid "|release|" -msgstr "" +msgstr "|release|" #: ../../whatsnew/3.9.rst:0 msgid "Date" -msgstr "" +msgstr "日期" #: ../../whatsnew/3.9.rst:6 msgid "|today|" -msgstr "" +msgstr "|today|" #: ../../whatsnew/3.9.rst:0 msgid "Editor" -msgstr "" +msgstr "編輯者" #: ../../whatsnew/3.9.rst:7 msgid "Łukasz Langa" -msgstr "" +msgstr "Łukasz Langa" #: ../../whatsnew/3.9.rst:47 msgid "" @@ -236,6 +236,9 @@ msgstr "" #: ../../whatsnew/3.9.rst:152 ../../whatsnew/3.9.rst:285 msgid "Example::" msgstr "" +"範例:\n" +"\n" +"::" #: ../../whatsnew/3.9.rst:161 msgid "" @@ -272,7 +275,7 @@ msgstr "" #: ../../whatsnew/3.9.rst:183 ../../whatsnew/3.9.rst:1147 msgid "Example:" -msgstr "" +msgstr "範例:" #: ../../whatsnew/3.9.rst:191 msgid "" @@ -401,11 +404,11 @@ msgstr "" #: ../../whatsnew/3.9.rst:276 msgid "New Modules" -msgstr "" +msgstr "新模組" #: ../../whatsnew/3.9.rst:279 msgid "zoneinfo" -msgstr "" +msgstr "zoneinfo" #: ../../whatsnew/3.9.rst:281 msgid "" @@ -432,7 +435,7 @@ msgstr "" #: ../../whatsnew/3.9.rst:319 msgid "graphlib" -msgstr "" +msgstr "graphlib" #: ../../whatsnew/3.9.rst:321 msgid "" @@ -448,7 +451,7 @@ msgstr "" #: ../../whatsnew/3.9.rst:331 msgid "ast" -msgstr "" +msgstr "ast" #: ../../whatsnew/3.9.rst:333 msgid "" @@ -826,7 +829,7 @@ msgstr "" #: ../../whatsnew/3.9.rst:564 msgid "multiprocessing" -msgstr "" +msgstr "multiprocessing" #: ../../whatsnew/3.9.rst:566 msgid "" @@ -1280,11 +1283,11 @@ msgstr "" #: ../../whatsnew/3.9.rst:893 msgid ":func:`~binascii.b2a_hqx`, :func:`~binascii.a2b_hqx`" -msgstr "" +msgstr ":func:`~binascii.b2a_hqx`\\ 、\\ :func:`~binascii.a2b_hqx`" #: ../../whatsnew/3.9.rst:894 msgid ":func:`~binascii.rlecode_hqx`, :func:`~binascii.rledecode_hqx`" -msgstr "" +msgstr ":func:`~binascii.rlecode_hqx`\\ 、\\ :func:`~binascii.rledecode_hqx`" #: ../../whatsnew/3.9.rst:896 msgid "(Contributed by Victor Stinner in :issue:`39353`.)" @@ -2275,7 +2278,7 @@ msgstr "" #: ../../whatsnew/3.9.rst:1540 msgid "urllib.parse" -msgstr "" +msgstr "urllib.parse" #: ../../whatsnew/3.9.rst:1542 msgid ""