Skip to content

Commit 801adeb

Browse files
Update messages.pot as of version 0454c8e
1 parent 1efa1e8 commit 801adeb

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

locales/messages.pot

Lines changed: 14 additions & 14 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-05-17 20:46+0000\n"
11+
"POT-Creation-Date: 2025-05-18 19:05+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 <[email protected]>\n"
@@ -41,7 +41,7 @@ msgid "Writing new content"
4141
msgstr ""
4242

4343
#: ../source/contribute.rst:14
44-
msgid "Translate the guide"
44+
msgid "Translating the guide"
4545
msgstr ""
4646

4747
#: ../source/contribute.rst:16
@@ -1165,7 +1165,7 @@ msgid ":ref:`easy_install <easy_install>`, now `deprecated`_, was released in 20
11651165
msgstr ""
11661166

11671167
#: ../source/discussions/pip-vs-easy-install.rst:14
1168-
msgid ":ref:`pip` came later in 2008, as alternative to :ref:`easy_install <easy_install>`, although still largely built on top of :ref:`setuptools` components. It was notable at the time for *not* installing packages as :term:`Eggs <Egg>` or from :term:`Eggs <Egg>` (but rather simply as 'flat' packages from :term:`sdists <Source Distribution (or \"sdist\")>`), and introducing the idea of :ref:`Requirements Files <pip:Requirements Files>`, which gave users the power to easily replicate environments."
1168+
msgid ":ref:`pip` came later in 2008, as an alternative to :ref:`easy_install <easy_install>`, although still largely built on top of :ref:`setuptools` components. It was notable at the time for *not* installing packages as :term:`Eggs <Egg>` or from :term:`Eggs <Egg>` (but rather simply as 'flat' packages from :term:`sdists <Source Distribution (or \"sdist\")>`), and introducing the idea of :ref:`Requirements Files <pip:Requirements Files>`, which gave users the power to easily replicate environments."
11691169
msgstr ""
11701170

11711171
#: ../source/discussions/pip-vs-easy-install.rst:22
@@ -1818,7 +1818,7 @@ msgid "The decision which version number to choose is up to a project's maintain
18181818
msgstr ""
18191819

18201820
#: ../source/discussions/versioning.rst:74
1821-
msgid "There are known exceptions for selecting the next version number. The maintainers may consciously choose to break the assumption that the last version segment only contains backwards-compatible changes. One such case is when security vulnerability needs to be addressed. Security releases often come in patch versions but contain breaking changes inevitably."
1821+
msgid "There are known exceptions for selecting the next version number. The maintainers may consciously choose to break the assumption that the last version segment only contains backwards-compatible changes. One such case is when a security vulnerability needs to be addressed. Security releases often come in patch versions but contain breaking changes inevitably."
18221822
msgstr ""
18231823

18241824
#: ../source/discussions/versioning.rst:84
@@ -1863,7 +1863,7 @@ msgid "Calendar versioning"
18631863
msgstr ""
18641864

18651865
#: ../source/discussions/versioning.rst:126
1866-
msgid "Semantic versioning is not a suitable choice for all projects, such as those with a regular time based release cadence and a deprecation process that provides warnings for a number of releases prior to removal of a feature."
1866+
msgid "Semantic versioning is not a suitable choice for all projects, such as those with a regular time-based release cadence and a deprecation process that provides warnings for a number of releases prior to removal of a feature."
18671867
msgstr ""
18681868

18691869
#: ../source/discussions/versioning.rst:130
@@ -1887,7 +1887,7 @@ msgid "Serial versioning refers to the simplest possible versioning scheme, whic
18871887
msgstr ""
18881888

18891889
#: ../source/discussions/versioning.rst:150
1890-
msgid "Combinations of the above schemes are possible. For example, a project may combine date based versioning with serial versioning to create a *year.serial* numbering scheme that readily conveys the approximate age of a release, but doesn't otherwise commit to a particular release cadence within the year."
1890+
msgid "Combinations of the above schemes are possible. For example, a project may combine date-based versioning with serial versioning to create a *year.serial* numbering scheme that readily conveys the approximate age of a release, but doesn't otherwise commit to a particular release cadence within the year."
18911891
msgstr ""
18921892

18931893
#: ../source/discussions/versioning.rst:157
@@ -3057,7 +3057,7 @@ msgid "Creating and packaging command-line tools"
30573057
msgstr ""
30583058

30593059
#: ../source/guides/creating-command-line-tools.rst:7
3060-
msgid "This guide will walk you through creating and packaging a standalone command-line application that can be installed with :ref:`pipx`, a tool creating and managing :term:`Python Virtual Environments <Virtual Environment>` and exposing the executable scripts of packages (and available manual pages) for use on the command-line."
3060+
msgid "This guide will walk you through creating and packaging a standalone command-line application that can be installed with :ref:`pipx`, a tool for creating and managing :term:`Python Virtual Environments <Virtual Environment>` and exposing the executable scripts of packages (and available manual pages) for use on the command-line."
30613061
msgstr ""
30623062

30633063
#: ../source/guides/creating-command-line-tools.rst:12
@@ -3098,7 +3098,7 @@ msgid "Now, add an empty :file:`__init__.py` file, to define the project as a re
30983098
msgstr ""
30993099

31003100
#: ../source/guides/creating-command-line-tools.rst:99
3101-
msgid "The file :file:`__main__.py` marks the main entry point for the application when running it via :mod:`runpy` (i.e. ``python -m greetings``, which works immediately with flat layout, but requires installation of the package with src layout), so initizalize the command-line interface here:"
3101+
msgid "The file :file:`__main__.py` marks the main entry point for the application when running it via :mod:`runpy` (i.e. ``python -m greetings``, which works immediately with flat layout, but requires installation of the package with src layout), so initialize the command-line interface here:"
31023102
msgstr ""
31033103

31043104
#: ../source/guides/creating-command-line-tools.rst:111
@@ -3142,7 +3142,7 @@ msgid "To just run the program without installing it permanently, use ``pipx run
31423142
msgstr ""
31433143

31443144
#: ../source/guides/creating-command-line-tools.rst:165
3145-
msgid "This syntax is a bit unpractical, however; as the name of the entry point we defined above does not match the package name, we need to state explicitly which executable script to run (even though there is only on in existence)."
3145+
msgid "This syntax is a bit impractical, however; as the name of the entry point we defined above does not match the package name, we need to state explicitly which executable script to run (even though there is only on in existence)."
31463146
msgstr ""
31473147

31483148
#: ../source/guides/creating-command-line-tools.rst:168
@@ -4419,7 +4419,7 @@ msgid "Install a package"
44194419
msgstr ""
44204420

44214421
#: ../source/guides/installing-using-pip-and-virtual-environments.rst:203
4422-
msgid "For example,let's install the `Requests`_ library from the :term:`Python Package Index (PyPI)`:"
4422+
msgid "For example, let's install the `Requests`_ library from the :term:`Python Package Index (PyPI)`:"
44234423
msgstr ""
44244424

44254425
#: ../source/guides/installing-using-pip-and-virtual-environments.rst:218
@@ -6890,7 +6890,7 @@ msgid "Explanations and Discussions"
68906890
msgstr ""
68916891

68926892
#: ../source/index.rst:82
6893-
msgid "The :doc:`discussions/index` section for in-depth explanations and discussion about topics, such as:"
6893+
msgid "The :doc:`discussions/index` section provides in-depth explanations and discussion about topics, such as:"
68946894
msgstr ""
68956895

68966896
#: ../source/index.rst:85
@@ -15605,7 +15605,7 @@ msgid "Source distribution format"
1560515605
msgstr ""
1560615606

1560715607
#: ../source/specifications/source-distribution-format.rst:8
15608-
msgid "The current standard format of source distribution format is identified by the presence of a :file:`pyproject.toml` file in the distribution archive. The layout of such a distribution was originally specified in :pep:`517` and is formally documented here."
15608+
msgid "The current standard source distribution format is identified by the presence of a :file:`pyproject.toml` file in the distribution archive. The layout of such a distribution was originally specified in :pep:`517` and is formally documented here."
1560915609
msgstr ""
1561015610

1561115611
#: ../source/specifications/source-distribution-format.rst:13
@@ -15621,7 +15621,7 @@ msgid "Source trees"
1562115621
msgstr ""
1562215622

1562315623
#: ../source/specifications/source-distribution-format.rst:28
15624-
msgid "A *source tree* is a collection of files and directories -- like a version control system checkout -- which contains a :file:`pyproject.toml` file that can be use to build a source distribution from the contained files and directories. :pep:`517` and :pep:`518` specify what is required to meet the definition of what :file:`pyproject.toml` must contain for something to be deemed a source tree."
15624+
msgid "A *source tree* is a collection of files and directories -- like a version control system checkout -- which contains a :file:`pyproject.toml` file that can be used to build a source distribution from the contained files and directories. :pep:`517` and :pep:`518` specify what is required to meet the definition of what :file:`pyproject.toml` must contain for something to be deemed a source tree."
1562515625
msgstr ""
1562615626

1562715627
#: ../source/specifications/source-distribution-format.rst:38
@@ -15994,7 +15994,7 @@ msgid "``X.Y`` and ``X.Y.0`` are not considered distinct release numbers, as the
1599415994
msgstr ""
1599515995

1599615996
#: ../source/specifications/version-specifiers.rst:229
15997-
msgid "Date based release segments are also permitted. An example of a date based release scheme using the year and month of the release::"
15997+
msgid "Date-based release segments are also permitted. An example of a date-based release scheme using the year and month of the release::"
1599815998
msgstr ""
1599915999

1600016000
#: ../source/specifications/version-specifiers.rst:243

0 commit comments

Comments
 (0)