94 lines
3.3 KiB
JavaScript
Raw Normal View History

2020-02-15 01:31:53 +02:00
module.exports = {
locales: {
'/': {
lang: 'en-US',
title: 'Exonumia',
description: 'The landing page for native African language speaker looking to learn about Bitcoin.'
},
'/ng/': {
lang: 'ng',
title: 'Exonumia',
description: 'Ke yona landing page for native African language speaker looking to learn about Bitcoin.'
}
},
themeConfig: {
repo: 'https://code.sigidli.com/exonumia/exonumia.cc',
repoLabel: 'CODE',
editLinks: true,
searchPlaceholder: 'what goes up?',
// i18n
locales: {
'/': {
selectText: '🇬🇧 Languages',
label: '🇬🇧 English',
ariaLabel: 'Languages',
editLinkText: 'Improve Content',
nav: [
{
text: 'Home',
link: '/'
},
{
text: 'Translations',
link: '/translations/'
},
{
text: 'Sigidli',
link: 'https://sigidli.com'
}
],
sidebar: [
'/about/',
{
title: 'Translations', // required
path: '/translations/', // optional, which should be a absolute path.
// collapsable: false, // optional, defaults to true
// sidebarDepth: 3, // optional, defaults to 1
children: [
'/',
'/explain-bitcoin-like-im-five/',
'/bitcoin-is-like/',
'/i-am-hodling/'
]
}
],
},
'/ng/': {
selectText: '🇳🇦 Languages',
label: '🇳🇦 Oshiwambo',
ariaLabel: 'Languages',
editLinks: true,
editLinkText: "Improve Translation!",
nav: [
{
text: 'Home',
link: '/ng/'
},
{
text: 'Translations',
link: '/ng/translations/'
},
{
text: 'Sigidli',
link: 'https://sigidli.com'
},
],
sidebar: [
'/about/',
{
title: 'Translations', // required
path: '/translations/', // optional, which should be a absolute path.
// collapsable: false, // optional, defaults to true
// sidebarDepth: 3, // optional, defaults to 1
children: [
'/',
'/explain-bitcoin-like-im-five/',
'/bitcoin-is-like/',
'/i-am-hodling/'
]
}
],
}
}
}
}