Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6b0eb4f

Browse files
[po] auto sync
1 parent ff7bff8 commit 6b0eb4f

3 files changed

Lines changed: 28 additions & 16 deletions

File tree

library/gzip.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ msgstr "添加了 *mtime* 形参用于可重复的输出。"
318318
msgid ""
319319
"Decompress the *data*, returning a :class:`bytes` object containing the "
320320
"uncompressed data."
321-
msgstr "解压数据,返回一个 :class:`bytes` 包含未解压数据的对象。"
321+
msgstr "解压缩 *data*,返回一个包含未压缩数据的 :class:`bytes` 对象。"
322322

323323
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/gzip.rst:189
324324
msgid "Examples of usage"

library/json.po

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -844,36 +844,39 @@ msgid ""
844844
" this module does not and has never implemented that restriction in either "
845845
"its serializer or its deserializer."
846846
msgstr ""
847+
"过时的 :rfc:`4627` 指定的旧版本 JSON 要求 JSON 文本顶级值必须是 JSON 对象或数组( Python "
848+
":class:`dict` 或 :class:`list` ),并且不能是 JSON null 值,布尔值,数值或者字符串值。 :rfc:`7159` "
849+
"移除这个限制,此模块没有并且从未在序列化器和反序列化器中实现这个限制。"
847850

848851
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/json.rst:641
849852
msgid ""
850853
"Regardless, for maximum interoperability, you may wish to voluntarily adhere"
851854
" to the restriction yourself."
852-
msgstr ""
855+
msgstr "无论如何,为了最大化地获取互操作性,你可能希望自己遵守该原则。"
853856

854857
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/json.rst:646
855858
msgid "Implementation Limitations"
856-
msgstr ""
859+
msgstr "实现限制"
857860

858861
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/json.rst:648
859862
msgid "Some JSON deserializer implementations may set limits on:"
860-
msgstr ""
863+
msgstr "一些 JSON 反序列化器的实现应该在以下方面做出限制:"
861864

862865
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/json.rst:650
863866
msgid "the size of accepted JSON texts"
864-
msgstr ""
867+
msgstr "可接受的 JSON 文本大小"
865868

866869
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/json.rst:651
867870
msgid "the maximum level of nesting of JSON objects and arrays"
868-
msgstr ""
871+
msgstr "嵌套 JSON 对象和数组的最高水平"
869872

870873
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/json.rst:652
871874
msgid "the range and precision of JSON numbers"
872-
msgstr ""
875+
msgstr "JSON 数字的范围和精度"
873876

874877
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/json.rst:653
875878
msgid "the content and maximum length of JSON strings"
876-
msgstr ""
879+
msgstr "JSON 字符串的内容和最大长度"
877880

878881
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/json.rst:655
879882
msgid ""

library/lzma.po

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,7 @@ msgid ""
473473
":const:`CHECK_UNKNOWN` until enough of the input has been decoded to "
474474
"determine what integrity check it uses."
475475
msgstr ""
476+
"输入流使用的一致性检查的 ID。 这可能为 :const:`CHECK_UNKNOWN` 直到已解压了足够的输入数据来确定它所使用的一致性检查。"
476477

477478
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:275
478479
msgid "``True`` if the end-of-stream marker has been reached."
@@ -484,7 +485,7 @@ msgstr "压缩数据流的末尾还有数据。"
484485

485486
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:281
486487
msgid "Before the end of the stream is reached, this will be ``b\"\"``."
487-
msgstr ""
488+
msgstr "在达到数据流末尾之前,这个值将为 ``b\"\"``。"
488489

489490
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:285
490491
msgid ""
@@ -496,32 +497,35 @@ msgstr "如果在要求新的未解压缩输入之前 :meth:`.decompress` 方法
496497
msgid ""
497498
"Compress *data* (a :class:`bytes` object), returning the compressed data as "
498499
"a :class:`bytes` object."
499-
msgstr ""
500+
msgstr "压缩 *data* (一个 :class:`bytes` 对象),返回包含压缩数据的 :class:`bytes` 对象。"
500501

501502
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:295
502503
msgid ""
503504
"See :class:`LZMACompressor` above for a description of the *format*, "
504505
"*check*, *preset* and *filters* arguments."
505506
msgstr ""
507+
"参见上文的 :class:`LZMACompressor` 了解有关 *format*, *check*, *preset* 和 *filters* "
508+
"参数的说明。"
506509

507510
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:301
508511
msgid ""
509512
"Decompress *data* (a :class:`bytes` object), returning the uncompressed data"
510513
" as a :class:`bytes` object."
511-
msgstr ""
514+
msgstr "解压缩 *data* (一个 :class:`bytes` 对象),返回包含解压缩数据的 :class:`bytes` 对象。"
512515

513516
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:304
514517
msgid ""
515518
"If *data* is the concatenation of multiple distinct compressed streams, "
516519
"decompress all of these streams, and return the concatenation of the "
517520
"results."
518-
msgstr ""
521+
msgstr "如果 *data* 是多个单独压缩数据流的拼接,则解压缩所有相应数据流,并返回结果的拼接。"
519522

520523
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:307
521524
msgid ""
522525
"See :class:`LZMADecompressor` above for a description of the *format*, "
523526
"*memlimit* and *filters* arguments."
524527
msgstr ""
528+
"参见上文的 :class:`LZMADecompressor` 了解有关 *format*, *memlimit* 和 *filters* 参数的说明。"
525529

526530
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:312
527531
msgid "Miscellaneous"
@@ -530,7 +534,7 @@ msgstr "杂项"
530534
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:316
531535
msgid ""
532536
"Return ``True`` if the given integrity check is supported on this system."
533-
msgstr ""
537+
msgstr "如果本系统支持给定的一致性检查则返回 ``True``。"
534538

535539
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:318
536540
msgid ""
@@ -539,10 +543,12 @@ msgid ""
539543
" using a version of :program:`liblzma` that was compiled with a limited "
540544
"feature set."
541545
msgstr ""
546+
":const:`CHECK_NONE` 和 :const:`CHECK_CRC32` 总是受支持。 :const:`CHECK_CRC64` 和 "
547+
":const:`CHECK_SHA256` 或许不可用,如果你正在使用基于受限制特性集编译的 :program:`liblzma` 版本的话。"
542548

543549
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:327
544550
msgid "Specifying custom filter chains"
545-
msgstr ""
551+
msgstr "指定自定义的过滤器链"
546552

547553
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:329
548554
msgid ""
@@ -551,20 +557,23 @@ msgid ""
551557
"must contain the key ``\"id\"``, and may contain additional keys to specify "
552558
"filter-dependent options. Valid filter IDs are as follows:"
553559
msgstr ""
560+
"过滤器链描述符是由字典组成的序列,其中每个字典包含单个过滤器的 ID 和选项。 每个字典必须包含键 "
561+
"``\"id\"``,并可能包含额外的键用来指定基于过滤器的选项。 有效的过滤器 ID 如下:"
554562

555563
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:336
556564
msgid "Compression filters:"
557-
msgstr ""
565+
msgstr "压缩过滤器:"
558566

559567
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:335
560568
msgid ":const:`FILTER_LZMA1` (for use with :const:`FORMAT_ALONE`)"
561-
msgstr ""
569+
msgstr ":const:`FILTER_LZMA1` (配合 :const:`FORMAT_ALONE` 使用)"
562570

563571
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:336
564572
msgid ""
565573
":const:`FILTER_LZMA2` (for use with :const:`FORMAT_XZ` and "
566574
":const:`FORMAT_RAW`)"
567575
msgstr ""
576+
":const:`FILTER_LZMA2` (配合 :const:`FORMAT_XZ` 和 :const:`FORMAT_RAW` 使用)"
568577

569578
#: /home/travis/build/python/cpython-doc-catalog/Doc/library/lzma.rst:339
570579
msgid "Delta filter:"

0 commit comments

Comments
 (0)