diff --git a/curriculum/challenges/english/00-certificates/back-end-development-and-apis-certificate/back-end-development-and-apis-certificate.yml b/curriculum/challenges/english/00-certificates/back-end-development-and-apis-certificate/back-end-development-and-apis-certificate.yml index 697d71c330..61de152fe1 100644 --- a/curriculum/challenges/english/00-certificates/back-end-development-and-apis-certificate/back-end-development-and-apis-certificate.yml +++ b/curriculum/challenges/english/00-certificates/back-end-development-and-apis-certificate/back-end-development-and-apis-certificate.yml @@ -4,18 +4,13 @@ title: Back End Development and APIs Certificate challengeType: 7 isPrivate: true tests: - - - id: bd7158d8c443edefaeb5bdef - title: Microsserviço de timestamp - - - id: bd7158d8c443edefaeb5bdff - title: Microsserviço parseador de cabeçalho de requisição - - - id: bd7158d8c443edefaeb5bd0e - title: Microsserviço redutor de URL - - - id: 5a8b073d06fa14fcfde687aa - title: Rastreador de exercícios - - - id: bd7158d8c443edefaeb5bd0f - title: Microsserviço de metadados de arquivos + - id: bd7158d8c443edefaeb5bdef + title: Timestamp Microservice + - id: bd7158d8c443edefaeb5bdff + title: Request Header Parser Microservice + - id: bd7158d8c443edefaeb5bd0e + title: URL Shortener Microservice + - id: 5a8b073d06fa14fcfde687aa + title: Exercise Tracker + - id: bd7158d8c443edefaeb5bd0f + title: File Metadata Microservice diff --git a/curriculum/challenges/english/00-certificates/front-end-development-libraries-certificate/front-end-development-libraries-certificate.yml b/curriculum/challenges/english/00-certificates/front-end-development-libraries-certificate/front-end-development-libraries-certificate.yml index 6041792580..f963bf19b9 100644 --- a/curriculum/challenges/english/00-certificates/front-end-development-libraries-certificate/front-end-development-libraries-certificate.yml +++ b/curriculum/challenges/english/00-certificates/front-end-development-libraries-certificate/front-end-development-libraries-certificate.yml @@ -4,18 +4,13 @@ title: Front End Development Libraries Certificate challengeType: 7 isPrivate: true tests: - - - id: bd7158d8c442eddfaeb5bd13 - title: Crie uma máquina de citação aleatória - - - id: bd7157d8c242eddfaeb5bd13 - title: Crie um pré-visualizador de markdown - - - id: 587d7dbc367417b2b2512bae - title: Crie uma bateria eletrônica - - - id: bd7158d8c442eddfaeb5bd17 - title: Crie uma calculadora JavaScript - - - id: bd7158d8c442eddfaeb5bd0f - title: Crie um Relógio 25 + 5 + - id: bd7158d8c442eddfaeb5bd13 + title: Build a Random Quote Machine + - id: bd7157d8c242eddfaeb5bd13 + title: Build a Markdown Previewer + - id: 587d7dbc367417b2b2512bae + title: Build a Drum Machine + - id: bd7158d8c442eddfaeb5bd17 + title: Build a JavaScript Calculator + - id: bd7158d8c442eddfaeb5bd0f + title: Build a 25 + 5 Clock diff --git a/curriculum/challenges/english/03-front-end-development-libraries/react/introducing-inline-styles.md b/curriculum/challenges/english/03-front-end-development-libraries/react/introducing-inline-styles.md index f630f58596..ac7073e6a3 100644 --- a/curriculum/challenges/english/03-front-end-development-libraries/react/introducing-inline-styles.md +++ b/curriculum/challenges/english/03-front-end-development-libraries/react/introducing-inline-styles.md @@ -1,6 +1,6 @@ --- id: 5a24c314108439a4d4036181 -title: Introduzir estilos em linha +title: Introducing Inline Styles challengeType: 6 forumTopicId: 301395 dashedName: introducing-inline-styles @@ -8,33 +8,32 @@ dashedName: introducing-inline-styles # --description-- -Existem outros conceitos complexos que adicionam recursos poderosos ao seu código React. Mas você pode estar se perguntando sobre o problema mais simples de como estilizar esses elementos JSX que você cria em React. Você provavelmente sabe que não será exatamente o mesmo que trabalhar com HTML por causa [da forma como aplica classes aos elementos JSX](/learn/front-end-development-libraries/react/define-an-html-class-in-jsx). +There are other complex concepts that add powerful capabilities to your React code. But you may be wondering about the more simple problem of how to style those JSX elements you create in React. You likely know that it won't be exactly the same as working with HTML because of [the way you apply classes to JSX elements](/learn/front-end-development-libraries/react/define-an-html-class-in-jsx). -Se você importar estilos de uma folha de estilos, não é muito diferente. Você aplica uma classe ao seu elemento JSX usando o atributo `className` e aplica estilos à classe em sua folha de estilos. Outra opção é aplicar estilos em linha, que são muito comuns no desenvolvimento de ReactJS. +If you import styles from a stylesheet, it isn't much different at all. You apply a class to your JSX element using the `className` attribute, and apply styles to the class in your stylesheet. Another option is to apply inline styles, which are very common in ReactJS development. -Você aplica estilos em linha em elementos JSX similares a como você faz isso em HTML, mas com algumas diferenças em JSX. Aqui está um exemplo de estilo integrado em HTML: +You apply inline styles to JSX elements similar to how you do it in HTML, but with a few JSX differences. Here's an example of an inline style in HTML: ```jsx