Skip to content

Commit 370694f

Browse files
github-actions[bot]cvvergara
authored andcommitted
Update locale: commit 276f5c4
1 parent 35179ab commit 370694f

File tree

2 files changed

+30
-290
lines changed

2 files changed

+30
-290
lines changed

locale/en/LC_MESSAGES/pgrouting_doc_strings.po

Lines changed: 17 additions & 163 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-09 15:26+0000\n"
11+
"POT-Creation-Date: 2025-04-11 15: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"
@@ -3852,11 +3852,6 @@ msgstr ""
38523852
msgid ":doc:`pgr_createTopology` - create a topology based on the geometry."
38533853
msgstr ""
38543854

3855-
msgid ""
3856-
":doc:`pgr_createVerticesTable` - reconstruct the vertices table based on "
3857-
"the source and target information."
3858-
msgstr ""
3859-
38603855
msgid ":doc:`pgr_nodeNetwork` - to create nodes to a not noded edge table."
38613856
msgstr ""
38623857

@@ -4046,6 +4041,11 @@ msgid ""
40464041
"pgr_analyzeOneWay"
40474042
msgstr ""
40484043

4044+
msgid ""
4045+
"`#2827 <https://github.com/pgRouting/pgrouting/issues/2827>`__: "
4046+
"pgr_createVerticesTable"
4047+
msgstr ""
4048+
40494049
msgid "Removal of SQL deprecated internal functions"
40504050
msgstr ""
40514051

@@ -10031,163 +10031,6 @@ msgid ""
1003110031
"incremented to the rest of the edges."
1003210032
msgstr ""
1003310033

10034-
msgid "``pgr_createVerticesTable`` - Deprecated since 3.8.0"
10035-
msgstr ""
10036-
10037-
msgid ""
10038-
"``pgr_createVerticesTable`` — Reconstructs the vertices table based on "
10039-
"the source and target information."
10040-
msgstr ""
10041-
10042-
msgid "``OK`` after the vertices table has been reconstructed."
10043-
msgstr ""
10044-
10045-
msgid "``FAIL`` when the vertices table was not reconstructed due to an error."
10046-
msgstr ""
10047-
10048-
msgid ""
10049-
"pgr_createVerticesTable(edge_table, [``the_geom, source, target, "
10050-
"rows_where``])"
10051-
msgstr ""
10052-
10053-
msgid ""
10054-
"The reconstruction of the vertices table function accepts the following "
10055-
"parameters:"
10056-
msgstr ""
10057-
10058-
msgid ""
10059-
"``text`` Condition to SELECT a subset or rows. Default value is ``true`` "
10060-
"to indicate all rows."
10061-
msgstr ""
10062-
10063-
msgid ""
10064-
"Fills ``id`` and ``the_geom`` columns of the vertices table based on the "
10065-
"source and target columns of the edge table."
10066-
msgstr ""
10067-
10068-
msgid "The names of source, target are the same."
10069-
msgstr ""
10070-
10071-
msgid ""
10072-
"``integer`` Number of vertices in the edge_table that reference this "
10073-
"vertex as incoming."
10074-
msgstr ""
10075-
10076-
msgid ""
10077-
"``integer`` Number of vertices in the edge_table that reference this "
10078-
"vertex as outgoing."
10079-
msgstr ""
10080-
10081-
msgid "The simplest way to use pgr_createVerticesTable"
10082-
msgstr ""
10083-
10084-
msgid "We get the same result as the simplest way to use the function."
10085-
msgstr ""
10086-
10087-
msgid ""
10088-
"An error would occur when the arguments are not given in the appropriate "
10089-
"order: In this example, the column source column ``source`` of the table "
10090-
"``mytable`` is passed to the function as the geometry column, and the "
10091-
"geometry column ``the_geom`` is passed to the function as the source "
10092-
"column."
10093-
msgstr ""
10094-
10095-
msgid "The order of the parameters do not matter:"
10096-
msgstr ""
10097-
10098-
msgid "Example 4"
10099-
msgstr ""
10100-
10101-
msgid "Using a different ordering"
10102-
msgstr ""
10103-
10104-
msgid "Example 5"
10105-
msgstr ""
10106-
10107-
msgid ""
10108-
"Parameters defined with a default value can be omitted, as long as the "
10109-
"value matches the default:"
10110-
msgstr ""
10111-
10112-
msgid "Example 6"
10113-
msgstr ""
10114-
10115-
msgid "Example 7"
10116-
msgstr ""
10117-
10118-
msgid ""
10119-
"Selecting the rows where the geometry is near the geometry of row with "
10120-
"``id`` =5 ."
10121-
msgstr ""
10122-
10123-
msgid "Example 8"
10124-
msgstr ""
10125-
10126-
msgid "Using the following table"
10127-
msgstr ""
10128-
10129-
msgid "Example 9"
10130-
msgstr ""
10131-
10132-
msgid "The arguments need to be given in the order described in the parameters:"
10133-
msgstr ""
10134-
10135-
msgid ""
10136-
"An error would occur when the arguments are not given in the appropriate "
10137-
"order: In this example, the column ``src`` of the table ``mytable`` is "
10138-
"passed to the function as the geometry column, and the geometry column "
10139-
"``mygeom`` is passed to the function as the source column."
10140-
msgstr ""
10141-
10142-
msgid "Example 10"
10143-
msgstr ""
10144-
10145-
msgid "Example 11"
10146-
msgstr ""
10147-
10148-
msgid ""
10149-
"In this scenario omitting a parameter would create an error because the "
10150-
"default values for the column names do not match the column names of the "
10151-
"table."
10152-
msgstr ""
10153-
10154-
msgid "Example 12"
10155-
msgstr ""
10156-
10157-
msgid "Selecting rows based on the gid. (positional notation)"
10158-
msgstr ""
10159-
10160-
msgid "Example 13"
10161-
msgstr ""
10162-
10163-
msgid "Selecting rows based on the gid. (named notation)"
10164-
msgstr ""
10165-
10166-
msgid "Example 14"
10167-
msgstr ""
10168-
10169-
msgid ""
10170-
"Selecting the rows where the geometry is near the geometry of row with "
10171-
"``gid`` = 5."
10172-
msgstr ""
10173-
10174-
msgid "Example 15"
10175-
msgstr ""
10176-
10177-
msgid "TBD"
10178-
msgstr ""
10179-
10180-
msgid "Example 16"
10181-
msgstr ""
10182-
10183-
msgid "Example 17"
10184-
msgstr ""
10185-
10186-
msgid ""
10187-
":doc:`topology-functions` for an overview of a topology for routing "
10188-
"algorithms."
10189-
msgstr ""
10190-
1019110034
msgid "``pgr_cuthillMckeeOrdering`` - Experimental"
1019210035
msgstr ""
1019310036

@@ -13369,6 +13212,11 @@ msgid ""
1336913212
"segmented."
1337013213
msgstr ""
1337113214

13215+
msgid ""
13216+
":doc:`topology-functions` for an overview of a topology for routing "
13217+
"algorithms."
13218+
msgstr ""
13219+
1337213220
msgid "``pgr_pickDeliver`` - Experimental"
1337313221
msgstr ""
1337413222

@@ -14173,6 +14021,9 @@ msgstr ""
1417314021
msgid "Getting the same result as ``pgr_trspVia``:"
1417414022
msgstr ""
1417514023

14024+
msgid "Example 8"
14025+
msgstr ""
14026+
1417614027
msgid "Sometimes ``U_turn_on_edge`` flag is ignored when is set to ``false``."
1417714028
msgstr ""
1417814029

@@ -14570,6 +14421,9 @@ msgstr ""
1457014421
msgid "**TBD**"
1457114422
msgstr ""
1457214423

14424+
msgid "TBD"
14425+
msgstr ""
14426+
1457314427
msgid "``pgr_withPoints``"
1457414428
msgstr ""
1457514429

0 commit comments

Comments
 (0)