We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bafe331 commit 89242baCopy full SHA for 89242ba
frontend/src/components/templates/translations/pt-BR/stale-translation-warning.tsx
@@ -0,0 +1,25 @@
1
+import Admonition from "../../../Admonition";
2
+
3
+export default function StaleTranslationWarning({
4
+ englishDocLink,
5
+}: {
6
+ englishDocLink: string;
7
+}) {
8
+ return (
9
+ <Admonition type="warning">
10
+ <p>
11
+ <strong>A tradução pode estar desatualizada</strong>
12
+ </p>
13
14
+ A versão em inglês deste documento foi atualizada recentemente. Esta
15
+ tradução pode não refletir essas alterações ainda.
16
17
18
+ Ajude-nos a manter nossas traduções atualizadas! Se você é fluente
19
+ neste idioma, considere revisar a{" "}
20
+ <a href={englishDocLink}>versão em inglês</a> e atualizar esta
21
+ tradução.
22
23
+ </Admonition>
24
+ );
25
+}
0 commit comments