Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Init the Chinese translation and import existing files from a legacy repo #19

Merged
merged 49 commits into from
Nov 6, 2022
Merged
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
ce3f418
translation: start the zh version from legacy repo (docs-next-zh-cn)
Jinjiang Nov 3, 2022
a289ca8
translation: init locales config and create missing md file
zhousg Nov 4, 2022
d04973a
translation: add todos
zhousg Nov 4, 2022
bf1aa8c
translation: add Overview content
zhousg Nov 5, 2022
5699783
translation: add New Framework-level Recommendations about Build Tool…
chaichai-fe Nov 5, 2022
c21ae04
translation: add New Framework-level Recommendations about Vue Router
chaichai-fe Nov 5, 2022
444face
translation: add New Framework-level Recommendations about State Mana…
chaichai-fe Nov 5, 2022
b654b1d
translation: add how to use the Vuex 4.0 to support Vue3
chaichai-fe Nov 5, 2022
9cd56d1
translation: add New Framework-level Recommendations about IDE Suppor…
chaichai-fe Nov 5, 2022
7eb6763
translation: add New Framework-level Recommendations about Typescript…
chaichai-fe Nov 5, 2022
a748090
Merge pull request #20 from zhousg/translation-zh
Jinjiang Nov 5, 2022
aba40c8
translation: add some warnings for unfinished Chinese docs
Jinjiang Nov 5, 2022
0b3b15a
translation: update vue-tsc link
zhousg Nov 5, 2022
327553a
translation: update vue-tsc link
zhousg Nov 5, 2022
51fdc7e
fix: VNode Lifecycle Event
Megasu Nov 5, 2022
8c4ba9b
Merge branch 'translation-zh' of https://github.com/zhousg/v3-migrati…
Megasu Nov 5, 2022
2731411
update jsx repo
Megasu Nov 5, 2022
d524075
Expose configureCompat types
Megasu Nov 5, 2022
e1c60db
update vue-router vuex url
Megasu Nov 5, 2022
ce07656
translation: add Breaking Changes about Global API and Template Direc…
chaichai-fe Nov 5, 2022
b4d89ba
translation: add Breaking Changes about Components
chaichai-fe Nov 5, 2022
c3aa503
translation: update dead links end components
zhousg Nov 5, 2022
b679407
Merge branch 'translation-zh' of github.com:zhousg/v3-migration-guide…
zhousg Nov 5, 2022
7e796d9
translation: Breaking Changes
Megasu Nov 5, 2022
123ab63
translation: update all dead links
Megasu Nov 5, 2022
67f89ae
translation: update zh index links
Megasu Nov 5, 2022
8b13111
translation: update migration-badges component
zhousg Nov 5, 2022
0e7cf9c
Merge branch 'translation-zh' of github.com:zhousg/v3-migration-guide…
zhousg Nov 5, 2022
25f3e9d
translation: update vue-tsc link
zhousg Nov 5, 2022
4f37dd4
translation: update vue-tsc link
zhousg Nov 5, 2022
6f4e60c
translation: update dead links end components
zhousg Nov 5, 2022
69a8ffe
fix: VNode Lifecycle Event
Megasu Nov 5, 2022
e356275
update jsx repo
Megasu Nov 5, 2022
7f5936a
Expose configureCompat types
Megasu Nov 5, 2022
8386b0b
update vue-router vuex url
Megasu Nov 5, 2022
5acbc97
translation: add Breaking Changes about Global API and Template Direc…
chaichai-fe Nov 5, 2022
1976ca6
translation: add Breaking Changes about Components
chaichai-fe Nov 5, 2022
b0a23ec
translation: update migration-badges component
zhousg Nov 5, 2022
28860f2
translation: Breaking Changes
Megasu Nov 5, 2022
16e08dc
translation: update all dead links
Megasu Nov 5, 2022
ba6de4f
translation: update zh index links
Megasu Nov 5, 2022
25309b0
Merge branch 'translation-zh' of github.com:zhousg/v3-migration-guide…
zhousg Nov 5, 2022
08d0668
translation: reset en md
zhousg Nov 6, 2022
231f2e7
translation: reset en md
zhousg Nov 6, 2022
adc693a
translation: updated relative link
zhousg Nov 6, 2022
9bd70fb
translation: updated badges locales
zhousg Nov 6, 2022
8bfcf62
Merge pull request #22 from zhousg/translation-zh
Jinjiang Nov 6, 2022
0336fa9
translation: fix broken links in zh
Jinjiang Nov 6, 2022
97ccd22
docs(zh): avoid internal weak map key error
Jinjiang Nov 6, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
translation: update migration-badges component
  • Loading branch information
zhousg committed Nov 5, 2022
commit 8b13111f3a7956c501e8eeccffdf64802847c6be
12 changes: 9 additions & 3 deletions .vitepress/theme/MigrationBadges.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script>
import { useData } from 'vitepress'
const validBadges = {
new: 'new',
breaking: 'breaking',
Expand All @@ -16,10 +17,15 @@ export default {
}
}
},
data() {
return {
validBadges
setup () {
const { site } = useData()
if ( site.value.lang === 'zh-CN' ) {
validBadges.new = '新增'
validBadges.breaking = '非兼容'
validBadges.removed = '移除'
validBadges.updated = '更新'
}
return { validBadges }
}
}
</script>
Expand Down