Skip to content

Commit 2eb5583

Browse files
committed
Writing a Tokenizer
1 parent d821b62 commit 2eb5583

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

library/re.po

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
14-
"PO-Revision-Date: 2020-05-23 23:48+0200\n"
14+
"PO-Revision-Date: 2020-05-23 23:51+0200\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -2262,25 +2262,32 @@ msgstr ""
22622262

22632263
#: ../Doc/library/re.rst:1610
22642264
msgid "Writing a Tokenizer"
2265-
msgstr ""
2265+
msgstr "Escribir un Tokenizer"
22662266

22672267
#: ../Doc/library/re.rst:1612
22682268
msgid ""
22692269
"A `tokenizer or scanner <https://en.wikipedia.org/wiki/Lexical_analysis>`_ "
22702270
"analyzes a string to categorize groups of characters. This is a useful "
22712271
"first step in writing a compiler or interpreter."
22722272
msgstr ""
2273+
"Un `tokenizer or scanner <https://en.wikipedia.org/wiki/Lexical_analysis>`_ "
2274+
"(tokenizador o escáner) analiza una cadena para categorizar grupos de "
2275+
"caracteres. Este es un primer paso útil para escribir un compilador o "
2276+
"intérprete."
22732277

22742278
#: ../Doc/library/re.rst:1616
22752279
msgid ""
22762280
"The text categories are specified with regular expressions. The technique "
22772281
"is to combine those into a single master regular expression and to loop over "
22782282
"successive matches::"
22792283
msgstr ""
2284+
"Las categorías de texto se especifican con expresiones regulares. La "
2285+
"técnica consiste en combinarlas en una única expresión regular maestra y en "
2286+
"hacer un bucle sobre las sucesivas coincidencias::"
22802287

22812288
#: ../Doc/library/re.rst:1672
22822289
msgid "The tokenizer produces the following output::"
2283-
msgstr ""
2290+
msgstr "El tokenizador produce el siguiente resultado::"
22842291

22852292
#: ../Doc/library/re.rst:1695
22862293
msgid ""

0 commit comments

Comments
 (0)