Skip to content

Commit 109ffa8

Browse files
github-actions[bot]cvvergara
authored andcommitted
Update locale: commit 9c892b5
1 parent 7aaaa2a commit 109ffa8

File tree

2 files changed

+274
-22
lines changed

2 files changed

+274
-22
lines changed

locale/en/LC_MESSAGES/pgrouting_doc_strings.po

Lines changed: 149 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: pgRouting v3.8\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2025-03-30 03:07+0000\n"
11+
"POT-Creation-Date: 2025-04-04 16:10+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"
@@ -3921,10 +3921,19 @@ msgstr ""
39213921
msgid "pgRouting 3.8.0 Release Notes"
39223922
msgstr ""
39233923

3924+
#, python-format
3925+
msgid ""
3926+
"To see all issues & pull requests closed by this release see the `Git "
3927+
"closed milestone for 3.8.0 "
3928+
"<https://github.com/pgRouting/pgrouting/issues?utf8=%E2%9C%93&q=milestone%3A%22Release%203.8.0%22>`__"
3929+
msgstr ""
3930+
39243931
msgid "Promotion to official function of pgRouting."
39253932
msgstr ""
39263933

3927-
msgid "pgr_extractVertices"
3934+
msgid ""
3935+
"`#2772 <https://github.com/pgRouting/pgrouting/issues/2772>`__: "
3936+
"pgr_extractVertices"
39283937
msgstr ""
39293938

39303939
msgid "Error messages adjustment."
@@ -3933,18 +3942,28 @@ msgstr ""
39333942
msgid "Function promoted to official."
39343943
msgstr ""
39353944

3936-
msgid "pgr_degree"
3945+
msgid "`#2760 <https://github.com/pgRouting/pgrouting/issues/2760>`__: pgr_degree"
39373946
msgstr ""
39383947

39393948
msgid "New signature with only Edges SQL."
39403949
msgstr ""
39413950

3942-
msgid "pgr_findCloseEdges"
3951+
msgid ""
3952+
"`#2774 <https://github.com/pgRouting/pgrouting/issues/2774>`__: "
3953+
"pgr_findCloseEdges"
39433954
msgstr ""
39443955

39453956
msgid "``partial`` option is removed."
39463957
msgstr ""
39473958

3959+
msgid "Deprecation of functions."
3960+
msgstr ""
3961+
3962+
msgid ""
3963+
"`#2753 <https://github.com/pgRouting/pgrouting/issues/2753>`__: "
3964+
"pgr_analyzeGraph"
3965+
msgstr ""
3966+
39483967
msgid "Official functions changes"
39493968
msgstr ""
39503969

@@ -4023,6 +4042,119 @@ msgstr ""
40234042
msgid "All deprecated functions will be removed on next mayor version 4.0.0"
40244043
msgstr ""
40254044

4045+
msgid "Migration of ``pgr_analyzeGraph``"
4046+
msgstr ""
4047+
4048+
msgid ""
4049+
"Starting from `v3.8.0 "
4050+
"<https://docs.pgrouting.org/3.8/en/migration.html>`__"
4051+
msgstr ""
4052+
4053+
msgid "**Before Deprecation:** The following was calculated:"
4054+
msgstr ""
4055+
4056+
msgid "Number of isolated segments."
4057+
msgstr ""
4058+
4059+
msgid "Number of dead ends."
4060+
msgstr ""
4061+
4062+
msgid "Number of potential gaps found near dead ends."
4063+
msgstr ""
4064+
4065+
msgid "Number of intersections. (between 2 edges)"
4066+
msgstr ""
4067+
4068+
msgid "WHERE"
4069+
msgstr ""
4070+
4071+
msgid "Graph component"
4072+
msgstr ""
4073+
4074+
msgid "A connected subgraph that is not part of any larger connected subgraph."
4075+
msgstr ""
4076+
4077+
msgid "Isolated segment"
4078+
msgstr ""
4079+
4080+
msgid "A graph component with only one segment."
4081+
msgstr ""
4082+
4083+
msgid "Dead ends"
4084+
msgstr ""
4085+
4086+
msgid "A vertex that participates in only one edge."
4087+
msgstr ""
4088+
4089+
msgid "gaps"
4090+
msgstr ""
4091+
4092+
msgid "Space between two geometries."
4093+
msgstr ""
4094+
4095+
msgid "Intersection"
4096+
msgstr ""
4097+
4098+
msgid "Is a topological relationship between two geometries."
4099+
msgstr ""
4100+
4101+
msgid "Migration."
4102+
msgstr ""
4103+
4104+
msgid "Components."
4105+
msgstr ""
4106+
4107+
msgid ""
4108+
"Instead of counting only isolated segments, determine all the components "
4109+
"of the graph."
4110+
msgstr ""
4111+
4112+
msgid "Depending of the final application requirements use:"
4113+
msgstr ""
4114+
4115+
msgid ":doc:`pgr_connectedComponents`"
4116+
msgstr ""
4117+
4118+
msgid ":doc:`pgr_strongComponents`"
4119+
msgstr ""
4120+
4121+
msgid ":doc:`pgr_biconnectedComponents`"
4122+
msgstr ""
4123+
4124+
msgid "For example:"
4125+
msgstr ""
4126+
4127+
msgid "Dead ends."
4128+
msgstr ""
4129+
4130+
msgid ""
4131+
"Instead of counting the dead ends, determine all the dead ends of the "
4132+
"graph using :doc:`pgr_degree`."
4133+
msgstr ""
4134+
4135+
msgid "Potential gaps near dead ends."
4136+
msgstr ""
4137+
4138+
msgid ""
4139+
"Instead of counting potential gaps between geometries, determine the "
4140+
"geometric gaps in the graph using :doc:`pgr_findCloseEdges`."
4141+
msgstr ""
4142+
4143+
msgid "Topological relationships."
4144+
msgstr ""
4145+
4146+
msgid ""
4147+
"Instead of counting intersections, determine topological relationships "
4148+
"between geometries."
4149+
msgstr ""
4150+
4151+
msgid ""
4152+
"Several PostGIS functions can be used: `ST_Intersects "
4153+
"<https://postgis.net/docs/ST_Intersects.html>`__, `ST_Crosses "
4154+
"<https://postgis.net/docs/ST_Crosses.html>`__, `ST_Overlaps "
4155+
"<https://postgis.net/docs/ST_Overlaps.html>`__, etc."
4156+
msgstr ""
4157+
40264158
msgid "Migration of ``pgr_aStar``"
40274159
msgstr ""
40284160

@@ -5728,9 +5860,6 @@ msgid ""
57285860
"is described on :doc:`contraction-family`"
57295861
msgstr ""
57305862

5731-
msgid "Dead ends"
5732-
msgstr ""
5733-
57345863
msgid "To get the dead ends:"
57355864
msgstr ""
57365865

@@ -7727,12 +7856,18 @@ msgstr ""
77277856
msgid "`ST_ConcaveHull <https://postgis.net/docs/ST_ConcaveHull.html>`__"
77287857
msgstr ""
77297858

7730-
msgid "``pgr_analyzeGraph``"
7859+
msgid "``pgr_analyzeGraph`` -- Deprecated since 3.8.0"
77317860
msgstr ""
77327861

77337862
msgid "``pgr_analyzeGraph`` — Analyzes the network topology."
77347863
msgstr ""
77357864

7865+
msgid "Version 3.8.0"
7866+
msgstr ""
7867+
7868+
msgid "Deprecated function."
7869+
msgstr ""
7870+
77367871
msgid "The function returns:"
77377872
msgstr ""
77387873

@@ -9112,9 +9247,6 @@ msgid ""
91129247
"contracted vertices and edges."
91139248
msgstr ""
91149249

9115-
msgid "Version 3.8.0"
9116-
msgstr ""
9117-
91189250
msgid "Name change from ``pgr_contractGraph``"
91199251
msgstr ""
91209252

@@ -15771,6 +15903,9 @@ msgstr ""
1577115903
msgid "Changes on the documentation to the following:"
1577215904
msgstr ""
1577315905

15906+
msgid "pgr_degree"
15907+
msgstr ""
15908+
1577415909
msgid "pgr_dijkstra"
1577515910
msgstr ""
1577615911

@@ -16162,6 +16297,9 @@ msgstr ""
1616216297
msgid "pgr_sequentialVertexColoring"
1616316298
msgstr ""
1616416299

16300+
msgid "pgr_extractVertices"
16301+
msgstr ""
16302+
1616516303
msgid "Traversal"
1616616304
msgstr ""
1616716305

0 commit comments

Comments
 (0)