Skip to content

Commit fbe1fa7

Browse files
github-actions[bot]cvvergara
authored andcommitted
Update locale: commit 4ebca04
1 parent a8eb23a commit fbe1fa7

File tree

2 files changed

+101
-148
lines changed

2 files changed

+101
-148
lines changed

locale/en/LC_MESSAGES/pgrouting_doc_strings.po

Lines changed: 63 additions & 92 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-04-08 14:07+0000\n"
11+
"POT-Creation-Date: 2025-04-08 20:02+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"
@@ -4132,7 +4132,7 @@ msgstr ""
41324132
msgid "All deprecated functions will be removed on next major version 4.0.0"
41334133
msgstr ""
41344134

4135-
msgid "Migration of ``pgr_createVerticesTable``"
4135+
msgid "Migration of ``pgr_createTopology``"
41364136
msgstr ""
41374137

41384138
msgid ""
@@ -4146,6 +4146,59 @@ msgstr ""
41464146
msgid "A table with `<edges>_vertices_pgr` was created."
41474147
msgstr ""
41484148

4149+
msgid ""
4150+
"**After Deprecation:** The user is responsible to create the complete "
4151+
"topology."
4152+
msgstr ""
4153+
4154+
msgid "Build a routing topology"
4155+
msgstr ""
4156+
4157+
msgid ""
4158+
"The basic information to use the majority of the pgRouting functions "
4159+
"``id, source, target, cost, [reverse_cost]`` is what in pgRouting is "
4160+
"called the routing topology."
4161+
msgstr ""
4162+
4163+
msgid ""
4164+
"``reverse_cost`` is optional but strongly recommended to have in order to"
4165+
" reduce the size of the database due to the size of the geometry columns."
4166+
" Having said that, in this documentation ``reverse_cost`` is used in this"
4167+
" documentation."
4168+
msgstr ""
4169+
4170+
msgid ""
4171+
"When the data comes with geometries and there is no routing topology, "
4172+
"then this step is needed."
4173+
msgstr ""
4174+
4175+
msgid ""
4176+
"All the start and end vertices of the geometries need an identifier that "
4177+
"is to be stored in a ``source`` and ``target`` columns of the table of "
4178+
"the data. Likewise, ``cost`` and ``reverse_cost`` need to have the value "
4179+
"of traversing the edge in both directions."
4180+
msgstr ""
4181+
4182+
msgid ""
4183+
"If the columns do not exist they need to be added to the table in "
4184+
"question. (see `ALTER TABLE <https://www.postgresql.org/docs/current/sql-"
4185+
"altertable.html>`__)"
4186+
msgstr ""
4187+
4188+
msgid ""
4189+
"The function :doc:`pgr_extractVertices` is used to create a vertices "
4190+
"table based on the edge identifier and the geometry of the edge of the "
4191+
"graph."
4192+
msgstr ""
4193+
4194+
msgid ""
4195+
"Finally using the data stored on the vertices tables the ``source`` and "
4196+
"``target`` are filled up."
4197+
msgstr ""
4198+
4199+
msgid "Migration of ``pgr_createVerticesTable``"
4200+
msgstr ""
4201+
41494202
msgid ""
41504203
"**After Deprecation:** The user is responsible to create the vertices "
41514204
"table, indexes, etc. They may use :doc:`pgr_extractVertices` for that "
@@ -5636,54 +5689,6 @@ msgid ""
56365689
"documentation and the `PostGIS <https://postgis.net/>`__ documentation."
56375690
msgstr ""
56385691

5639-
msgid "Build a routing topology"
5640-
msgstr ""
5641-
5642-
msgid ""
5643-
"The basic information to use the majority of the pgRouting functions "
5644-
"``id, source, target, cost, [reverse_cost]`` is what in pgRouting is "
5645-
"called the routing topology."
5646-
msgstr ""
5647-
5648-
msgid ""
5649-
"``reverse_cost`` is optional but strongly recommended to have in order to"
5650-
" reduce the size of the database due to the size of the geometry columns."
5651-
" Having said that, in this documentation ``reverse_cost`` is used in this"
5652-
" documentation."
5653-
msgstr ""
5654-
5655-
msgid ""
5656-
"When the data comes with geometries and there is no routing topology, "
5657-
"then this step is needed."
5658-
msgstr ""
5659-
5660-
msgid ""
5661-
"All the start and end vertices of the geometries need an identifier that "
5662-
"is to be stored in a ``source`` and ``target`` columns of the table of "
5663-
"the data. Likewise, ``cost`` and ``reverse_cost`` need to have the value "
5664-
"of traversing the edge in both directions."
5665-
msgstr ""
5666-
5667-
msgid ""
5668-
"If the columns do not exist they need to be added to the table in "
5669-
"question. (see `ALTER TABLE <https://www.postgresql.org/docs/current/sql-"
5670-
"altertable.html>`__)"
5671-
msgstr ""
5672-
5673-
msgid ""
5674-
"The function :doc:`pgr_extractVertices` is used to create a vertices "
5675-
"table based on the edge identifier and the geometry of the edge of the "
5676-
"graph."
5677-
msgstr ""
5678-
5679-
msgid ""
5680-
"Finally using the data stored on the vertices tables the ``source`` and "
5681-
"``target`` are filled up."
5682-
msgstr ""
5683-
5684-
msgid "See :doc:`sampledata` for an example for building a topology."
5685-
msgstr ""
5686-
56875692
msgid ""
56885693
"Data coming from OSM and using `osm2pgrouting "
56895694
"<https://github.com/pgRouting/osm2pgrouting>`__ as an import tool, comes "
@@ -8044,11 +8049,6 @@ msgid ""
80448049
"vertices information."
80458050
msgstr ""
80468051

8047-
msgid ""
8048-
"Use :doc:`pgr_createTopology` to create the topology and the vertices "
8049-
"table."
8050-
msgstr ""
8051-
80528052
msgid "The analyze graph function accepts the following parameters:"
80538053
msgstr ""
80548054

@@ -8135,11 +8135,6 @@ msgstr ""
81358135
msgid "The Vertices Table"
81368136
msgstr ""
81378137

8138-
msgid ""
8139-
"The vertices table can be created with :doc:`pgr_createTopology "
8140-
"<pgr_createTopology>`"
8141-
msgstr ""
8142-
81438138
msgid "The structure of the vertices table is:"
81448139
msgstr ""
81458140

@@ -8368,11 +8363,6 @@ msgid ""
83688363
"value is ``true``."
83698364
msgstr ""
83708365

8371-
msgid ""
8372-
"It is strongly recommended to use the named notation. See "
8373-
":doc:`pgr_createTopology` for examples."
8374-
msgstr ""
8375-
83768366
msgid "Fills completely the ``ein`` and ``eout`` columns of the vertices table."
83778367
msgstr ""
83788368

@@ -8385,9 +8375,6 @@ msgid ""
83858375
"**in** or **out** condition."
83868376
msgstr ""
83878377

8388-
msgid "The vertices table can be created with :doc:`pgr_createTopology`"
8389-
msgstr ""
8390-
83918378
msgid "``pgr_articulationPoints``"
83928379
msgstr ""
83938380

@@ -9747,9 +9734,6 @@ msgstr ""
97479734
msgid "Node :math:`3` is a dead end node after node :math:`1` is contracted."
97489735
msgstr ""
97499736

9750-
msgid "``forbidden_vertices``"
9751-
msgstr ""
9752-
97539737
msgid "``ARRAY[`` |ANY-INTEGER| ``]``"
97549738
msgstr ""
97559739

@@ -10050,7 +10034,7 @@ msgstr ""
1005010034
msgid "Create the contracted graph."
1005110035
msgstr ""
1005210036

10053-
msgid "``pgr_createTopology``"
10037+
msgid "``pgr_createTopology`` - Deprecated since v3.8.0"
1005410038
msgstr ""
1005510039

1005610040
msgid ""
@@ -10366,11 +10350,6 @@ msgid ""
1036610350
"algorithms."
1036710351
msgstr ""
1036810352

10369-
msgid ""
10370-
":doc:`pgr_createTopology` <pgr_create_topology>` to create a topology "
10371-
"based on the geometry."
10372-
msgstr ""
10373-
1037410353
msgid "``pgr_cuthillMckeeOrdering`` - Experimental"
1037510354
msgstr ""
1037610355

@@ -13278,9 +13257,6 @@ msgid ""
1327813257
"returned."
1327913258
msgstr ""
1328013259

13281-
msgid "There is no flow when source has the same vaule as target."
13282-
msgstr ""
13283-
1328413260
msgid "Uses the :doc:`pgr_pushRelabel <pgr_pushRelabel>` algorithm."
1328513261
msgstr ""
1328613262

@@ -13485,14 +13461,10 @@ msgstr ""
1348513461
msgid "``integer`` Segment number of the original edge"
1348613462
msgstr ""
1348713463

13488-
msgid ""
13489-
"``integer`` Empty source column to be used with :doc:`pgr_createTopology`"
13490-
" function"
13464+
msgid "``integer`` Empty source column"
1349113465
msgstr ""
1349213466

13493-
msgid ""
13494-
"``integer`` Empty target column to be used with :doc:`pgr_createTopology`"
13495-
" function"
13467+
msgid "``integer`` Empty target column"
1349613468
msgstr ""
1349713469

1349813470
msgid "the geom"
@@ -13559,12 +13531,6 @@ msgid ""
1355913531
"segmented."
1356013532
msgstr ""
1356113533

13562-
msgid ""
13563-
":doc:`topology-functions` for an overview of a topology for routing "
13564-
"algorithms. :doc:`pgr_createTopology` to create a topology based on the "
13565-
"geometry."
13566-
msgstr ""
13567-
1356813534
msgid "``pgr_pickDeliver`` - Experimental"
1356913535
msgstr ""
1357013536

@@ -15549,6 +15515,11 @@ msgid ""
1554915515
"pgr_analyzeGraph"
1555015516
msgstr ""
1555115517

15518+
msgid ""
15519+
"`#2750 <https://github.com/pgRouting/pgrouting/issues/2750>`__: "
15520+
"pgr_createTopology"
15521+
msgstr ""
15522+
1555215523
msgid ""
1555315524
"`#2826 <https://github.com/pgRouting/pgrouting/issues/2826>`__: "
1555415525
"pgr_createVerticesTable"

0 commit comments

Comments
 (0)