mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 09:38:16 -07:00
139 lines
3.0 KiB
JavaScript
139 lines
3.0 KiB
JavaScript
|
const en = [
|
||
|
{
|
||
|
text: "Getting Started",
|
||
|
link: "/guide/getting-started.html",
|
||
|
activeMatch: "/guide/"
|
||
|
},
|
||
|
{
|
||
|
text: "Reference",
|
||
|
children: [
|
||
|
{
|
||
|
text: "Manage",
|
||
|
children: [
|
||
|
"/manage/core.md",
|
||
|
"/manage/plugins.md",
|
||
|
"/manage/versions.md",
|
||
|
"/manage/configuration.md",
|
||
|
"/manage/commands.md",
|
||
|
{
|
||
|
text: "Changelog",
|
||
|
link: "https://github.com/asdf-vm/asdf/blob/master/CHANGELOG.md"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
text: "Plugins",
|
||
|
children: [
|
||
|
{
|
||
|
text: "Author",
|
||
|
children: [
|
||
|
"/plugins/create.md",
|
||
|
{
|
||
|
text: "GitHub Plugin Template",
|
||
|
link: "https://github.com/asdf-vm/asdf-plugin-template"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
text: "First Party Plugins",
|
||
|
children: [
|
||
|
{
|
||
|
text: "Elixir",
|
||
|
link: "https://github.com/asdf-vm/asdf-elixir"
|
||
|
},
|
||
|
{
|
||
|
text: "Erlang",
|
||
|
link: "https://github.com/asdf-vm/asdf-erlang"
|
||
|
},
|
||
|
{
|
||
|
text: "Node.js",
|
||
|
link: "https://github.com/asdf-vm/asdf-nodejs"
|
||
|
},
|
||
|
{
|
||
|
text: "Ruby",
|
||
|
link: "https://github.com/asdf-vm/asdf-ruby"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
text: "Community Plugins",
|
||
|
children: [
|
||
|
{
|
||
|
text: "asdf-community",
|
||
|
link: "https://github.com/asdf-community"
|
||
|
},
|
||
|
{
|
||
|
text: "GitHub Topics Search",
|
||
|
link: "https://github.com/topics/asdf-plugin"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
text: "Reference",
|
||
|
children: [
|
||
|
{
|
||
|
text: "Plugin Shortname Index",
|
||
|
link: "https://github.com/asdf-vm/asdf-plugins"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
text: "Contribute",
|
||
|
children: [
|
||
|
{
|
||
|
text: "Core",
|
||
|
children: ["/contribute/core.md", "/contribute/documentation.md"]
|
||
|
},
|
||
|
{
|
||
|
text: "Plugins",
|
||
|
children: ["/contribute/first-party-plugins.md"]
|
||
|
},
|
||
|
{
|
||
|
text: "CICD",
|
||
|
children: ["/contribute/github-actions.md"]
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
text: "Learn More",
|
||
|
children: [
|
||
|
{
|
||
|
text: "Questions",
|
||
|
children: [
|
||
|
"/learn-more/faq.md",
|
||
|
{
|
||
|
text: "GitHub Issues",
|
||
|
link: "https://github.com/asdf-vm/asdf/issues"
|
||
|
},
|
||
|
{
|
||
|
text: "GitHub Discussions",
|
||
|
link: "https://github.com/asdf-vm/asdf/discussions"
|
||
|
},
|
||
|
{
|
||
|
text: "StackOverflow Tag",
|
||
|
link: "https://stackoverflow.com/questions/tagged/asdf-vm"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
text: "Resources",
|
||
|
children: ["/learn-more/thanks.md"]
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
];
|
||
|
|
||
|
const pt_br = [
|
||
|
{
|
||
|
text: "Getting Started",
|
||
|
link: "/pt-BR/guide/getting-started.html",
|
||
|
activeMatch: "/pt-BR/guide/"
|
||
|
}
|
||
|
];
|
||
|
|
||
|
module.exports = { en, pt_br };
|