Skip to content

Commit

Permalink
translate guides/tutorial/part-2/route-params (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueCutOfficial authored Sep 6, 2024
1 parent 04f66cb commit 79f6c4f
Show file tree
Hide file tree
Showing 5 changed files with 85 additions and 86 deletions.
1 change: 1 addition & 0 deletions .remarkignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,5 @@ guides/**/*.md
!guides/tutorial/part-2/ember-data.md
!guides/tutorial/part-2/index.md
!guides/tutorial/part-2/recap.md
!guides/tutorial/part-2/route-params.md
!guides/upgrading/index.md
6 changes: 3 additions & 3 deletions guides/tutorial/part-1/more-about-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Commençons par éditer le _template_. Dans un premier temps, écrivons en dur (
<span>Propriétaire :</span> Veruca Salt
</div>
<div class="detail type">
<span>Type :</span> Standalone
<span>Type :</span> Propriété indépendante
</div>
<div class="detail location">
<span>Adresse :</span> San Francisco
Expand Down Expand Up @@ -149,15 +149,15 @@ Plutôt que de coder en dur les valeurs pour les attributs `src` et `alt` sur la
<article class="rental">
<Rental::Image
src="https://upload.wikimedia.org/wikipedia/commons/c/cb/Crane_estate_(5).jpg"
alt="Une photo du Le Manoir Ancien"
alt="Photo de la propriété Le Manoir Ancien"
/>
<div class="details">
<h3>Le Manoir Ancien</h3>
<div class="detail owner">
<span>Propriétaire :</span> Veruca Salt
</div>
<div class="detail type">
<span>Type:</span> Standalone
<span>Type :</span> Propriété indépendante
</div>
<div class="detail location">
<span>Adresse :</span> San Francisco
Expand Down
6 changes: 3 additions & 3 deletions guides/tutorial/part-1/reusable-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,15 +299,15 @@ Hé, tous les tests sont passés&nbsp;! Est-ce que ça signifie pour autant que
<article class="rental">
<Rental::Image
src="https://upload.wikimedia.org/wikipedia/commons/c/cb/Crane_estate_(5).jpg"
alt="A picture of Le Manoir Ancien"
alt="Photo de la propriété Le Manoir Ancien"
/>
<div class="details">
<h3>Le Manoir Ancien</h3>
<div class="detail owner">
<span>Propriétaire :</span> Veruca Salt
</div>
<div class="detail type">
<span>Type:</span> Standalone
<span>Type :</span> Propriété indépendante
</div>
<div class="detail location">
<span>Adresse :</span> San Francisco
Expand All @@ -322,7 +322,7 @@ Hé, tous les tests sont passés&nbsp;! Est-ce que ça signifie pour autant que
@zoom="9"
@width="150"
@height="150"
alt="A map of Le Manoir Ancien"
alt="Carte de la propriété Le Manoir Ancien"
/>
</article>
```
Expand Down
12 changes: 6 additions & 6 deletions guides/tutorial/part-1/working-with-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ En passant `@model` au composant `<Rental>` sous la forme de l'argument `@rental
<article class="rental">
<Rental::Image
src="https://upload.wikimedia.org/wikipedia/commons/c/cb/Crane_estate_(5).jpg"
alt="A picture of Le Manoir Ancien"
alt="Photo de la propriété Le Manoir Ancien"
src={{@rental.image}}
alt="A picture of {{@rental.title}}"
alt="Photo de la propriété {{@rental.title}}"
/>
<div class="details">
<h3>Le Manoir Ancien</h3>
Expand All @@ -134,8 +134,8 @@ En passant `@model` au composant `<Rental>` sous la forme de l'argument `@rental
<span>Propriétaire :</span> {{@rental.owner}}
</div>
<div class="detail type">
<span>Type:</span> Standalone
<span>Type:</span> {{@rental.type}}
<span>Type :</span> Propriété indépendante
<span>Type :</span> {{@rental.type}}
</div>
<div class="detail location">
<span>Adresse :</span> San Francisco
Expand All @@ -154,8 +154,8 @@ En passant `@model` au composant `<Rental>` sous la forme de l'argument `@rental
@zoom="9"
@width="150"
@height="150"
alt="A map of Le Manoir Ancien"
alt="A map of {{@rental.title}}"
alt="Carte de la propriété Le Manoir Ancien"
alt="Carte de la propriété {{@rental.title}}"
/>
</article>
```
Expand Down
Loading

0 comments on commit 79f6c4f

Please sign in to comment.