Skip to content

Commit a80108d

Browse files
Update messages.pot as of version bdda06f
1 parent cab491b commit a80108d

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

locales/messages.pot

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python Packaging User Guide \n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-10-17 01:14+0000\n"
11+
"POT-Creation-Date: 2025-10-17 08:09+0000\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -10659,15 +10659,15 @@ msgid "Dependency Groups"
1065910659
msgstr ""
1066010660

1066110661
#: ../source/specifications/dependency-groups.rst:7
10662-
msgid "This specification defines Dependency Groups, a mechanism for storing package requirements in ``pyproject.toml`` files such that they are not included in project metadata when it is built."
10662+
msgid "This specification defines dependency groups, a mechanism for storing package requirements in ``pyproject.toml`` files such that they are not included in project metadata when it is built."
1066310663
msgstr ""
1066410664

1066510665
#: ../source/specifications/dependency-groups.rst:11
10666-
msgid "Dependency Groups are suitable for internal development use-cases like linting and testing, as well as for projects which are not built for distribution, like collections of related scripts."
10666+
msgid "Dependency groups are suitable for internal development use-cases like linting and testing, as well as for projects which are not built for distribution, like collections of related scripts."
1066710667
msgstr ""
1066810668

1066910669
#: ../source/specifications/dependency-groups.rst:15
10670-
msgid "Fundamentally, Dependency Groups should be thought of as being a standardized subset of the capabilities of ``requirements.txt`` files (which are ``pip``-specific)."
10670+
msgid "Fundamentally, dependency groups should be thought of as being a standardized subset of the capabilities of ``requirements.txt`` files (which are ``pip``-specific)."
1067110671
msgstr ""
1067210672

1067310673
#: ../source/specifications/dependency-groups.rst:25
@@ -10683,7 +10683,7 @@ msgid "The ``[dependency-groups]`` Table"
1068310683
msgstr ""
1068410684

1068510685
#: ../source/specifications/dependency-groups.rst:41
10686-
msgid "Dependency Groups are defined as a table in ``pyproject.toml`` named ``dependency-groups``. The ``dependency-groups`` table contains an arbitrary number of user-defined keys, each of which has, as its value, a list of requirements."
10686+
msgid "Dependency groups are defined as a table in ``pyproject.toml`` named ``dependency-groups``. The ``dependency-groups`` table contains an arbitrary number of user-defined keys, each of which has, as its value, a list of requirements."
1068710687
msgstr ""
1068810688

1068910689
#: ../source/specifications/dependency-groups.rst:46
@@ -10731,47 +10731,47 @@ msgid "Package Building"
1073110731
msgstr ""
1073210732

1073310733
#: ../source/specifications/dependency-groups.rst:104
10734-
msgid "Build backends MUST NOT include Dependency Group data in built distributions as package metadata. This means that sdist ``PKG-INFO`` and wheel ``METADATA`` files should not include referenceable fields containing Dependency Groups."
10734+
msgid "Build backends MUST NOT include Dependency Group data in built distributions as package metadata. This means that sdist ``PKG-INFO`` and wheel ``METADATA`` files should not include referenceable fields containing dependency groups."
1073510735
msgstr ""
1073610736

1073710737
#: ../source/specifications/dependency-groups.rst:108
10738-
msgid "It is, however, valid to use Dependency Groups in the evaluation of dynamic metadata, and ``pyproject.toml`` files included in sdists will still contain ``[dependency-groups]``. However, the table's contents are not part of a built package's interfaces."
10738+
msgid "It is, however, valid to use dependency groups in the evaluation of dynamic metadata, and ``pyproject.toml`` files included in sdists will still contain ``[dependency-groups]``. However, the table's contents are not part of a built package's interfaces."
1073910739
msgstr ""
1074010740

1074110741
#: ../source/specifications/dependency-groups.rst:114
1074210742
msgid "Installing Dependency Groups & Extras"
1074310743
msgstr ""
1074410744

1074510745
#: ../source/specifications/dependency-groups.rst:116
10746-
msgid "There is no syntax or specification-defined interface for installing or referring to Dependency Groups. Tools are expected to provide dedicated interfaces for this purpose."
10746+
msgid "There is no syntax or specification-defined interface for installing or referring to dependency groups. Tools are expected to provide dedicated interfaces for this purpose."
1074710747
msgstr ""
1074810748

1074910749
#: ../source/specifications/dependency-groups.rst:120
10750-
msgid "Tools MAY choose to provide the same or similar interfaces for interacting with Dependency Groups as they do for managing extras. Tools authors are advised that the specification does not forbid having an extra whose name matches a Dependency Group. Separately, users are advised to avoid creating Dependency Groups whose names match extras, and tools MAY treat such matching as an error."
10750+
msgid "Tools MAY choose to provide the same or similar interfaces for interacting with dependency groups as they do for managing extras. Tools authors are advised that the specification does not forbid having an extra whose name matches a Dependency Group. Separately, users are advised to avoid creating dependency groups whose names match extras, and tools MAY treat such matching as an error."
1075110751
msgstr ""
1075210752

1075310753
#: ../source/specifications/dependency-groups.rst:128
1075410754
msgid "Validation and Compatibility"
1075510755
msgstr ""
1075610756

1075710757
#: ../source/specifications/dependency-groups.rst:130
10758-
msgid "Tools supporting Dependency Groups may want to validate data before using it. When implementing such validation, authors should be aware of the possibility of future extensions to the specification, so that they do not unnecessarily emit errors or warnings."
10758+
msgid "Tools supporting dependency groups may want to validate data before using it. When implementing such validation, authors should be aware of the possibility of future extensions to the specification, so that they do not unnecessarily emit errors or warnings."
1075910759
msgstr ""
1076010760

1076110761
#: ../source/specifications/dependency-groups.rst:135
10762-
msgid "Tools SHOULD error when evaluating or processing unrecognized data in Dependency Groups."
10762+
msgid "Tools SHOULD error when evaluating or processing unrecognized data in dependency groups."
1076310763
msgstr ""
1076410764

1076510765
#: ../source/specifications/dependency-groups.rst:138
10766-
msgid "Tools SHOULD NOT eagerly validate the contents of *all* Dependency Groups unless they have a need to do so."
10766+
msgid "Tools SHOULD NOT eagerly validate the contents of *all* dependency groups unless they have a need to do so."
1076710767
msgstr ""
1076810768

1076910769
#: ../source/specifications/dependency-groups.rst:141
1077010770
msgid "This means that in the presence of the following data, most tools should allow the ``foo`` group to be used and only error if the ``bar`` group is used:"
1077110771
msgstr ""
1077210772

1077310773
#: ../source/specifications/dependency-groups.rst:152
10774-
msgid "There are several known cases of tools which have good cause to be stricter. Linters and validators are an example, as their purpose is to validate the contents of all Dependency Groups."
10774+
msgid "There are several known cases of tools which have good cause to be stricter. Linters and validators are an example, as their purpose is to validate the contents of all dependency groups."
1077510775
msgstr ""
1077610776

1077710777
#: ../source/specifications/dependency-groups.rst:157

0 commit comments

Comments
 (0)