Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Traducido archivo howto/sockets#2361

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
rtobar merged 7 commits intopython:3.11fromunknown repositoryMar 26, 2023
Merged
Changes from1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
Fix translate
  • Loading branch information
@srmorita
srmorita committedMar 22, 2023
commit79e81523bb6b88b04bf6b20dae00409c6918a59a
36 changes: 18 additions & 18 deletionshowto/sockets.po
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-10-25 19:47+0200\n"
"PO-Revision-Date: 2023-03-21 10:44-0300\n"
"PO-Revision-Date: 2023-03-22 12:57+0000\n"
"Last-Translator: Francisco Mora <fr.morac@duocuc.cl>\n"
"Language-Team: python-doc-es\n"
"Language: es\n"
Expand All@@ -20,7 +20,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.10.3\n"
"X-Generator: Poedit3.2.2\n"
"X-Generator: Poedit2.4.2\n"

#: ../Doc/howto/sockets.rst:5
msgid "Socket Programming HOWTO"
Expand DownExpand Up@@ -391,8 +391,8 @@ msgstr ""
"mensajería - en Python envías cadenas y usas ``len()`` para determinar su "
"longitud (incluso si tiene caracteres ``\\0`` incrustados). Es "
"principalmente el código receptor el que se vuelve más complejo. (Y en C no "
"es mucho peor, excepto que no puedes usar ``strlen`` si el mensaje tiene "
"``\\0`` incrustados)."
"es mucho peor, excepto que no puedes usar ``strlen`` si el mensaje tiene``"
"\\0`` incrustados)."

#: ../Doc/howto/sockets.rst:223
msgid ""
Expand DownExpand Up@@ -476,22 +476,22 @@ msgstr ""
"principal problema es que no todas las máquinas utilizan los mismos formatos "
"para datos binarios. Por ejemplo, `orden de bytes de red <https://en."
"wikipedia.org/wiki/Endianness#Networking>`_ es big-endian, con el byte más "
"significativo primero, por lo que es un entero de 16 bits con el valor ``1` "
"`serían los dos bytes hexadecimales ``00 01``. Sin embargo, los "
"procesadoresmás comunes (x86/AMD64, ARM, RISC-V) son little-endian, con el "
"byte menossignificativo primero; ese mismo ``1`` sería ``01 00``."
"significativo primero, por lo que es un entero de 16 bits con el valor ``1`` "
"serían los dos bytes hexadecimales ``00 01``. Sin embargo, los procesadores "
"más comunes (x86/AMD64, ARM, RISC-V) son little-endian, con el byte menos "
"significativo primero; ese mismo ``1`` sería ``01 00``."

#: ../Doc/howto/sockets.rst:262
msgid ""
"Socket libraries have calls for converting 16 and 32 bit integers - ``ntohl, "
"htonl, ntohs, htons`` where \"n\" means *network* and \"h\" means *host*, "
"\"s\" means *short* and \"l\" means *long*. Where network order is host "
"order,these do nothing, but where the machine is byte-reversed, these swap "
"thebytes around appropriately."
"htonl, ntohs, htons`` where \"n\" means *network* and \"h\" means *host*,\"s"
"\" means *short* and \"l\" means *long*. Where network order is host order, "
"these do nothing, but where the machine is byte-reversed, these swap the "
"bytes around appropriately."
msgstr ""
"Las bibliotecas de socket tienen llamadas para convertir enteros de 16 y 32 "
"bits - ``ntohl, htonl, ntohs, htons`` donde \"n\" significa *red* y \"h\" "
"significa *host*, \"s\" significa *corto* y \"l\" significa *largo*. Cuando "
"significa *host*, \"s\" significa *corto* y \"l\" significa *largo*. Cuando "
"el orden de la red es el orden del host, estos no hacen nada, pero cuando la "
"máquina está invertida en bytes, intercambian los bytes de manera adecuada."

Expand All@@ -504,12 +504,12 @@ msgid ""
"be 8. Of course, this doesn't fit well with fixed-length messages. "
"Decisions, decisions."
msgstr ""
"En estos días de máquinas de32 bit, la representaciónascii de los datos "
"En estos días de máquinas de64 bit, la representaciónASCII de los datos "
"binarios es con frecuencia más pequeña que la representación binaria. Esto "
"es porque una sorprendente cantidad de veces, todos esos\"longs\" tienende "
"valor 0, o tal vez 1. La cadena \"0\" tendría dos bytes, mientrasel binario "
"cuatro. Por supuesto, esto no funciona bien con los mensajes de longitud "
"fija. Decisiones, decisiones."
"es porque una sorprendente cantidad de veces, todos esosenteros tienenel "
"valor 0, o tal vez 1. La cadena``\"0\"`` tendría dos bytes, mientrasun "
"entero completo de 64 bit tendría 8. Por supuesto, esto no funciona bien con "
"los mensajes de longitudfija. Decisiones, decisiones."

#: ../Doc/howto/sockets.rst:277
msgid "Disconnecting"
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp