From fafdd8ccc6a2e5d52390046a401426af516d8203 Mon Sep 17 00:00:00 2001 From: Ben Hong Date: Mon, 20 Jul 2020 10:57:15 -0400 Subject: [PATCH 1/2] docs (#32): add translation contributing guide --- src/.vuepress/config.js | 6 +++++- src/guide/contributing/translations.md | 11 +++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 src/guide/contributing/translations.md diff --git a/src/.vuepress/config.js b/src/.vuepress/config.js index 4fd39a1d51..6a04be7c60 100644 --- a/src/.vuepress/config.js +++ b/src/.vuepress/config.js @@ -133,7 +133,11 @@ const sidebar = { { title: 'Contribute to the Docs', collapsable: true, - children: ['writing-guide', 'doc-style-guide'] + children: [ + 'writing-guide', + 'doc-style-guide', + 'contributing/translations' + ] } ], api: [ diff --git a/src/guide/contributing/translations.md b/src/guide/contributing/translations.md new file mode 100644 index 0000000000..bc89ae5944 --- /dev/null +++ b/src/guide/contributing/translations.md @@ -0,0 +1,11 @@ +# Translations + +Vue has spread across the globe, with the core team being in at least half a dozen different timezones. [The forum](https://forum.vuejs.org/) includes 7 languages and counting and many of our docs have [actively-maintained translations](https://github.com/vuejs?utf8=%E2%9C%93&q=vuejs.org). We'are very proud of Vue's international reach, but we can do even better. + +## Can we start translating Vue 3 docs? + +At this time, the Vue 3 docs are still in beta and subject to changes at any time. As a result, we would caution against any significant work since we are still collecting feedback and rewriting it as needed. When the docs are in release candidate phase, we will make sure to make an announcement so you can get started! + +## How can I get involved with translations? + +The best way to get started is to check out [this pinned issue for Vuejs.org](https://github.com/vuejs/vuejs.org/issues/2015) that contains active discussions on the various initiatives happening in the community. From aa0e27432f561b1b9633cc203d3747fa3abec69a Mon Sep 17 00:00:00 2001 From: Ben Hong Date: Mon, 20 Jul 2020 10:58:31 -0400 Subject: [PATCH 2/2] refactor (#32): organize all contribution guides together --- src/.vuepress/config.js | 4 ++-- src/guide/{ => contributing}/doc-style-guide.md | 0 src/guide/{ => contributing}/writing-guide.md | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/guide/{ => contributing}/doc-style-guide.md (100%) rename src/guide/{ => contributing}/writing-guide.md (100%) diff --git a/src/.vuepress/config.js b/src/.vuepress/config.js index 6a04be7c60..df8b2b4419 100644 --- a/src/.vuepress/config.js +++ b/src/.vuepress/config.js @@ -134,8 +134,8 @@ const sidebar = { title: 'Contribute to the Docs', collapsable: true, children: [ - 'writing-guide', - 'doc-style-guide', + 'contributing/writing-guide', + 'contributing/doc-style-guide', 'contributing/translations' ] } diff --git a/src/guide/doc-style-guide.md b/src/guide/contributing/doc-style-guide.md similarity index 100% rename from src/guide/doc-style-guide.md rename to src/guide/contributing/doc-style-guide.md diff --git a/src/guide/writing-guide.md b/src/guide/contributing/writing-guide.md similarity index 100% rename from src/guide/writing-guide.md rename to src/guide/contributing/writing-guide.md