Skip to content

Commit 10dda10

Browse files
committed
New Crowdin translations by GitHub Action
1 parent 0f143c1 commit 10dda10

24 files changed

+189
-217
lines changed

_data/es/general.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
title_announcement: "[email protected]: Now the Default on npm with LTS Timeline"
2-
body_announcement: "Express 5.1.0 is now the default on npm, and we're introducing an official LTS schedule for the v4 and v5 release lines. <a href='https://expressjs.com/2025/03/31/v5-1-latest-release.html'>Check out our latest blog for more information.</a>"
3-
community-caveat-alert: "This information refers to third-party sites, products, or modules that are not maintained by the Expressjs team. Listing here does not constitute an endorsement or recommendation from the Expressjs project team."
4-
warning: 'Warning'
5-
note: 'Note'
6-
caution: 'Caution'
7-
i18n_notice: "This document might be outdated relative to the documentation in English. For the latest updates, please refer to the"
8-
i18n_notice_link_text: "documentation in english"
1+
title_announcement: "[email protected]: Ahora el valor por defecto de npm con LTS Timeline"
2+
body_announcement: "Express 5.1.0 es ahora el predeterminado en npm, y estamos introduciendo un horario oficial de LTS para las líneas de lanzamiento v4 y v5. <a href='https://expressjs.com/2025/03/31/v5-1-latest-release.html'>Mira nuestro último blog para más información.</a>"
3+
community-caveat-alert: "Esta información se refiere a sitios, productos o módulos de terceros que no son mantenidos por el equipo de Expressjs. La lista aquí no constituye un respaldo o una recomendación del equipo del proyecto Expressjs."
4+
warning: 'Advertencia'
5+
note: 'Nota'
6+
caution: 'Advertencia'
7+
i18n_notice: "Este documento puede estar desactualizado en relación con la documentación en inglés. Para las últimas actualizaciones, por favor consulte el"
8+
i18n_notice_link_text: "documentación en inglés"

_data/ko/menu.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ hello_world: Hello world
77
generator: Express 생성기
88
basic_routing: 기본 라우팅
99
static_files: 정적 파일
10-
examples: More examples
10+
examples: 더 많은 예시
1111
faq: 자주 묻는 질문(FAQ)
1212
# Guide
1313
guide: Gu안내서ide
1414
routing: 라우팅
1515
writing_middleware: 미들웨어 작성
1616
using_middleware: 미들웨어 사용
17-
overriding_express_api: Overriding the Express API
17+
overriding_express_api: Express API 오버라이딩
1818
using_template_engines: 템플리트 엔진 사용
1919
error_handling: 오류 처리
2020
debugging: 디버깅
@@ -40,13 +40,13 @@ resources: 자원
4040
glossary: 용어집
4141
middleware: 미들웨어
4242
community: 커뮤니티
43-
utils: Utility modules
44-
contributing: Contributing to Express
45-
changelog: Release Change Log
43+
utils: 유틸리티 모듈
44+
contributing: Express에 기여하기
45+
changelog: 릴리즈 변경 로그
4646
# Support
47-
support: Support
47+
support: 지원
4848
# Blog
4949
blog: Blog
50-
latest_post: Latest post
51-
all_posts: All posts
52-
write_post: Write a Post
50+
latest_post: 최신 게시물
51+
all_posts: 모든 게시물
52+
write_post: 게시물 작성

de/guide/writing-middleware.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Wenn über die aktuelle Middlewarefunktion der Anforderung/Antwort-Zyklus nicht
2323

2424
Das folgende Beispiel zeigt die Elemente eines Middlewarefunktionsaufrufs:
2525

26+
<div class="table-scroller">
2627
<table id="mw-fig">
2728
<tbody><tr><td id="mw-fig-imgcell">
2829
<img src="/images/express-mw.png" alt="Elements of a middleware function call" id="mw-fig-img" />
@@ -41,6 +42,7 @@ Das folgende Beispiel zeigt die Elemente eines Middlewarefunktionsaufrufs:
4142
<div class="callout" id="callout6">HTTP-<a href="../4x/api.html#req">Anforderungs</a>argument zur Middlewarefunktion, die nach der geltenden Konvention als "req" bezeichnet wird.</div>
4243
</td></tr>
4344
</table>
45+
</div>
4446

4547
Starting with Express 5, middleware functions that return a Promise will call `next(value)` when they reject or throw an error. `next` will be called with either the rejected value or the thrown Error.
4648

es/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: api
33
version: 5x
44
title: Express 5.x - Referencia de API
5-
description: Access the API reference for Express.js detailing all modules, methods, and properties for building web applications with this version.
5+
description: Acceda a la referencia de la API para Express.js detallando todos los módulos, métodos y propiedades para construir aplicaciones web con esta versión.
66
redirect_from: " "
77
---
88

es/guide/writing-middleware.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Si la función de middleware actual no finaliza el ciclo de solicitud/respuestas
2323

2424
El siguiente ejemplo muestra los elementos de una llamada a función de middleware:
2525

26+
<div class="table-scroller">
2627
<table id="mw-fig">
2728
<tbody><tr><td id="mw-fig-imgcell">
2829
<img src="/images/express-mw.png" alt="Elements of a middleware function call" id="mw-fig-img" />
@@ -41,6 +42,7 @@ El siguiente ejemplo muestra los elementos de una llamada a función de middlewa
4142
<div class="callout" id="callout6">Argumento de <a href="../4x/api.html#req">solicitud</a> HTTP a la función de middleware, denominado "req" por convención.</div>
4243
</td></tr>
4344
</table>
45+
</div>
4446

4547
Starting with Express 5, middleware functions that return a Promise will call `next(value)` when they reject or throw an error. `next` will be called with either the rejected value or the thrown Error.
4648

es/index.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22
layout: home
3-
title: Express - Node.js web application framework
4-
description: "Express is a fast, unopinionated, minimalist web framework for Node.js, providing a robust set of features for web and mobile applications."
3+
title: Express - Node.js Marco de aplicación web
4+
description: "Express es un marco web rápido, sin opinión y minimalista para Node.js, que proporciona un robusto conjunto de características para aplicaciones web y móviles."
55
menu: home
66
redirect_from: " "
77
---
88

99
<section id="home-content">
1010
<div id="homepage-leftpane" class="pane">
1111
<section id="description">
12-
<div class="express"><a href="/">Express</a><a href="{{ page.lang }}/changelog/4x.html#{{ site.data.express.current_version }}" id="express-version">{{ site.data.express.current_version }}</a></div>
13-
<h1 class="description">Fast, unopinionated, minimalist web framework for <a href='https://nodejs.org/en/'>Node.js</a></h1>
12+
<div class="express"><code>Express</code><a href="{{ page.lang }}/changelog/4x.html#{{ site.data.express.current_version }}" id="express-version">{{ site.data.express.current_version }}</a></div>
13+
<h1 class="description">Marco web rápido, sin opinión y minimalista para <a href='https://nodejs.org/en/'>Node.js</a></h1>
1414
</section>
1515
<pre class="install-command"><code>$ npm install express --save</code></pre>
1616
</div>
@@ -38,24 +38,22 @@ app.listen(port, () => {
3838

3939
<section id="announcements">
4040
{% include announcement.html %}
41-
</section>
42-
{% endif %}
41+
</section>{% endif %}
4342

4443
<section id="intro">
4544
<div id="boxes" class="clearfix">
4645
<div id="web-applications">
47-
<h2>Web Applications</h2> Express is a minimal and flexible Node.js web application framework that provides a robust set of features for web and mobile applications.
48-
</div>
46+
<h2>Aplicaciones web</h2> Express es un minimalista y flexible framework de aplicaciones web de Node.js que provee un conjunto robusto de características para aplicaciones web y móviles</div>
4947
<div id="apis">
50-
<h2>APIs</h2> With a myriad of HTTP utility methods and middleware at your disposal, creating a robust API is quick and easy.
48+
<h2>APIs</h2> Con una gran cantidad de métodos de utilidad HTTP y middleware a tu disposición, crear una API robusta es rápido y fácil.
5149
</div>
5250
<div id="performance">
53-
<h2>Performance</h2> Express provides a thin layer of fundamental web application features, without obscuring Node.js features that you know and love.
51+
<h2>Rendimiento</h2> Express proporciona una capa delgada de características fundamentales de la aplicación web, sin ocultar las características de Node.js que usted conoce y ama.
5452
</div>
5553
<div id="middleware">
5654
<h2>Middleware</h2>
57-
Express is a lightweight and flexible routing framework with minimal core features
58-
meant to be augmented through the use of Express <a href="{{ page.lang }}/resources/middleware.html">middleware</a> modules.
55+
Express es un marco de enrutamiento ligero y flexible con las características básicas mínimas
56+
destinado a aumentarse mediante el uso de módulos <a href="{{ page.lang }}/resources/middleware.html">middleware</a>.
5957
</div>
6058
</div>
6159
</section>

fr/guide/writing-middleware.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Si la fonction middleware en cours ne termine pas le cycle de demande-réponse,
2323

2424
L'exemple suivant montre les éléments d'un appel de fonction middleware:
2525

26+
<div class="table-scroller">
2627
<table id="mw-fig">
2728
<tbody><tr><td id="mw-fig-imgcell">
2829
<img src="/images/express-mw.png" alt="Elements of a middleware function call" id="mw-fig-img" />
@@ -41,6 +42,7 @@ L'exemple suivant montre les éléments d'un appel de fonction middleware:
4142
<div class="callout" id="callout6">Argument de <a href="../4x/api.html#req">demande</a> HTTP à la fonction middleware, appelé "req" par convention.</div>
4243
</td></tr>
4344
</table>
45+
</div>
4446

4547
Starting with Express 5, middleware functions that return a Promise will call `next(value)` when they reject or throw an error. `next` will be called with either the rejected value or the thrown Error.
4648

it/guide/writing-middleware.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Se la funzione middleware corrente non termina il ciclo richiesta-risposta, deve
2323

2424
I seguenti esempi mostrano gli elementi di una chiamata alla funzione middleware:
2525

26+
<div class="table-scroller">
2627
<table id="mw-fig">
2728
<tbody><tr><td id="mw-fig-imgcell">
2829
<img src="/images/express-mw.png" alt="Elements of a middleware function call" id="mw-fig-img" />
@@ -41,6 +42,7 @@ I seguenti esempi mostrano gli elementi di una chiamata alla funzione middleware
4142
<div class="callout" id="callout6">Argomento <a href="../4x/api.html#req">richiesta</a> HTTP nella funzione middleware, denominato "req" per convenzione.</div>
4243
</td></tr>
4344
</table>
45+
</div>
4446

4547
Starting with Express 5, middleware functions that return a Promise will call `next(value)` when they reject or throw an error. `next` will be called with either the rejected value or the thrown Error.
4648

ja/guide/writing-middleware.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ _ミドルウェア_ 関数は、[リクエストオブジェクト](/{{ page.la
2323

2424
次の例は、ミドルウェア関数呼び出しの要素を示しています。
2525

26+
<div class="table-scroller">
2627
<table id="mw-fig">
2728
<tbody><tr><td id="mw-fig-imgcell">
2829
<img src="/images/express-mw.png" alt="Elements of a middleware function call" id="mw-fig-img" />
@@ -41,6 +42,7 @@ _ミドルウェア_ 関数は、[リクエストオブジェクト](/{{ page.la
4142
<div class="callout" id="callout6">ミドルウェア関数への HTTP <a href="../4x/api.html#req">リクエスト</a>引数 (慣習的に「req」と呼ばれます)。</div>
4243
</td></tr>
4344
</table>
45+
</div>
4446

4547
Starting with Express 5, middleware functions that return a Promise will call `next(value)` when they reject or throw an error. `next` will be called with either the rejected value or the thrown Error.
4648

ko/3x/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ redirect_from: " "
1313

1414
3.x의 알려진 또는 알려지지 않은 보안 및 성능 문제는 마지막 업데이트(2015년 8월 1일) 이후로 처리되지 않고 있습니다. 최신 버전의 Express를 사용할 것을 강력히 권장합니다.
1515

16-
If you are unable to upgrade past 3.x, please consider [Commercial Support Options](/{{ page.lang }}/support#commercial-support-options).
16+
버전 3.x 이상으로 업그레이드할 수 없는 경우, [상업적 지원 옵션](/{{ page.lang }}/support#commercial-support-options)을 고려해주시기 바랍니다.
1717

1818
</div>
1919

0 commit comments

Comments
 (0)