Make the translated sections be shown (maybe)

This commit is contained in:
Kazevic 2024-04-19 14:59:23 +00:00 committed by GitHub
parent 6d397eb0d3
commit 8f5a4e7078

View File

@ -1,18 +1,18 @@
import { DefaultTheme, LocaleSpecificConfig } from "vitepress";
const navbar: DefaultTheme.NavItem[] = [
{ text: "Get Started", link: "/start" },
{ text: "Contribute", link: "/contribute" },
{ text: "Começar", link: "/start" },
{ text: "Contribuir", link: "/contribute" },
];
const sidebar: DefaultTheme.Sidebar = [
{ text: "Glossary", link: "/glossary" },
{ text: "Software", link: "/software" },
{ text: "Download", link: "/download" },
{ text: "Emulation", link: "/emulation" },
{ text: "Linux", link: "/linux" },
{ text: "Useful", link: "/useful" },
{ text: "Unsafe", link: "/unsafe" },
{ text: "Glossário", link: "/br/glossary" },
{ text: "Programas", link: "/br/software" },
{ text: "Downloads", link: "/br/download" },
{ text: "Emulação", link: "/br/emulation" },
{ text: "Linux", link: "/br/linux" },
{ text: "Útil", link: "/br/useful" },
{ text: "Não Seguro", link: "/br/unsafe" },
];
export const brLocale: LocaleSpecificConfig<DefaultTheme.Config> = {
@ -21,7 +21,7 @@ export const brLocale: LocaleSpecificConfig<DefaultTheme.Config> = {
sidebar: [{}],
editLink: {
pattern: "https://github.com/privateersclub/wiki/edit/master/docs/:path",
text: "Suggest Changes",
text: "Sugerir Mudanças",
},
},
};