Skip to content

translate(pt): Community page #822

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/typescriptlang-org/src/copy/en/community.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
export const comCopy = {
com_layout_title: "How to set up TypeScript",
com_layout_title: "How to set up TypeScript", // FIXME: Is this the right title for the community page?
com_layout_description:
"Connect with other TypeScripters online and offline.",
com_headline: "Connect with us",
com_headline: "Connect with us", // FIXME: I think this is not used anywhere
com_connect_online: "Online",
com_connect_online_description:
" Tell us what’s working well, what you want to see added or improved, and find out about new updates.",
Expand All @@ -17,8 +17,8 @@ export const comCopy = {
com_online_github_href: "Tell us on GitHub",
com_online_twitter_desc: "Stay up to date. Follow us on Twitter",
com_online_blog_desc:
"Learn about the latest TypeScript developments via our",
com_online_typed_desc: "TypeScript definition files",
"Learn about the latest TypeScript developments via our", //... blog
com_online_typed_desc: "TypeScript definition files.",
com_online_typed_href: "Browse the thousands of",
com_online_typed_available_for:
"available for common libraries and frameworks.",
Expand Down
8 changes: 8 additions & 0 deletions packages/typescriptlang-org/src/copy/pt.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
import { defineMessages } from "react-intl"
import { Copy, messages as englishMessages } from "./en"
import { navCopy } from "./pt/nav"
import { docCopy } from "./pt/documentation"
import { indexCopy } from "./pt/index"
import { comCopy } from "./pt/community"
import { handbookCopy } from "./pt/handbook"

export const lang: Copy = defineMessages({
...englishMessages,
...navCopy,
...docCopy,
...indexCopy,
...comCopy,
...handbookCopy,
})
27 changes: 27 additions & 0 deletions packages/typescriptlang-org/src/copy/pt/community.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
export const comCopy = {
com_layout_title: "Como configurar TypeScript",
com_layout_description:
"Conecte-se com outros do mundo TypeScript online e offline.",
com_headline: "Conecte-se com a gente",
com_connect_online: "Online",
com_connect_online_description:
"Conte-nos o que está funcionando bem, o que quer ver adicionado ou aprimorado e descubra novas atualizações.",
com_online_stack_overflow_desc:
"Conecte-se com colegas e faça perguntas sobre Typescript usando a tag 'typescript'",
com_online_stack_overflow_tag: "",
com_online_discord_header: "Chat",
com_online_discord_desc:
"Converse com outros usuários de TypeScript no chat da comunidade TypeScript.",
com_online_github_desc:
"Encontrou um bug, ou quer nos dar feedback construtivo?",
com_online_github_href: "Conte-nos no Github",
com_online_twitter_desc: "Mantenha-se atualizado. Nos siga no Twitter",
com_online_blog_desc:
"Aprenda sobre os desenvolvimentos mais recentes do Typescript no nosso", //... blog
com_online_typed_desc: "Definições de tipos de Typescript.",
com_online_typed_href: "Navegue pelas milhares de",
com_online_typed_available_for: "bibliotecas e frameworks disponíveis.",
com_person: "Conecte-se pessoalmente",
com_conferences: "Conferências",
com_conferences_alt_img: "logo de ",
}