First branch commit for the splitting of #27

This commit is contained in:
Simon Mattila 2019-09-23 12:23:00 +02:00
parent 6feead2b9b
commit 9206fe49d5
5 changed files with 111 additions and 64 deletions

View File

@ -7,51 +7,14 @@ module.exports = {
docsRepo: 'tachiyomiorg/website', docsRepo: 'tachiyomiorg/website',
docsDir: 'src', docsDir: 'src',
editLinks: true, editLinks: true,
nav: [ nav: require('./config/nav'),
{ text: 'Guides', link: '/help/guides/getting-started' }, sidebar: require('./config/sidebar'),
{ text: 'FAQ', link: '/help/faq/application' },
{ text: 'Extensions', link: '/extensions/' },
{ text: 'Wiki', link: 'https://github.com/inorichi/tachiyomi/wiki' },
{ text: 'Discord', link: 'https://discord.gg/tachiyomi' },
{ text: 'Reddit', link: 'https://reddit.com/r/Tachiyomi' }
],
sidebar: [
'/',
{
title: 'Guides',
children: [
'/help/guides/getting-started',
'/help/guides/reading-local-manga',
'/help/guides/source-problems',
'/help/guides/translation'
]
},
{
title: 'FAQ',
children: [
'/help/faq/application',
'/help/faq/extensions'
]
},
'/extensions/'
],
lastUpdated: 'Last Updated' lastUpdated: 'Last Updated'
}, },
plugins: [ plugins: require('./config/plugins'),
[ extraWatchFiles: [
'@vuepress/back-to-top' '.vuepress/config/nav.js',
], '.vuepress/config/sidebar.js',
[ '.vuepress/config/plugins.js'
'@vuepress/google-analytics',
{ 'ga': 'UA-148212082-1' }
],
[
'container',
{
type: 'expander',
before: info => `<details><summary>${info}</summary>\n`,
after: '</details>\n'
}
]
] ]
} }

View File

@ -0,0 +1,50 @@
module.exports = [
{
text: 'Need help?',
items: [
{
text: 'Regular',
items: [
{
text: 'Application',
link: '/help/faq/application'
},
{
text: 'Extensions',
link: '/help/faq/extensions'
}
]
}
]
},
{
text: 'Guides',
items: [
{
text: 'Regular',
items: [
{
text: 'Getting started',
link: '/help/guides/getting-started'
},
{
text: 'Reading local manga',
link: '/help/guides/reading-local-manga'
},
{
text: 'Source problems',
link: '/help/guides/source-problems'
}
]
}
]
},
{
text: 'Discord',
link: 'https://discord.gg/tachiyomi'
},
{
text: 'Reddit',
link: 'https://reddit.com/r/Tachiyomi'
}
];

View File

@ -0,0 +1,19 @@
module.exports = [
[
'@vuepress/back-to-top'
],
[
'@vuepress/google-analytics',
{
'ga': 'UA-148212082-1'
}
],
[
'container',
{
type: 'expander',
before: info => `<details><summary>${info}</summary>\n`,
after: '</details>\n'
}
]
];

View File

@ -0,0 +1,35 @@
module.exports = [
'/',
{
title: 'Guides',
sidebarDepth: 2,
children: [
{
title: 'Regular',
collapsable: false,
sidebarDepth: 2,
children: [
'/help/guides/getting-started',
'/help/guides/reading-local-manga',
'/help/guides/source-problems'
]
}
]
},
{
title: 'Frequently Asked Questions',
sidebarDepth: 2,
children: [
{
title: 'Regular',
collapsable: false,
sidebarDepth: 2,
children: [
'/help/faq/application',
'/help/faq/extensions'
]
}
]
},
'/extensions/'
];

View File

@ -1,20 +0,0 @@
---
title: Translation
lang: en-US
---
# Translation
## Weblate
**The project is available at [https://hosted.weblate.org/engage/tachiyomi/](https://hosted.weblate.org/engage/tachiyomi/)**
(direct [https://hosted.weblate.org/projects/tachiyomi/strings/](https://hosted.weblate.org/projects/tachiyomi/strings/))
The translators guide can be found at [https://docs.weblate.org/en/latest/user/index.html](https://docs.weblate.org/en/latest/user/index.html). Notice also:
* [https://docs.weblate.org/en/latest/user/profile.html#secondary-languages](https://docs.weblate.org/en/latest/user/profile.html#secondary-languages)
* [https://docs.weblate.org/en/latest/user/profile.html#subscriptions](https://docs.weblate.org/en/latest/user/profile.html#subscriptions)
* [https://docs.weblate.org/en/latest/user/translating.html#glossary](https://docs.weblate.org/en/latest/user/translating.html#glossary)
***
[![Translation status](https://hosted.weblate.org/widgets/tachiyomi/-/multi-auto.svg)](https://hosted.weblate.org/engage/tachiyomi/?utm_source=widget)