Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 98a7eba

Browse files
committed
traducción
1 parent 11516f9 commit 98a7eba

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed

library/graphlib.po

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,35 @@
44
# package.
55
# FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
66
#
7-
#, fuzzy
87
msgid ""
98
msgstr ""
109
"Project-Id-Version: Python en Español 3.9\n"
1110
"Report-Msgid-Bugs-To: \n"
1211
"POT-Creation-Date: 2021-03-19 11:16+0100\n"
13-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15-
"Language-Team: LANGUAGE <[email protected]>\n"
12+
"PO-Revision-Date: 2021-10-16 19:02+0200\n"
1613
"MIME-Version: 1.0\n"
17-
"Content-Type: text/plain; charset=utf-8\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
1815
"Content-Transfer-Encoding: 8bit\n"
1916
"Generated-By: Babel 2.8.0\n"
17+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
18+
"Last-Translator: \n"
19+
"Language-Team: \n"
20+
"Language: es\n"
21+
"X-Generator: Poedit 3.0\n"
2022

2123
#: ../Doc/library/graphlib.rst:2
2224
msgid ":mod:`graphlib` --- Functionality to operate with graph-like structures"
2325
msgstr ""
2426

2527
#: ../Doc/library/graphlib.rst:8
2628
msgid "**Source code:** :source:`Lib/graphlib.py`"
27-
msgstr ""
29+
msgstr "**Código fuente:** :fuente:'Lib/graphlib.py'"
2830

2931
#: ../Doc/library/graphlib.rst:20
3032
msgid "Provides functionality to topologically sort a graph of hashable nodes."
3133
msgstr ""
34+
"Proporciona funcionalidad para ordenar topológicamente un gráfico de nodos "
35+
"hashables."
3236

3337
#: ../Doc/library/graphlib.rst:22
3438
msgid ""
@@ -41,6 +45,15 @@ msgid ""
4145
"topological ordering is possible if and only if the graph has no directed "
4246
"cycles, that is, if it is a directed acyclic graph."
4347
msgstr ""
48+
"Un orden topológico es un orden lineal de los vértices en un gráfico tal que "
49+
"para cada arista dirigida u -> v desde el vértice u hasta el vértice v, el "
50+
"vértice u viene antes del vértice v en el orden. Por ejemplo, los vértices "
51+
"del gráfico pueden representar tareas que se deben realizar, y los bordes "
52+
"pueden representar restricciones que una tarea debe realizarse antes que "
53+
"otra; en este ejemplo, una ordenación topológica es simplemente una "
54+
"secuencia válida para las tareas. Un orden topológico completo es posible si "
55+
"y sólo si el gráfico no tiene ciclos dirigidos, es decir, si es un gráfico "
56+
"acíclico dirigido."
4457

4558
#: ../Doc/library/graphlib.rst:31
4659
msgid ""

0 commit comments

Comments
 (0)