chore: manual translations (#42811)

This commit is contained in:
Nicholas Carrigan (he/him)
2021-07-09 21:23:54 -07:00
committed by GitHub
parent a3395269a0
commit c4fd49e5b7
806 changed files with 8935 additions and 4378 deletions

View File

@ -8,11 +8,11 @@ dashedName: style-d3-labels
# --description--
D3 methods can add styles to the bar labels. The `fill` attribute sets the color of the text for a `text` node. The `style()` method sets CSS rules for other styles, such as "font-family" or "font-size".
D3 methods can add styles to the bar labels. The `fill` attribute sets the color of the text for a `text` node. The `style()` method sets CSS rules for other styles, such as `font-family` or `font-size`.
# --instructions--
Set the `font-size` of the `text` elements to 25px, and the color of the text to red.
Set the `font-size` of the `text` elements to `25px`, and the color of the text to red.
# --hints--
@ -22,7 +22,7 @@ The labels should all have a `fill` color of red.
assert($('text').css('fill') == 'rgb(255, 0, 0)');
```
The labels should all have a `font-size` of 25 pixels.
The labels should all have a `font-size` of `25` pixels.
```js
assert($('text').css('font-size') == '25px');