Skip to content

Commit e638f16

Browse files
Deploying to gh-pages from @ 3474011 🚀
1 parent cd25859 commit e638f16

28 files changed

Lines changed: 144 additions & 161 deletions

File tree

de/search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

de/tutorial/tutorial-3/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1845,11 +1845,11 @@ <h2 id="erstellen-ihres-anwendungsgerusts">Erstellen Ihres Anwendungsgerüsts<a
18451845
Anwendung angehängt werden müssen, und Splash-Screen-Bilder.</p>
18461846
</li>
18471847
</ol>
1848-
<p>Once this completes, if you look in the project's <code>build</code> directory, you should
1849-
now see a directory corresponding to your platform (<code>macOS</code>, <code>linux</code>, or
1850-
<code>windows</code>) that contains additional files. This is the platform-specific
1851-
packaging configuration for your application. For example, on macOS, your
1852-
project directory will now include:</p>
1848+
<p>Sobald dies abgeschlossen ist, sollten Sie im Verzeichnis <code>build</code> des Projekts
1849+
nun ein Verzeichnis sehen, das Ihrer Plattform entspricht (<code>macOS</code>, <code>linux</code> oder
1850+
<code>windows</code>) und zusätzliche Dateien enthält. Dies ist die plattformspezifische
1851+
Paketkonfiguration für Ihre Anwendung. Unter macOS enthält Ihr
1852+
Projektverzeichnis nun beispielsweise:</p>
18531853
<div class="highlight"><pre><span></span><code>helloworld/
18541854
└── build/
18551855
└── helloworld/

de/tutorial/tutorial-7/index.html

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2266,11 +2266,10 @@ <h2 id="python-pakete-von-drittanbietern-fur-mobilgerate-und-das-web">Python-Pak
22662266
(PyPI)</a> verteilt und in Ihrer lokalen virtuellen Umgebung
22672267
installiert. In diesem Tutorial haben wir <code>pip</code> verwendet, aber es gibt auch
22682268
andere Optionen.</p>
2269-
<p>On desktop platforms (macOS, Windows, Linux), essentially any package on PyPI
2270-
can be installed into your virtual environment, or added to your app's
2271-
requirements. However, when building an app for mobile or web platforms, <a href="https://briefcase.beeware.org/en/latest/about/faq#can-i-use-third-party-python-packages-in-my-app">your
2272-
options are slightly
2273-
limited</a>.</p>
2269+
<p>Auf Desktop-Plattformen (macOS, Windows, Linux) kann im Wesentlichen jedes Paket
2270+
auf PyPI in Ihrer virtuellen Umgebung installiert oder zu den Anforderungen
2271+
Ihrer App hinzugefügt werden. Beim Erstellen einer App für mobile oder
2272+
Web-Plattformen sind Ihre Optionen jedoch etwas eingeschränkt.</p>
22742273
<p>Kurz gesagt: Jedes <em>reine Python</em>-Paket (d. h. jedes Paket, das aus einem
22752274
<em>ausschließlich</em> in Python geschriebenen Projekt erstellt wurde) kann ohne
22762275
Probleme verwendet werden. Einige Pakete werden jedoch aus Projekten erstellt,

de/tutorial/tutorial-8/index.html

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1708,14 +1708,15 @@ <h2 id="zugriff-auf-api">Zugriff auf API<a class="headerlink" href="#zugriff-auf
17081708
Authentifizierung und Payload-Kodierung. Als „normaler Browser-Benutzer” sind
17091709
Sie wahrscheinlich daran gewöhnt, diese Details als selbstverständlich
17101710
hinzunehmen, da der Browser sie für Sie verwaltet.</p>
1711-
<p>As a result, people have developed third-party libraries that wrap the built-in
1712-
APIs and provide a simpler API that is a closer match for the everyday browser
1713-
experience. We're going to use one of those libraries - a library called
1714-
<a href="https://www.python-httpx.org"><code>httpx</code></a> - to access a simple API.</p>
1715-
<p>Let's add an <code>httpx</code> API call to our app. First, as with <code>faker</code> in the
1716-
<a href="../tutorial-7/">previous step</a>, we need to tell briefcase to install <code>httpx</code>
1717-
when it builds our app. Modify the <code>requires</code> setting in our <code>pyproject.toml</code> to
1718-
include the new requirement:</p>
1711+
<p>Infolgedessen haben Entwickler Bibliotheken von Drittanbietern entwickelt, die
1712+
die integrierten APIs umschließen und eine einfachere API bereitstellen, die
1713+
besser zur alltäglichen Browsererfahrung passt. Wir werden eine dieser
1714+
Bibliotheken – eine Bibliothek namens <a href="https://www.python-httpx.org"><code>httpx</code></a>
1715+
verwenden, um auf eine einfache API zuzugreifen.</p>
1716+
<p>Fügen wir unserer App einen <code>httpx</code> API-Aufruf hinzu. Zunächst müssen wir, wie
1717+
bei <code>faker</code> im <a href="../tutorial-7/">vorherigen Schritt</a>, Briefcase anweisen, <code>httpx</code>
1718+
zu installieren, wenn es unsere App erstellt. Ändern Sie die <code>requires</code>
1719+
Einstellung in unserem <code>pyproject.toml</code>, um die neue Anforderung einzufügen:</p>
17191720
<div class="highlight"><pre><span></span><code><span class="n">requires</span> <span class="o">=</span> <span class="p">[</span>
17201721
<span class="s2">&quot;faker&quot;</span><span class="p">,</span>
17211722
<span class="s2">&quot;httpx&quot;</span><span class="p">,</span>
@@ -1743,11 +1744,12 @@ <h2 id="zugriff-auf-api">Zugriff auf API<a class="headerlink" href="#zugriff-auf
17431744
<p>Dadurch wird der Callback <code>say_hello()</code> so geändert, dass er bei Aufruf
17441745
Folgendes ausführt:</p>
17451746
<ul>
1746-
<li>make a GET request on the tutorial API to retrieve a message;</li>
1747+
<li>Führen Sie eine GET-Anfrage an die Tutorial-API durch, um eine Nachricht
1748+
abzurufen.</li>
17471749
<li>Die Antwort als JSON dekodieren;</li>
1748-
<li>extract the body of the message; and</li>
1749-
<li>include the body of that message as the text of the dialog, in place of the
1750-
text generated by Faker.</li>
1750+
<li>den Text der Nachricht extrahieren; und</li>
1751+
<li>Fügen Sie den Text dieser Nachricht als Dialogtext ein, anstelle des von Faker
1752+
generierten Textes.</li>
17511753
</ul>
17521754
<p>Lassen Sie uns unsere aktualisierte App im Briefcase-Entwicklermodus ausführen,
17531755
um zu überprüfen, ob unsere Änderung funktioniert hat. Da wir eine neue

es/search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

es/tutorial/tutorial-3/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1844,11 +1844,11 @@ <h2 id="creacion-del-andamiaje-de-aplicaciones">Creación del andamiaje de aplic
18441844
aplicación final e imágenes de pantalla de bienvenida.</p>
18451845
</li>
18461846
</ol>
1847-
<p>Once this completes, if you look in the project's <code>build</code> directory, you should
1848-
now see a directory corresponding to your platform (<code>macOS</code>, <code>linux</code>, or
1849-
<code>windows</code>) that contains additional files. This is the platform-specific
1850-
packaging configuration for your application. For example, on macOS, your
1851-
project directory will now include:</p>
1847+
<p>Una vez completado este proceso, si miras en el directorio <code>build</code> del proyecto,
1848+
deberías ver un directorio correspondiente a tu plataforma (<code>macOS</code>, <code>linux</code>, o
1849+
<code>windows</code>) que contiene archivos adicionales. Esta es la configuración de
1850+
empaquetado específica de la plataforma para tu aplicación. Por ejemplo, en
1851+
macOS, tu directorio de proyecto ahora incluirá:</p>
18521852
<div class="highlight"><pre><span></span><code>helloworld/
18531853
└── build/
18541854
└── helloworld/

es/tutorial/tutorial-7/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2255,11 +2255,11 @@ <h2 id="paquetes-python-de-terceros-para-moviles-y-web">Paquetes Python de terce
22552255
paquetes de terceros se distribuyen normalmente usando el <a href="https://pypi.org">Python Package Index
22562256
(PyPI)</a>, y se instalan en tu entorno virtual local. En este
22572257
tutorial hemos utilizado <code>pip</code>, pero existen otras opciones.</p>
2258-
<p>On desktop platforms (macOS, Windows, Linux), essentially any package on PyPI
2259-
can be installed into your virtual environment, or added to your app's
2260-
requirements. However, when building an app for mobile or web platforms, <a href="https://briefcase.beeware.org/en/latest/about/faq#can-i-use-third-party-python-packages-in-my-app">your
2261-
options are slightly
2262-
limited</a>.</p>
2258+
<p>En plataformas de escritorio (macOS, Windows, Linux), básicamente cualquier
2259+
paquete de PyPI se puede instalar en tu entorno virtual o añadir a los
2260+
requisitos de tu aplicación. Sin embargo, al crear una aplicación para
2261+
plataformas móviles o web, <a href="https://briefcase.beeware.org/en/latest/about/faq#can-i-use-third-party-python-packages-in-my-app">tus opciones son ligeramente
2262+
limitadas</a>.</p>
22632263
<p>En resumen; cualquier paquete <em>puro Python</em> (es decir, cualquier paquete creado
22642264
a partir de un proyecto escrito <em>sólo</em> en Python) puede utilizarse sin
22652265
dificultad. Algunos paquetes, sin embargo, se crean a partir de proyectos que

es/tutorial/tutorial-8/index.html

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1707,14 +1707,16 @@ <h2 id="acceso-a-una-api">Acceso a una API<a class="headerlink" href="#acceso-a-
17071707
sesiones, la autenticación y la codificación de la carga útil. Como "usuario
17081708
normal de navegador", probablemente estés acostumbrado a dar por sentados estos
17091709
detalles, ya que el navegador los gestiona por ti.</p>
1710-
<p>As a result, people have developed third-party libraries that wrap the built-in
1711-
APIs and provide a simpler API that is a closer match for the everyday browser
1712-
experience. We're going to use one of those libraries - a library called
1713-
<a href="https://www.python-httpx.org"><code>httpx</code></a> - to access a simple API.</p>
1714-
<p>Let's add an <code>httpx</code> API call to our app. First, as with <code>faker</code> in the
1715-
<a href="../tutorial-7/">previous step</a>, we need to tell briefcase to install <code>httpx</code>
1716-
when it builds our app. Modify the <code>requires</code> setting in our <code>pyproject.toml</code> to
1717-
include the new requirement:</p>
1710+
<p>Como resultado, se han desarrollado bibliotecas de terceros que envuelven las
1711+
API integradas y proporcionan una API más sencilla que se ajusta mejor a la
1712+
experiencia cotidiana del navegador. Vamos a utilizar una de esas bibliotecas,
1713+
llamada <a href="https://www.python-httpx.org"><code>httpx</code></a>, para acceder a una API
1714+
sencilla.</p>
1715+
<p>Añadamos una llamada a la API <code>httpx</code> a nuestra aplicación. En primer lugar, al
1716+
igual que con <code>faker</code> en el <a href="../tutorial-7/">paso anterior</a>, debemos indicar a
1717+
briefcase que instale <code>httpx</code> cuando compile nuestra aplicación. Modifique la
1718+
configuración <code>requires</code> en nuestro <code>pyproject.toml</code> para incluir el nuevo
1719+
requisito:</p>
17181720
<div class="highlight"><pre><span></span><code><span class="n">requires</span> <span class="o">=</span> <span class="p">[</span>
17191721
<span class="s2">&quot;faker&quot;</span><span class="p">,</span>
17201722
<span class="s2">&quot;httpx&quot;</span><span class="p">,</span>
@@ -1742,11 +1744,11 @@ <h2 id="acceso-a-una-api">Acceso a una API<a class="headerlink" href="#acceso-a-
17421744
<p>Esto cambiará la llamada de retorno <code>say_hello()</code> para que cuando sea invocada,
17431745
lo haga:</p>
17441746
<ul>
1745-
<li>make a GET request on the tutorial API to retrieve a message;</li>
1747+
<li>Realiza una solicitud GET en la API del tutorial para recuperar un mensaje.</li>
17461748
<li>decodificar la respuesta como JSON;</li>
1747-
<li>extract the body of the message; and</li>
1748-
<li>include the body of that message as the text of the dialog, in place of the
1749-
text generated by Faker.</li>
1749+
<li>extraer el cuerpo del mensaje; y</li>
1750+
<li>Incluye el cuerpo de ese mensaje como texto del diálogo, en lugar del texto
1751+
generado por Faker.</li>
17501752
</ul>
17511753
<p>Vamos a ejecutar nuestra aplicación actualizada en el modo desarrollador de
17521754
Briefcase para comprobar que nuestro cambio ha funcionado. Como hemos añadido un

fr/search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

fr/tutorial/tutorial-3/index.html

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1847,11 +1847,12 @@ <h2 id="creation-de-lechafaudage-de-lapplication">Création de l'échafaudage de
18471847
à l'application finale et les images de l'écran d'accueil.</p>
18481848
</li>
18491849
</ol>
1850-
<p>Once this completes, if you look in the project's <code>build</code> directory, you should
1851-
now see a directory corresponding to your platform (<code>macOS</code>, <code>linux</code>, or
1852-
<code>windows</code>) that contains additional files. This is the platform-specific
1853-
packaging configuration for your application. For example, on macOS, your
1854-
project directory will now include:</p>
1850+
<p>Une fois cette opération terminée, si vous regardez dans le répertoire <code>build</code>
1851+
du projet, vous devriez maintenant voir un répertoire correspondant à votre
1852+
plateforme (<code>macOS</code>, <code>linux</code>, ou <code>windows</code>) qui contient des fichiers
1853+
supplémentaires. Il s'agit de la configuration de packaging spécifique à la
1854+
plateforme pour votre application. Par exemple, sur macOS, votre répertoire de
1855+
projet comprendra désormais :</p>
18551856
<div class="highlight"><pre><span></span><code>helloworld/
18561857
└── build/
18571858
└── helloworld/

0 commit comments

Comments
 (0)