-
Notifications
You must be signed in to change notification settings - Fork 396
Minor fixes while preparing the PDF #2148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
f0940b5
d375bfd
85f9397
11b5e98
f74d91b
af21f5d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -145,7 +145,7 @@ msgid "" | |
msgstr "" | ||
"El módulo :mod:`string` contiene una clase :class:`~string.Template` que " | ||
"ofrece otra forma de sustituir valores en cadenas, utilizando marcadores de " | ||
"posición como `$x`` y reemplazarlos con valores desde un diccionario, pero " | ||
"posición como ``$x`` y reemplazarlos con valores desde un diccionario, pero " | ||
"esto ofrece mucho menos control en el formato." | ||
|
||
#: ../Doc/tutorial/inputoutput.rst:100 | ||
|
@@ -253,17 +253,16 @@ msgstr "" | |
"Si tiene una cadena de caracteres de formato realmente larga que no desea " | ||
"dividir, sería bueno si pudiera hacer referencia a las variables que se " | ||
"formatearán por nombre en lugar de por posición. Esto se puede hacer " | ||
"simplemente pasando el dict y usando corchetes ``'[]'`` para acceder a las " | ||
"claves. ::" | ||
"simplemente pasando el diccionario y usando corchetes ``'[]'`` para acceder " | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is an open question for me as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I, personally, wouldn't add/remove words and just stick with the translated text. Since the variable In this example, in particular, I'd say it refer to "dictionary" as some "generic dictionary" and not to that particular |
||
"a las claves. ::" | ||
|
||
#: ../Doc/tutorial/inputoutput.rst:192 | ||
#, fuzzy | ||
msgid "" | ||
"This could also be done by passing the ``table`` dictionary as keyword " | ||
"arguments with the ``**`` notation. ::" | ||
msgstr "" | ||
"Esto se podría hacer, también, pasando la tabla como argumentos nombrados " | ||
"con la notación '**'. ::" | ||
"Esto se podría hacer, también, pasando el diccionario ``table`` como " | ||
"argumentos nombrados con la notación '**'. ::" | ||
humitos marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
#: ../Doc/tutorial/inputoutput.rst:199 | ||
msgid "" | ||
|
@@ -455,7 +454,7 @@ msgid "" | |
"``f.close()`` **might** result in the arguments of ``f.write()`` not being " | ||
"completely written to the disk, even if the program exits successfully." | ||
msgstr "" | ||
"Al llamar a ``f.write()`` sin usar la palabra clave :keyword::`!with` o " | ||
"Al llamar a ``f.write()`` sin usar la palabra clave :keyword:`!with` o " | ||
"llamar a ``f.close()`` **podría** dar como resultado los argumentos de ``f." | ||
"write()`` no se escribe completamente en el disco, incluso si el programa se " | ||
"cierra correctamente." | ||
|
Uh oh!
There was an error while loading. Please reload this page.