Skip to content

Commit c2c0474

Browse files
[po] auto sync
1 parent 4b2a5e0 commit c2c0474

15 files changed

Lines changed: 1169 additions & 1164 deletions

File tree

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "0.18%", "updated_at": "2025-08-31T15:19:06Z"}
1+
{"translation": "0.18%", "updated_at": "2025-09-03T15:22:21Z"}

extending/extending.mo

0 Bytes
Binary file not shown.

extending/extending.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-08-29 14:17+0000\n"
14+
"POT-Creation-Date: 2025-09-03 14:18+0000\n"
1515
"PO-Revision-Date: 2025-08-02 17:33+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n"
@@ -612,7 +612,7 @@ msgstr ""
612612
#: ../../extending/extending.rst:403
613613
msgid ""
614614
"When embedding Python, the :c:func:`!PyInit_spam` function is not called "
615-
"automatically unless there's an entry in the :c:data:`PyImport_Inittab` "
615+
"automatically unless there's an entry in the :c:data:`!PyImport_Inittab` "
616616
"table. To add the module to the initialization table, use "
617617
":c:func:`PyImport_AppendInittab`, optionally followed by an import of the "
618618
"module::"

library/xml.sax.handler.mo

-28 Bytes
Binary file not shown.

library/xml.sax.handler.po

Lines changed: 56 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2025
7+
# python-doc bot, 2025
88
#
99
#, fuzzy
1010
msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-05-09 14:19+0000\n"
15-
"PO-Revision-Date: 2025-07-18 18:49+0000\n"
16-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n"
14+
"POT-Creation-Date: 2025-09-03 14:18+0000\n"
15+
"PO-Revision-Date: 2025-08-02 17:35+0000\n"
16+
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n"
1818
"MIME-Version: 1.0\n"
1919
"Content-Type: text/plain; charset=UTF-8\n"
@@ -361,63 +361,62 @@ msgstr ""
361361
#: ../../library/xml.sax.handler.rst:249
362362
msgid ""
363363
"The *name* parameter contains the raw XML 1.0 name of the element type as a "
364-
"string and the *attrs* parameter holds an object of the "
365-
":class:`~xml.sax.xmlreader.Attributes` interface (see :ref:`attributes-"
366-
"objects`) containing the attributes of the element. The object passed as "
367-
"*attrs* may be re-used by the parser; holding on to a reference to it is not"
368-
" a reliable way to keep a copy of the attributes. To keep a copy of the "
369-
"attributes, use the :meth:`copy` method of the *attrs* object."
364+
"string and the *attrs* parameter holds an object of the :ref:`Attributes "
365+
"<attributes-objects>` interface containing the attributes of the element. "
366+
"The object passed as *attrs* may be re-used by the parser; holding on to a "
367+
"reference to it is not a reliable way to keep a copy of the attributes. To "
368+
"keep a copy of the attributes, use the :meth:`copy` method of the *attrs* "
369+
"object."
370370
msgstr ""
371371

372-
#: ../../library/xml.sax.handler.rst:261
372+
#: ../../library/xml.sax.handler.rst:260
373373
msgid "Signals the end of an element in non-namespace mode."
374374
msgstr ""
375375

376-
#: ../../library/xml.sax.handler.rst:263
376+
#: ../../library/xml.sax.handler.rst:262
377377
msgid ""
378378
"The *name* parameter contains the name of the element type, just as with the"
379379
" :meth:`startElement` event."
380380
msgstr ""
381381

382-
#: ../../library/xml.sax.handler.rst:269
382+
#: ../../library/xml.sax.handler.rst:268
383383
msgid "Signals the start of an element in namespace mode."
384384
msgstr ""
385385

386-
#: ../../library/xml.sax.handler.rst:271
386+
#: ../../library/xml.sax.handler.rst:270
387387
msgid ""
388388
"The *name* parameter contains the name of the element type as a ``(uri, "
389389
"localname)`` tuple, the *qname* parameter contains the raw XML 1.0 name used"
390390
" in the source document, and the *attrs* parameter holds an instance of the "
391-
":class:`~xml.sax.xmlreader.AttributesNS` interface (see :ref:`attributes-ns-"
392-
"objects`) containing the attributes of the element. If no namespace is "
393-
"associated with the element, the *uri* component of *name* will be ``None``."
394-
" The object passed as *attrs* may be re-used by the parser; holding on to a"
395-
" reference to it is not a reliable way to keep a copy of the attributes. To"
396-
" keep a copy of the attributes, use the :meth:`copy` method of the *attrs* "
397-
"object."
391+
":ref:`AttributesNS <attributes-ns-objects>` interface containing the "
392+
"attributes of the element. If no namespace is associated with the element, "
393+
"the *uri* component of *name* will be ``None``. The object passed as "
394+
"*attrs* may be re-used by the parser; holding on to a reference to it is not"
395+
" a reliable way to keep a copy of the attributes. To keep a copy of the "
396+
"attributes, use the :meth:`copy` method of the *attrs* object."
398397
msgstr ""
399398

400-
#: ../../library/xml.sax.handler.rst:282
399+
#: ../../library/xml.sax.handler.rst:280
401400
msgid ""
402401
"Parsers may set the *qname* parameter to ``None``, unless the "
403402
"``feature_namespace_prefixes`` feature is activated."
404403
msgstr ""
405404

406-
#: ../../library/xml.sax.handler.rst:288
405+
#: ../../library/xml.sax.handler.rst:286
407406
msgid "Signals the end of an element in namespace mode."
408407
msgstr ""
409408

410-
#: ../../library/xml.sax.handler.rst:290
409+
#: ../../library/xml.sax.handler.rst:288
411410
msgid ""
412411
"The *name* parameter contains the name of the element type, just as with the"
413412
" :meth:`startElementNS` method, likewise the *qname* parameter."
414413
msgstr ""
415414

416-
#: ../../library/xml.sax.handler.rst:296
415+
#: ../../library/xml.sax.handler.rst:294
417416
msgid "Receive notification of character data."
418417
msgstr ""
419418

420-
#: ../../library/xml.sax.handler.rst:298
419+
#: ../../library/xml.sax.handler.rst:296
421420
msgid ""
422421
"The Parser will call this method to report each chunk of character data. SAX"
423422
" parsers may return all contiguous character data in a single chunk, or they"
@@ -426,13 +425,13 @@ msgid ""
426425
"provides useful information."
427426
msgstr ""
428427

429-
#: ../../library/xml.sax.handler.rst:304
428+
#: ../../library/xml.sax.handler.rst:302
430429
msgid ""
431430
"*content* may be a string or bytes instance; the ``expat`` reader module "
432431
"always produces strings."
433432
msgstr ""
434433

435-
#: ../../library/xml.sax.handler.rst:309
434+
#: ../../library/xml.sax.handler.rst:307
436435
msgid ""
437436
"The earlier SAX 1 interface provided by the Python XML Special Interest "
438437
"Group used a more Java-like interface for this method. Since most parsers "
@@ -442,48 +441,48 @@ msgid ""
442441
"and *length* parameters."
443442
msgstr ""
444443

445-
#: ../../library/xml.sax.handler.rst:318
444+
#: ../../library/xml.sax.handler.rst:316
446445
msgid "Receive notification of ignorable whitespace in element content."
447446
msgstr ""
448447

449-
#: ../../library/xml.sax.handler.rst:320
448+
#: ../../library/xml.sax.handler.rst:318
450449
msgid ""
451450
"Validating Parsers must use this method to report each chunk of ignorable "
452451
"whitespace (see the W3C XML 1.0 recommendation, section 2.10): non-"
453452
"validating parsers may also use this method if they are capable of parsing "
454453
"and using content models."
455454
msgstr ""
456455

457-
#: ../../library/xml.sax.handler.rst:325
456+
#: ../../library/xml.sax.handler.rst:323
458457
msgid ""
459458
"SAX parsers may return all contiguous whitespace in a single chunk, or they "
460459
"may split it into several chunks; however, all of the characters in any "
461460
"single event must come from the same external entity, so that the Locator "
462461
"provides useful information."
463462
msgstr ""
464463

465-
#: ../../library/xml.sax.handler.rst:333
464+
#: ../../library/xml.sax.handler.rst:331
466465
msgid "Receive notification of a processing instruction."
467466
msgstr ""
468467

469-
#: ../../library/xml.sax.handler.rst:335
468+
#: ../../library/xml.sax.handler.rst:333
470469
msgid ""
471470
"The Parser will invoke this method once for each processing instruction "
472471
"found: note that processing instructions may occur before or after the main "
473472
"document element."
474473
msgstr ""
475474

476-
#: ../../library/xml.sax.handler.rst:339
475+
#: ../../library/xml.sax.handler.rst:337
477476
msgid ""
478477
"A SAX parser should never report an XML declaration (XML 1.0, section 2.8) "
479478
"or a text declaration (XML 1.0, section 4.3.1) using this method."
480479
msgstr ""
481480

482-
#: ../../library/xml.sax.handler.rst:345
481+
#: ../../library/xml.sax.handler.rst:343
483482
msgid "Receive notification of a skipped entity."
484483
msgstr ""
485484

486-
#: ../../library/xml.sax.handler.rst:347
485+
#: ../../library/xml.sax.handler.rst:345
487486
msgid ""
488487
"The Parser will invoke this method once for each entity skipped. Non-"
489488
"validating processors may skip entities if they have not seen the "
@@ -493,38 +492,38 @@ msgid ""
493492
"properties."
494493
msgstr ""
495494

496-
#: ../../library/xml.sax.handler.rst:357
495+
#: ../../library/xml.sax.handler.rst:355
497496
msgid "DTDHandler Objects"
498497
msgstr ""
499498

500-
#: ../../library/xml.sax.handler.rst:359
499+
#: ../../library/xml.sax.handler.rst:357
501500
msgid ":class:`DTDHandler` instances provide the following methods:"
502501
msgstr ""
503502

504-
#: ../../library/xml.sax.handler.rst:364
503+
#: ../../library/xml.sax.handler.rst:362
505504
msgid "Handle a notation declaration event."
506505
msgstr ""
507506

508-
#: ../../library/xml.sax.handler.rst:369
507+
#: ../../library/xml.sax.handler.rst:367
509508
msgid "Handle an unparsed entity declaration event."
510509
msgstr ""
511510

512-
#: ../../library/xml.sax.handler.rst:375
511+
#: ../../library/xml.sax.handler.rst:373
513512
msgid "EntityResolver Objects"
514513
msgstr ""
515514

516-
#: ../../library/xml.sax.handler.rst:380
515+
#: ../../library/xml.sax.handler.rst:378
517516
msgid ""
518517
"Resolve the system identifier of an entity and return either the system "
519518
"identifier to read from as a string, or an InputSource to read from. The "
520519
"default implementation returns *systemId*."
521520
msgstr ""
522521

523-
#: ../../library/xml.sax.handler.rst:388
522+
#: ../../library/xml.sax.handler.rst:386
524523
msgid "ErrorHandler Objects"
525524
msgstr ""
526525

527-
#: ../../library/xml.sax.handler.rst:390
526+
#: ../../library/xml.sax.handler.rst:388
528527
msgid ""
529528
"Objects with this interface are used to receive error and warning "
530529
"information from the :class:`~xml.sax.xmlreader.XMLReader`. If you create "
@@ -537,7 +536,7 @@ msgid ""
537536
"the passed-in exception object."
538537
msgstr ""
539538

540-
#: ../../library/xml.sax.handler.rst:403
539+
#: ../../library/xml.sax.handler.rst:401
541540
msgid ""
542541
"Called when the parser encounters a recoverable error. If this method does "
543542
"not raise an exception, parsing may continue, but further document "
@@ -546,29 +545,29 @@ msgid ""
546545
"document."
547546
msgstr ""
548547

549-
#: ../../library/xml.sax.handler.rst:411
548+
#: ../../library/xml.sax.handler.rst:409
550549
msgid ""
551550
"Called when the parser encounters an error it cannot recover from; parsing "
552551
"is expected to terminate when this method returns."
553552
msgstr ""
554553

555-
#: ../../library/xml.sax.handler.rst:417
554+
#: ../../library/xml.sax.handler.rst:415
556555
msgid ""
557556
"Called when the parser presents minor warning information to the "
558557
"application. Parsing is expected to continue when this method returns, and "
559558
"document information will continue to be passed to the application. Raising "
560559
"an exception in this method will cause parsing to end."
561560
msgstr ""
562561

563-
#: ../../library/xml.sax.handler.rst:426
562+
#: ../../library/xml.sax.handler.rst:424
564563
msgid "LexicalHandler Objects"
565564
msgstr ""
566565

567-
#: ../../library/xml.sax.handler.rst:427
566+
#: ../../library/xml.sax.handler.rst:425
568567
msgid "Optional SAX2 handler for lexical events."
569568
msgstr ""
570569

571-
#: ../../library/xml.sax.handler.rst:429
570+
#: ../../library/xml.sax.handler.rst:427
572571
msgid ""
573572
"This handler is used to obtain lexical information about an XML document. "
574573
"Lexical information includes information describing the document encoding "
@@ -577,38 +576,38 @@ msgid ""
577576
"used in the same manner as content handlers."
578577
msgstr ""
579578

580-
#: ../../library/xml.sax.handler.rst:435
579+
#: ../../library/xml.sax.handler.rst:433
581580
msgid ""
582581
"Set the LexicalHandler of an XMLReader by using the setProperty method with "
583582
"the property identifier ``'http://xml.org/sax/properties/lexical-handler'``."
584583
msgstr ""
585584

586-
#: ../../library/xml.sax.handler.rst:442
585+
#: ../../library/xml.sax.handler.rst:440
587586
msgid ""
588587
"Reports a comment anywhere in the document (including the DTD and outside "
589588
"the document element)."
590589
msgstr ""
591590

592-
#: ../../library/xml.sax.handler.rst:447
591+
#: ../../library/xml.sax.handler.rst:445
593592
msgid ""
594593
"Reports the start of the DTD declarations if the document has an associated "
595594
"DTD."
596595
msgstr ""
597596

598-
#: ../../library/xml.sax.handler.rst:452
597+
#: ../../library/xml.sax.handler.rst:450
599598
msgid "Reports the end of DTD declaration."
600599
msgstr ""
601600

602-
#: ../../library/xml.sax.handler.rst:456
601+
#: ../../library/xml.sax.handler.rst:454
603602
msgid "Reports the start of a CDATA marked section."
604603
msgstr ""
605604

606-
#: ../../library/xml.sax.handler.rst:458
605+
#: ../../library/xml.sax.handler.rst:456
607606
msgid ""
608607
"The contents of the CDATA marked section will be reported through the "
609608
"characters handler."
610609
msgstr ""
611610

612-
#: ../../library/xml.sax.handler.rst:463
611+
#: ../../library/xml.sax.handler.rst:461
613612
msgid "Reports the end of a CDATA marked section."
614613
msgstr ""

whatsnew/2.7.mo

-28 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)