Skip to content

Commit 3d1a669

Browse files
authored
chore(i18n,learn): processed translations (freeCodeCamp#48291)
1 parent cfa538c commit 3d1a669

File tree

32 files changed

+74
-56
lines changed

32 files changed

+74
-56
lines changed

curriculum/challenges/arabic/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d4a84b756d9c4b8255093.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: step-11
77

88
# --description--
99

10-
حان الوقت لإضافة بعض الألوان إلى الصفحة. تذكر أن إحدى الطرق لإضافة لون إلى عنصر ما هي استخدام <dfn>مصطلح اللون بالانجليزية</dfn> مثل `black`, أو `cyan`, أو `yellow`.
10+
It's time to add some color to the marker. تذكر أن إحدى الطرق لإضافة لون إلى عنصر ما هي استخدام <dfn>مصطلح اللون بالانجليزية</dfn> مثل `black`, أو `cyan`, أو `yellow`.
1111

1212
كتذكير، إليك كيفية استهداف فئة `freecodecamp`:
1313

@@ -19,15 +19,17 @@ dashedName: step-11
1919

2020
أنشئ قاعدة CSS جديدة تستهدف فئة `marker` وتعين خاصية `background-color` إلى `red`.
2121

22+
**Note:** You will not see any changes after adding the CSS.
23+
2224
# --hints--
2325

24-
يجب عليك إنشاء منتقى class لاستهداف فئة `marker`.
26+
You should create a class selector to target the `marker` class.
2527

2628
```js
2729
assert(new __helpers.CSSHelp(document).getStyle('.marker'));
2830
```
2931

30-
يجب أن تحتوي قاعدة CSS مسمى `.marker` علي الخاصية `background-color` بقيمة `red`.
32+
Your `.marker` CSS rule should have a `background-color` property set to `red`.
3133

3234
```js
3335
assert(new __helpers.CSSHelp(document).getStyle('.marker')?.backgroundColor === 'red');

curriculum/challenges/arabic/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d50b93ba424d6282c99cf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ dashedName: step-12
77

88
# --description--
99

10-
لاحظ أن marker الخاص بك لا يبدو أن له أي لون. تم بالفعل تطبيق لون الخلفية، ولكن بما أن عنصر `div` للـ marker فارغ، فليس لديه أي ارتفاع افتراضي.
10+
The background color was applied, but since the marker `div` element is empty, it doesn't have any height by default.
1111

12-
في قاعدة CSS مسمى `.marker` الخاص بك، عيين خاصية `width` إلى `200px` و `height` إلى `25px`.
12+
In your `.marker` CSS rule, set the `height` property to `25px` and the `width` property to `200px`
1313

1414
# --hints--
1515

curriculum/challenges/arabic/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a8f14fe6d1fc72454648c7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You should set `monsterStats.style.display` to `none`.
2323
assert.match(update.toString(), /monsterStats\.style\.display\s*=\s*('|")none\1/);
2424
```
2525

26-
This should be the first line of the `update` function.
26+
You should add your code in the first line of the `update` function.
2727

2828
```js
2929
assert.match(update.toString(), /update\s*\(\s*location\s*\)\s*\{\s*monsterStats\.style\.display\s*=\s*('|")none\1/);

curriculum/challenges/chinese-traditional/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d4a84b756d9c4b8255093.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: step-11
77

88
# --description--
99

10-
是時候爲頁面添加一些顏色了。 請記住,爲元素添加顏色的一種方法是使用 <dfn>color 關鍵字</dfn>,例如 `black``cyan``yellow`
10+
It's time to add some color to the marker. 請記住,爲元素添加顏色的一種方法是使用 <dfn>color 關鍵字</dfn>,例如 `black``cyan``yellow`
1111

1212
提醒一下,以下是定位類 `freecodecamp` 的方法:
1313

@@ -19,15 +19,17 @@ dashedName: step-11
1919

2020
創建一個以 `marker` 類爲目標的新 CSS 規則,並將其 `background-color` 屬性設置爲 `red`
2121

22+
**Note:** You will not see any changes after adding the CSS.
23+
2224
# --hints--
2325

24-
你應該創建一個類選擇器來定位 `marker` 類。
26+
You should create a class selector to target the `marker` class.
2527

2628
```js
2729
assert(new __helpers.CSSHelp(document).getStyle('.marker'));
2830
```
2931

30-
你的 `.marker` CSS 規則應該將 `background-color` 屬性設置爲 `red`
32+
Your `.marker` CSS rule should have a `background-color` property set to `red`.
3133

3234
```js
3335
assert(new __helpers.CSSHelp(document).getStyle('.marker')?.backgroundColor === 'red');

curriculum/challenges/chinese-traditional/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d50b93ba424d6282c99cf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ dashedName: step-12
77

88
# --description--
99

10-
請注意,你的筆似乎沒有任何顏色。 實際應用了背景顏色,但由於彩筆 `div` 元素爲空,因此默認情況下它沒有任何高度。
10+
The background color was applied, but since the marker `div` element is empty, it doesn't have any height by default.
1111

12-
在你的 `.marker` CSS 規則中,將 `width` 屬性設置爲 `200px`,並將 `height` 屬性設置爲 `25px`
12+
In your `.marker` CSS rule, set the `height` property to `25px` and the `width` property to `200px`
1313

1414
# --hints--
1515

curriculum/challenges/chinese-traditional/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a8f14fe6d1fc72454648c7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You should set `monsterStats.style.display` to `none`.
2323
assert.match(update.toString(), /monsterStats\.style\.display\s*=\s*('|")none\1/);
2424
```
2525

26-
This should be the first line of the `update` function.
26+
You should add your code in the first line of the `update` function.
2727

2828
```js
2929
assert.match(update.toString(), /update\s*\(\s*location\s*\)\s*\{\s*monsterStats\.style\.display\s*=\s*('|")none\1/);

curriculum/challenges/chinese/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d4a84b756d9c4b8255093.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: step-11
77

88
# --description--
99

10-
是时候为页面添加一些颜色了。 请记住,为元素添加颜色的一种方法是使用 <dfn>color 关键字</dfn>,例如 `black``cyan``yellow`
10+
It's time to add some color to the marker. 请记住,为元素添加颜色的一种方法是使用 <dfn>color 关键字</dfn>,例如 `black``cyan``yellow`
1111

1212
提醒一下,以下是定位类 `freecodecamp` 的方法:
1313

@@ -19,15 +19,17 @@ dashedName: step-11
1919

2020
创建一个以 `marker` 类为目标的新 CSS 规则,并将其 `background-color` 属性设置为 `red`
2121

22+
**Note:** You will not see any changes after adding the CSS.
23+
2224
# --hints--
2325

24-
你应该创建一个类选择器来定位 `marker` 类。
26+
You should create a class selector to target the `marker` class.
2527

2628
```js
2729
assert(new __helpers.CSSHelp(document).getStyle('.marker'));
2830
```
2931

30-
你的 `.marker` CSS 规则应该将 `background-color` 属性设置为 `red`
32+
Your `.marker` CSS rule should have a `background-color` property set to `red`.
3133

3234
```js
3335
assert(new __helpers.CSSHelp(document).getStyle('.marker')?.backgroundColor === 'red');

curriculum/challenges/chinese/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d50b93ba424d6282c99cf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ dashedName: step-12
77

88
# --description--
99

10-
请注意,你的笔似乎没有任何颜色。 实际应用了背景颜色,但由于彩笔 `div` 元素为空,因此默认情况下它没有任何高度。
10+
The background color was applied, but since the marker `div` element is empty, it doesn't have any height by default.
1111

12-
在你的 `.marker` CSS 规则中,将 `width` 属性设置为 `200px`,并将 `height` 属性设置为 `25px`
12+
In your `.marker` CSS rule, set the `height` property to `25px` and the `width` property to `200px`
1313

1414
# --hints--
1515

curriculum/challenges/chinese/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a8f14fe6d1fc72454648c7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You should set `monsterStats.style.display` to `none`.
2323
assert.match(update.toString(), /monsterStats\.style\.display\s*=\s*('|")none\1/);
2424
```
2525

26-
This should be the first line of the `update` function.
26+
You should add your code in the first line of the `update` function.
2727

2828
```js
2929
assert.match(update.toString(), /update\s*\(\s*location\s*\)\s*\{\s*monsterStats\.style\.display\s*=\s*('|")none\1/);

curriculum/challenges/espanol/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d4a84b756d9c4b8255093.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: step-11
77

88
# --description--
99

10-
Es hora de añadir algo de color a la página. Recuerda que una forma de añadir color a un elemento es utilizando el nombre del <dfn>color</dfn> en inglés, como `black` (negro), `cyan` (cian) o `yellow` (amarillo).
10+
It's time to add some color to the marker. Recuerda que una forma de añadir color a un elemento es utilizando el nombre del <dfn>color</dfn> en inglés, como `black` (negro), `cyan` (cian) o `yellow` (amarillo).
1111

1212
Como recordatorio, aquí está cómo vincular la clase `freecodecamp`:
1313

@@ -19,15 +19,17 @@ Como recordatorio, aquí está cómo vincular la clase `freecodecamp`:
1919

2020
Crea una nueva regla CSS que apunta a la clase `marker`y establezca la `background-color` a `red`.
2121

22+
**Note:** You will not see any changes after adding the CSS.
23+
2224
# --hints--
2325

24-
Debes crear un selector de clases para apuntar a la clase `marker`.
26+
You should create a class selector to target the `marker` class.
2527

2628
```js
2729
assert(new __helpers.CSSHelp(document).getStyle('.marker'));
2830
```
2931

30-
La regla CSS de tu selector `.marker` debe tener una propiedad `background-color` con el valor `red` (rojo).
32+
Your `.marker` CSS rule should have a `background-color` property set to `red`.
3133

3234
```js
3335
assert(new __helpers.CSSHelp(document).getStyle('.marker')?.backgroundColor === 'red');

curriculum/challenges/espanol/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d50b93ba424d6282c99cf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ dashedName: step-12
77

88
# --description--
99

10-
Puedes ver que tu marcador parece no tener color. El color de fondo (background color) se aplicó, pero como el elemento `div` del marcador está vacío y no tiene ninguna altura asignada por defecto.
10+
The background color was applied, but since the marker `div` element is empty, it doesn't have any height by default.
1111

12-
En tu regla CSS `.marker`, agrega una propiedad `width` (ancho) con un valor de `200px` y una propiedad `height` (altura) con un valor dé `25px`.
12+
In your `.marker` CSS rule, set the `height` property to `25px` and the `width` property to `200px`
1313

1414
# --hints--
1515

curriculum/challenges/espanol/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a8f14fe6d1fc72454648c7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You should set `monsterStats.style.display` to `none`.
2323
assert.match(update.toString(), /monsterStats\.style\.display\s*=\s*('|")none\1/);
2424
```
2525

26-
This should be the first line of the `update` function.
26+
You should add your code in the first line of the `update` function.
2727

2828
```js
2929
assert.match(update.toString(), /update\s*\(\s*location\s*\)\s*\{\s*monsterStats\.style\.display\s*=\s*('|")none\1/);

curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d4a84b756d9c4b8255093.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: step-11
77

88
# --description--
99

10-
It's time to add some color to the page. Remember that one way to add color to an element is to use a <dfn>color keyword</dfn> like `black`, `cyan`, or `yellow`.
10+
It's time to add some color to the marker. Remember that one way to add color to an element is to use a <dfn>color keyword</dfn> like `black`, `cyan`, or `yellow`.
1111

1212
As a reminder, here's how to target the class `freecodecamp`:
1313

@@ -19,6 +19,8 @@ As a reminder, here's how to target the class `freecodecamp`:
1919

2020
Create a new CSS rule that targets the class `marker`, and set its `background-color` property to `red`.
2121

22+
**Note:** You will not see any changes after adding the CSS.
23+
2224
# --hints--
2325

2426
You should create a class selector to target the `marker` class.

curriculum/challenges/german/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d50b93ba424d6282c99cf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ dashedName: step-12
77

88
# --description--
99

10-
Notice that your marker doesn't seem to have any color. The background color was actually applied, but since the marker `div` element is empty, it doesn't have any height by default.
10+
The background color was applied, but since the marker `div` element is empty, it doesn't have any height by default.
1111

12-
In your `.marker` CSS rule, set the `width` property to `200px` and the `height` property to `25px`.
12+
In your `.marker` CSS rule, set the `height` property to `25px` and the `width` property to `200px`
1313

1414
# --hints--
1515

curriculum/challenges/german/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a8f14fe6d1fc72454648c7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You should set `monsterStats.style.display` to `none`.
2323
assert.match(update.toString(), /monsterStats\.style\.display\s*=\s*('|")none\1/);
2424
```
2525

26-
This should be the first line of the `update` function.
26+
You should add your code in the first line of the `update` function.
2727

2828
```js
2929
assert.match(update.toString(), /update\s*\(\s*location\s*\)\s*\{\s*monsterStats\.style\.display\s*=\s*('|")none\1/);

curriculum/challenges/italian/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d4a84b756d9c4b8255093.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: step-11
77

88
# --description--
99

10-
È ora di aggiungere un po' di colore alla pagina. Ricorda che un modo per aggiungere colore a un elemento è utilizzare una <dfn>parola chiave</dfn> come `black`, `cyan` o `yellow`.
10+
It's time to add some color to the marker. Ricorda che un modo per aggiungere colore a un elemento è utilizzare una <dfn>parola chiave</dfn> come `black`, `cyan` o `yellow`.
1111

1212
Come promemoria, ecco come fare riferimento alla classe `freecodecamp`:
1313

@@ -19,15 +19,17 @@ Come promemoria, ecco come fare riferimento alla classe `freecodecamp`:
1919

2020
Crea una nuova regola CSS destinata alla classe `marker` e assegna alla proprietà `background-color` il valore `red`.
2121

22+
**Note:** You will not see any changes after adding the CSS.
23+
2224
# --hints--
2325

24-
Dovresti creare un selettore di classe per scegliere come target la classe `marker`.
26+
You should create a class selector to target the `marker` class.
2527

2628
```js
2729
assert(new __helpers.CSSHelp(document).getStyle('.marker'));
2830
```
2931

30-
La regola CSS `.marker` dovrebbe avere una proprietà `background-color` con il valore `red`.
32+
Your `.marker` CSS rule should have a `background-color` property set to `red`.
3133

3234
```js
3335
assert(new __helpers.CSSHelp(document).getStyle('.marker')?.backgroundColor === 'red');

curriculum/challenges/italian/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d50b93ba424d6282c99cf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ dashedName: step-12
77

88
# --description--
99

10-
Come puoi vedere, il pennarello non sembra avere alcun colore. Il colore di sfondo è stato effettivamente applicato, ma poiché l'elemento `div` marker è vuoto, non possiede alcuna altezza come impostazione predefinita.
10+
The background color was applied, but since the marker `div` element is empty, it doesn't have any height by default.
1111

12-
Nella regola CSS `.marker`, assegna alla proprietà `width` il valore `200px` e alla proprietà `height` il valore `25px`.
12+
In your `.marker` CSS rule, set the `height` property to `25px` and the `width` property to `200px`
1313

1414
# --hints--
1515

curriculum/challenges/italian/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a8f14fe6d1fc72454648c7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Dovresti impostare `monsterStats.style.display` su `none`.
2323
assert.match(update.toString(), /monsterStats\.style\.display\s*=\s*('|")none\1/);
2424
```
2525

26-
Questa dovrebbe essere la prima riga della funzione `update`.
26+
You should add your code in the first line of the `update` function.
2727

2828
```js
2929
assert.match(update.toString(), /update\s*\(\s*location\s*\)\s*\{\s*monsterStats\.style\.display\s*=\s*('|")none\1/);

curriculum/challenges/japanese/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d4a84b756d9c4b8255093.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: step-11
77

88
# --description--
99

10-
ではページに色を追加しましょう。 要素に色をつける方法の 1 つに、`black``cyan``yellow` のような<dfn>色キーワード</dfn>を使う方法があることを思い出してください。
10+
It's time to add some color to the marker. 要素に色をつける方法の 1 つに、`black``cyan``yellow` のような<dfn>色キーワード</dfn>を使う方法があることを思い出してください。
1111

1212
ヒントとして、クラス `freecodecamp` を選択する方法は次の通りです:
1313

@@ -19,15 +19,17 @@ dashedName: step-11
1919

2020
クラス `marker` を選択する新しい CSS ルールを作成し、`background-color` プロパティを `red` に設定してください。
2121

22+
**Note:** You will not see any changes after adding the CSS.
23+
2224
# --hints--
2325

24-
クラス `marker` を選択するクラスセレクターを作成する必要があります。
26+
You should create a class selector to target the `marker` class.
2527

2628
```js
2729
assert(new __helpers.CSSHelp(document).getStyle('.marker'));
2830
```
2931

30-
`.marker` 用の CSS ルールの `background-color` プロパティを `red` に設定する必要があります。
32+
Your `.marker` CSS rule should have a `background-color` property set to `red`.
3133

3234
```js
3335
assert(new __helpers.CSSHelp(document).getStyle('.marker')?.backgroundColor === 'red');

curriculum/challenges/japanese/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d50b93ba424d6282c99cf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ dashedName: step-12
77

88
# --description--
99

10-
マーカーに色がついていないことに注目してください。 背景色は実は適用されていますが、マーカーの `div` 要素が空なので、デフォルトの状態では高さがありません。
10+
The background color was applied, but since the marker `div` element is empty, it doesn't have any height by default.
1111

12-
`.marker` CSS ルール内で、`width` プロパティを `200px` に、`height` プロパティを `25px` に設定してください。
12+
In your `.marker` CSS rule, set the `height` property to `25px` and the `width` property to `200px`
1313

1414
# --hints--
1515

curriculum/challenges/japanese/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a8f14fe6d1fc72454648c7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ You should set `monsterStats.style.display` to `none`.
2323
assert.match(update.toString(), /monsterStats\.style\.display\s*=\s*('|")none\1/);
2424
```
2525

26-
This should be the first line of the `update` function.
26+
You should add your code in the first line of the `update` function.
2727

2828
```js
2929
assert.match(update.toString(), /update\s*\(\s*location\s*\)\s*\{\s*monsterStats\.style\.display\s*=\s*('|")none\1/);

curriculum/challenges/portuguese/02-javascript-algorithms-and-data-structures/object-oriented-programming/set-the-childs-prototype-to-an-instance-of-the-parent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Este desafio cobre o próximo passo: definir o `prototype` do subtipo (ou filho)
1616
Bird.prototype = Object.create(Animal.prototype);
1717
```
1818

19-
Lembre-se de que o `prototype` é como uma receita para criar um objeto. De certa forma, a receita para `Bird` agora inclui todos os "ingredientes" chave para `Animal`.
19+
Lembre-se de que o `prototype` é como uma receita para criar um objeto. De certo modo, a receita de `Bird` agora inclui todos os "ingredientes" importantes de `Animal`.
2020

2121
```js
2222
let duck = new Bird("Donald");

curriculum/challenges/portuguese/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d4a84b756d9c4b8255093.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dashedName: step-11
77

88
# --description--
99

10-
É hora de adicionar um pouco de cor à página. Lembre-se de que uma maneira de adicionar cor a um elemento é usar uma <dfn>palavra-chave de cor</dfn> como `black`, `cyan` ou `yellow`.
10+
É hora de adicionar um pouco de cor ao marcador. Lembre-se de que uma maneira de adicionar cor a um elemento é usar uma <dfn>palavra-chave de cor</dfn> como `black`, `cyan` ou `yellow`.
1111

1212
Como lembrete, aqui está como vincular a classe `freecodecamp`:
1313

@@ -19,6 +19,8 @@ Como lembrete, aqui está como vincular a classe `freecodecamp`:
1919

2020
Crie uma nova regra de CSS vinculada à classe `marker` e defina sua propriedade `background-color` para `red`.
2121

22+
**Observação:** você não verá nenhuma alteração após adicionar o CSS.
23+
2224
# --hints--
2325

2426
Você deve usar um seletor de classe para a classe `marker`.

curriculum/challenges/portuguese/14-responsive-web-design-22/learn-css-colors-by-building-a-set-of-colored-markers/616d50b93ba424d6282c99cf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ dashedName: step-12
77

88
# --description--
99

10-
Observe que seu marcador não parece ter nenhuma cor. A cor de fundo foi realmente aplicada, mas como o elemento marcador `div` está vazio, ele não tem qualquer altura por padrão.
10+
A cor de fundo foi aplicada, mas como o elemento `div` do marcador está vazio, ele não tem qualquer altura por padrão.
1111

12-
Na regra do CSS `.marker` defina a propriedade `width` como `200px` e `height` como `25px`.
12+
Na regra do CSS `.marker`, defina a propriedade `height` como `25px` e a propriedade `width` como `200px`
1313

1414
# --hints--
1515

curriculum/challenges/portuguese/15-javascript-algorithms-and-data-structures-22/learn-basic-javascript-by-building-a-role-playing-game/62a8f14fe6d1fc72454648c7.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Você deve definir `monsterStats.style.display` como `none`.
2323
assert.match(update.toString(), /monsterStats\.style\.display\s*=\s*('|")none\1/);
2424
```
2525

26-
Esta deve ser a primeira linha da função `update`.
26+
Você deve adicionar o código à primeira linha da função `update`.
2727

2828
```js
2929
assert.match(update.toString(), /update\s*\(\s*location\s*\)\s*\{\s*monsterStats\.style\.display\s*=\s*('|")none\1/);

curriculum/challenges/ukrainian/02-javascript-algorithms-and-data-structures/basic-javascript/comparison-with-the-greater-than-or-equal-to-operator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dashedName: comparison-with-the-greater-than-or-equal-to-operator
99

1010
# --description--
1111

12-
Оператор "більше ніж дорівнює" (`>=`) порівнює значення двох чисел. Якщо число зліва більше за число справа, тоді функція є `true`. В іншому випадку - вона `false`.
12+
Оператор "більше ніж дорівнює" (`>=`) порівнює значення двох чисел. Якщо число зліва більше чи дорівнює числу справа, тоді повертається `true`. В іншому випадку - вона `false`.
1313

1414
Так само, як і оператор рівності, оператор "більше ніж дорівнює" конвертує типи даних під час їх порівняння.
1515

0 commit comments

Comments
 (0)