Skip to content

Commit ec5d01a

Browse files
authored
fix accessibility issue related to image alt text (#1809)
1 parent bdf2952 commit ec5d01a

File tree

19 files changed

+28
-28
lines changed

19 files changed

+28
-28
lines changed

de/guide/writing-middleware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Das folgende Beispiel zeigt die Elemente eines Middlewarefunktionsaufrufs:
2525

2626
<table style="padding: 0; border: 0; width: 960px; margin-bottom: 10px;">
2727
<tr><td style="margin: 0; padding: 0px; border: 0; width: 410px;">
28-
<img src="/images/express-mw.png" style="margin: 0px; padding: 0px; width: 410px; height: 308px;" />
28+
<img src="/images/express-mw.png" alt="Elements of a middleware function call" style="margin: 0px; padding: 0px; width: 410px; height: 308px;" />
2929
</td>
3030
<td style="margin: 0; padding: 0 0 0 5px; border: 0; width: 550px;">
3131
<div class="callout" id="callout1">HTTP-Methode, für die die Middlewarefunktion angewendet wird.</div>

en/guide/writing-middleware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The following figure shows the elements of a middleware function call:
2525

2626
<table id="mw-fig">
2727
<tr><td id="mw-fig-imgcell">
28-
<img src="/images/express-mw.png" id="mw-fig-img" />
28+
<img src="/images/express-mw.png" alt="Elements of a middleware function call" id="mw-fig-img" />
2929
</td>
3030
<td class="mw-fig-callouts">
3131
<div class="callout" id="callout1">HTTP method for which the middleware function applies.</div>

en/resources/community.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,19 +76,19 @@ Express is a project of the OpenJS Foundation. Please review the [trademark poli
7676
<div>
7777
<h3>Logotype</h3>
7878
<a href="/images/brand/logotype-light.svg" class="hidden-dark">
79-
<img src="/images/brand/logotype-light.svg" width="250" height="56"/>
79+
<img src="/images/brand/logotype-light.svg" alt="Express.js logo" width="250" height="56"/>
8080
</a>
8181
<a href="/images/brand/logotype-dark.svg" class="hidden-light">
82-
<img src="/images/brand/logotype-dark.svg" width="250" height="56"/>
82+
<img src="/images/brand/logotype-dark.svg" alt="Express.js logo" width="250" height="56"/>
8383
</a>
8484
</div>
8585
<div>
8686
<h3>Logomark</h3>
8787
<a href="/images/brand/logo-light.svg" class="hidden-dark">
88-
<img src="/images/brand/logo-light.svg" width="96.5" height="56"/>
88+
<img src="/images/brand/logo-light.svg" alt="Express.js mark" width="96.5" height="56"/>
8989
</a>
9090
<a href="/images/brand/logo-dark.svg" class="hidden-light">
91-
<img src="/images/brand/logo-dark.svg" width="96.5" height="56"/>
91+
<img src="/images/brand/logo-dark.svg" alt="Express.js mark" width="96.5" height="56"/>
9292
</a>
9393
</div>
9494
<div>

es/guide/writing-middleware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ El siguiente ejemplo muestra los elementos de una llamada a función de middlewa
2626

2727
<table id="mw-fig">
2828
<tr><td id="mw-fig-imgcell">
29-
<img src="/images/express-mw.png" id="mw-fig-img" />
29+
<img src="/images/express-mw.png" alt="Elements of a middleware function call" id="mw-fig-img" />
3030
</td>
3131
<td class="mw-fig-callouts">
3232
<div class="callout" id="callout1">Método HTTP para el que se aplica la función de middleware.</div>

es/resources/community.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,19 +70,19 @@ Express es un proyecto de la Fundación OpenJS. Por favor, revise la [política
7070
<div>
7171
<h3>Logotipo</h3>
7272
<a href="/images/brand/logotype-light.svg" class="hidden-dark">
73-
<img src="/images/brand/logotype-light.svg" width="250" height="56"/>
73+
<img src="/images/brand/logotype-light.svg" alt="Express.js logo" width="250" height="56"/>
7474
</a>
7575
<a href="/images/brand/logotype-dark.svg" class="hidden-light">
76-
<img src="/images/brand/logotype-dark.svg" width="250" height="56"/>
76+
<img src="/images/brand/logotype-dark.svg" alt="Express.js logo" width="250" height="56"/>
7777
</a>
7878
</div>
7979
<div>
8080
<h3>Logo de Marca</h3>
8181
<a href="/images/brand/logo-light.svg" class="hidden-dark">
82-
<img src="/images/brand/logo-light.svg" width="96.5" height="56"/>
82+
<img src="/images/brand/logo-light.svg" alt="Express.js mark" width="96.5" height="56"/>
8383
</a>
8484
<a href="/images/brand/logo-dark.svg" class="hidden-light">
85-
<img src="/images/brand/logo-dark.svg" width="96.5" height="56"/>
85+
<img src="/images/brand/logo-dark.svg" alt="Express.js mark" width="96.5" height="56"/>
8686
</a>
8787
</div>
8888
<div>

fr/guide/writing-middleware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ L'exemple suivant montre les éléments d'un appel de fonction middleware:
2626

2727
<table style="padding: 0; border: 0; width: 960px; margin-bottom: 10px;">
2828
<tr><td style="margin: 0; padding: 0px; border: 0; width: 410px;">
29-
<img src="/images/express-mw.png" style="margin: 0px; padding: 0px; width: 410px; height: 308px;" />
29+
<img src="/images/express-mw.png" alt="Elements of a middleware function call" style="margin: 0px; padding: 0px; width: 410px; height: 308px;" />
3030
</td>
3131
<td style="margin: 0; padding: 0 0 0 5px; border: 0; width: 550px;">
3232
<div class="callout" id="callout1">Méthode HTTP à laquelle la fonction middleware s'applique.</div>

id/guide/writing-middleware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The following figure shows the elements of a middleware function call:
2525

2626
<table id="mw-fig">
2727
<tr><td id="mw-fig-imgcell">
28-
<img src="/images/express-mw.png" id="mw-fig-img" />
28+
<img src="/images/express-mw.png" alt="Elements of a middleware function call" id="mw-fig-img" />
2929
</td>
3030
<td class="mw-fig-callouts">
3131
<div class="callout" id="callout1">HTTP method for which the middleware function applies.</div>

it/guide/writing-middleware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ I seguenti esempi mostrano gli elementi di una chiamata alla funzione middleware
2626

2727
<table style="padding: 0; border: 0; width: 960px; margin-bottom: 10px;">
2828
<tr><td style="margin: 0; padding: 0px; border: 0; width: 410px;">
29-
<img src="/images/express-mw.png" style="margin: 0px; padding: 0px; width: 410px; height: 308px;" />
29+
<img src="/images/express-mw.png" alt="Elements of a middleware function call" style="margin: 0px; padding: 0px; width: 410px; height: 308px;" />
3030
</td>
3131
<td style="margin: 0; padding: 0 0 0 5px; border: 0; width: 550px;">
3232
<div class="callout" id="callout1">Metodo HTTP per cui si applica la funzione middleware.</div>

ja/guide/writing-middleware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ description: Learn how to write custom middleware functions for Express.js appli
2626

2727
<table id="mw-fig">
2828
<tr><td id="mw-fig-imgcell">
29-
<img src="/images/express-mw.png" id="mw-fig-img" />
29+
<img src="/images/express-mw.png" alt="Elements of a middleware function call" id="mw-fig-img" />
3030
</td>
3131
<td class="mw-fig-callouts">
3232
<div class="callout" id="callout1">ミドルウェア関数が適用される HTTP メソッド。</div>

ko/guide/writing-middleware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ description: Learn how to write custom middleware functions for Express.js appli
2626

2727
<table id="mw-fig">
2828
<tr><td id="mw-fig-imgcell">
29-
<img src="/images/express-mw.png" id="mw-fig-img" />
29+
<img src="/images/express-mw.png" alt="Elements of a middleware function call" id="mw-fig-img" />
3030
</td>
3131
<td class="mw-fig-callouts">
3232
<div class="callout" id="callout1">미들웨어 함수가 적용되는 HTTP 메소드.</div>

0 commit comments

Comments
 (0)