chore(i18n,curriculum): update translations (#43375)

This commit is contained in:
camperbot
2021-09-06 03:52:36 -07:00
committed by GitHub
parent b952bbb179
commit 148cf18412
70 changed files with 650 additions and 660 deletions

View File

@ -1,6 +1,6 @@
---
id: 5a23c84252665b21eecc7edc
title: Last Friday of each month
title: Última sexta-feira de cada mês
challengeType: 5
forumTopicId: 302299
dashedName: last-friday-of-each-month
@ -8,65 +8,65 @@ dashedName: last-friday-of-each-month
# --description--
Write a function that returns the date of the last Friday of a given month for a given year.
Escreva uma função que retorne a data da última sexta-feira de um mês fornecido para um determinado ano.
# --hints--
`lastFriday` should be a function.
`lastFriday` deve ser uma função.
```js
assert(typeof lastFriday == 'function');
```
`lastFriday(2018, 1)` should return a number.
`lastFriday(2018, 1)` deve retornar um número.
```js
assert(typeof lastFriday(2018, 1) == 'number');
```
`lastFriday(2018, 1)` should return `26`.
`lastFriday(2018, 1)` deve retornar `26`.
```js
assert.equal(lastFriday(2018, 1), 26);
```
`lastFriday(2017, 2)` should return `24`.
`lastFriday(2017, 2)` deve retornar `24`.
```js
assert.equal(lastFriday(2017, 2), 24);
```
`lastFriday(2012, 3)` should return `30`.
`lastFriday(2012, 3)` deve retornar `30`.
```js
assert.equal(lastFriday(2012, 3), 30);
```
`lastFriday(1900, 4)` should return `27`.
`lastFriday(1900, 4)` deve retornar `27`.
```js
assert.equal(lastFriday(1900, 4), 27);
```
`lastFriday(2000, 5)` should return `26`.
`lastFriday(2000, 5)` deve retornar `26`.
```js
assert.equal(lastFriday(2000, 5), 26);
```
`lastFriday(2006, 6)` should return `30`.
`lastFriday(2006, 6)` deve retornar `30`.
```js
assert.equal(lastFriday(2006, 6), 30);
```
`lastFriday(2010, 7)` should return `30`.
`lastFriday(2010, 7)` deve retornar `30`.
```js
assert.equal(lastFriday(2010, 7), 30);
```
`lastFriday(2005, 8)` should return `26`.
`lastFriday(2005, 8)` deve retornar `26`.
```js
assert.equal(lastFriday(2005, 8), 26);