add main branch files
This commit is contained in:
62
website/docs/.vitepress/locales/en.ts
Normal file
62
website/docs/.vitepress/locales/en.ts
Normal file
@@ -0,0 +1,62 @@
|
||||
import { createRequire } from 'module'
|
||||
import { defineConfig } from 'vitepress'
|
||||
|
||||
const require = createRequire(import.meta.url)
|
||||
const pkg = require('vitepress/package.json')
|
||||
|
||||
export default defineConfig({
|
||||
lang: 'en-US',
|
||||
description: 'A kernel-based root solution for Android GKI devices.',
|
||||
|
||||
themeConfig: {
|
||||
nav: nav(),
|
||||
|
||||
lastUpdatedText: 'Last updated',
|
||||
|
||||
sidebar: {
|
||||
'/guide/': sidebarGuide()
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/tiann/KernelSU' }
|
||||
],
|
||||
|
||||
footer: {
|
||||
message: 'Released under the GPL3 License.',
|
||||
copyright: 'Copyright © 2022-present KernelSU developers.'
|
||||
},
|
||||
|
||||
editLink: {
|
||||
pattern: 'https://github.com/tiann/KernelSU/edit/main/website/docs/:path',
|
||||
text: 'Edit this page on GitHub'
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
function nav() {
|
||||
return [
|
||||
{ text: 'Guide', link: '/guide/what-is-kernelsu' },
|
||||
]
|
||||
}
|
||||
|
||||
function sidebarGuide() {
|
||||
return [
|
||||
{
|
||||
text: 'Guide',
|
||||
items: [
|
||||
{ text: 'What is KernelSU?', link: '/guide/what-is-kernelsu' },
|
||||
{ text: 'Difference with Magisk', link: '/guide/difference-with-magisk' },
|
||||
{ text: 'Installation', link: '/guide/installation' },
|
||||
{ text: 'How to build', link: '/guide/how-to-build' },
|
||||
{ text: 'Intergrate for non-GKI devices', link: '/guide/how-to-integrate-for-non-gki'},
|
||||
{ text: 'Unofficially supported devices', link: '/guide/unofficially-support-devices.md' },
|
||||
{ text: 'Module guide', link: '/guide/module.md' },
|
||||
{ text: 'Module WebUI', link: '/guide/module-webui.md' },
|
||||
{ text: 'App Profile', link: '/guide/app-profile.md' },
|
||||
{ text: 'Rescue from bootloop', link: '/guide/rescue-from-bootloop.md' },
|
||||
{ text: 'FAQ', link: '/guide/faq' },
|
||||
{ text: 'Hidden features', link: '/guide/hidden-features' },
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
58
website/docs/.vitepress/locales/id_ID.ts
Normal file
58
website/docs/.vitepress/locales/id_ID.ts
Normal file
@@ -0,0 +1,58 @@
|
||||
import { createRequire } from 'module'
|
||||
import { defineConfig } from 'vitepress'
|
||||
|
||||
const require = createRequire(import.meta.url)
|
||||
const pkg = require('vitepress/package.json')
|
||||
|
||||
export default defineConfig({
|
||||
lang: 'id-ID',
|
||||
description: 'Solusi root kernel-based untuk perangkat Android GKI.',
|
||||
|
||||
themeConfig: {
|
||||
nav: nav(),
|
||||
|
||||
lastUpdatedText: 'Update Terakhir',
|
||||
|
||||
sidebar: {
|
||||
'/id_ID/guide/': sidebarGuide()
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/tiann/KernelSU' }
|
||||
],
|
||||
|
||||
footer: {
|
||||
message: 'Rilis Dibawah Lisensi GPL3.',
|
||||
copyright: 'Copyright © 2022-Sekarang pengembang KernelSU.'
|
||||
},
|
||||
|
||||
editLink: {
|
||||
pattern: 'https://github.com/tiann/KernelSU/edit/main/website/docs/:path',
|
||||
text: 'Edit Halaman ini di GitHub'
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
function nav() {
|
||||
return [
|
||||
{ text: 'Petunjuk', link: '/id_ID/guide/what-is-kernelsu' },
|
||||
]
|
||||
}
|
||||
|
||||
function sidebarGuide() {
|
||||
return [
|
||||
{
|
||||
text: 'Petunjuk',
|
||||
items: [
|
||||
{ text: 'Apa itu KernelSU?', link: '/id_ID/guide/what-is-kernelsu' },
|
||||
{ text: 'Instalasi', link: '/id_ID/guide/installation' },
|
||||
{ text: 'Bagaimana cara buildnya?', link: '/id_ID/guide/how-to-build' },
|
||||
{ text: 'Integrasi untuk perangkat non-GKI', link: '/id_ID/guide/how-to-integrate-for-non-gki'},
|
||||
{ text: 'Perangkat yang didukung secara tidak resmi', link: '/id_ID/guide/unofficially-support-devices.md' },
|
||||
{ text: 'Petunjuk module', link: '/id_ID/guide/module.md' },
|
||||
{ text: 'Antisipasi dari bootloop', link: '/id_ID/guide/rescue-from-bootloop.md' },
|
||||
{ text: 'FAQ', link: '/id_ID/guide/faq' },
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
62
website/docs/.vitepress/locales/index.ts
Normal file
62
website/docs/.vitepress/locales/index.ts
Normal file
@@ -0,0 +1,62 @@
|
||||
import { defineConfig } from 'vitepress'
|
||||
import en from './en'
|
||||
import zh_CN from './zh_CN'
|
||||
import zh_TW from './zh_TW'
|
||||
import vi_VN from './vi_VN'
|
||||
import id_ID from './id_ID'
|
||||
import ja_JP from './ja_JP'
|
||||
import ru_RU from './ru_RU'
|
||||
import pt_BR from './pt_BR'
|
||||
|
||||
export default defineConfig({
|
||||
locales: {
|
||||
root: {
|
||||
label: 'English',
|
||||
lang: en.lang,
|
||||
themeConfig: en.themeConfig,
|
||||
description: en.description
|
||||
},
|
||||
zh_CN: {
|
||||
label: '简体中文',
|
||||
lang: zh_CN.lang,
|
||||
themeConfig: zh_CN.themeConfig,
|
||||
description: zh_CN.description
|
||||
},
|
||||
zh_TW: {
|
||||
label: '繁體中文',
|
||||
lang: zh_TW.lang,
|
||||
themeConfig: zh_TW.themeConfig,
|
||||
description: zh_TW.description
|
||||
},
|
||||
ja_JP: {
|
||||
label: '日本語',
|
||||
lang: ja_JP.lang,
|
||||
themeConfig: ja_JP.themeConfig,
|
||||
description: ja_JP.description
|
||||
},
|
||||
vi_VN: {
|
||||
label: 'Tiếng Việt',
|
||||
lang: vi_VN.lang,
|
||||
themeConfig: vi_VN.themeConfig,
|
||||
description: vi_VN.description
|
||||
},
|
||||
id_ID: {
|
||||
label: 'Bahasa',
|
||||
lang: id_ID.lang,
|
||||
themeConfig: id_ID.themeConfig,
|
||||
description: id_ID.description
|
||||
},
|
||||
ru_RU: {
|
||||
label: 'Русский',
|
||||
lang: ru_RU.lang,
|
||||
themeConfig: ru_RU.themeConfig,
|
||||
description: ru_RU.description
|
||||
},
|
||||
pt_BR: {
|
||||
label: 'Português (Brasil)',
|
||||
lang: pt_BR.lang,
|
||||
themeConfig: pt_BR.themeConfig,
|
||||
description: pt_BR.description
|
||||
}
|
||||
}
|
||||
})
|
||||
59
website/docs/.vitepress/locales/ja_JP.ts
Normal file
59
website/docs/.vitepress/locales/ja_JP.ts
Normal file
@@ -0,0 +1,59 @@
|
||||
import { createRequire } from 'module'
|
||||
import { defineConfig } from 'vitepress'
|
||||
|
||||
const require = createRequire(import.meta.url)
|
||||
const pkg = require('vitepress/package.json')
|
||||
|
||||
export default defineConfig({
|
||||
lang: 'ja-JP',
|
||||
description: 'Android GKI デバイス向けのカーネルベースの root ソリューション',
|
||||
|
||||
themeConfig: {
|
||||
nav: nav(),
|
||||
|
||||
lastUpdatedText: '最終更新',
|
||||
|
||||
sidebar: {
|
||||
'/ja_JP/guide/': sidebarGuide()
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/tiann/KernelSU' }
|
||||
],
|
||||
|
||||
footer: {
|
||||
message: 'GPL3 ライセンスでリリースされています。',
|
||||
copyright: 'Copyright © 2022-現在 KernelSU 開発者。'
|
||||
},
|
||||
|
||||
editLink: {
|
||||
pattern: 'https://github.com/tiann/KernelSU/edit/main/website/docs/:path',
|
||||
text: 'GitHub でこのページを編集'
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
function nav() {
|
||||
return [
|
||||
{ text: 'ガイド', link: '/ja_JP/guide/what-is-kernelsu' },
|
||||
]
|
||||
}
|
||||
|
||||
function sidebarGuide() {
|
||||
return [
|
||||
{
|
||||
text: 'ガイド',
|
||||
items: [
|
||||
{ text: 'KernelSU とは?', link: '/ja_JP/guide/what-is-kernelsu' },
|
||||
{ text: 'インストール', link: '/ja_JP/guide/installation' },
|
||||
{ text: 'ビルドするには?', link: '/ja_JP/guide/how-to-build' },
|
||||
{ text: '非 GKI デバイスでの実装', link: '/ja_JP/guide/how-to-integrate-for-non-gki' },
|
||||
{ text: '非公式の対応デバイス', link: '/ja_JP/guide/unofficially-support-devices.md' },
|
||||
{ text: 'モジュールのガイド', link: '/ja_JP/guide/module.md' },
|
||||
{ text: 'ブートループからの復旧', link: '/ja_JP/guide/rescue-from-bootloop.md' },
|
||||
{ text: 'よくある質問', link: '/ja_JP/guide/faq' },
|
||||
{ text: '隠し機能', link: '/ja_JP/guide/hidden-features' },
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
62
website/docs/.vitepress/locales/pt_BR.ts
Normal file
62
website/docs/.vitepress/locales/pt_BR.ts
Normal file
@@ -0,0 +1,62 @@
|
||||
import { createRequire } from 'module'
|
||||
import { defineConfig } from 'vitepress'
|
||||
|
||||
const require = createRequire(import.meta.url)
|
||||
const pkg = require('vitepress/package.json')
|
||||
|
||||
export default defineConfig({
|
||||
lang: 'pt-BR',
|
||||
description: 'Uma solução root baseada em kernel para dispositivos Android GKI.',
|
||||
|
||||
themeConfig: {
|
||||
nav: nav(),
|
||||
|
||||
lastUpdatedText: 'Última atualização',
|
||||
|
||||
sidebar: {
|
||||
'/pt_BR/guide/': sidebarGuide()
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/tiann/KernelSU' }
|
||||
],
|
||||
|
||||
footer: {
|
||||
message: 'Lançado sob a Licença GPL3',
|
||||
copyright: 'Copyright © 2022-presente Desenvolvedores do KernelSU.'
|
||||
},
|
||||
|
||||
editLink: {
|
||||
pattern: 'https://github.com/tiann/KernelSU/edit/main/website/docs/:path',
|
||||
text: 'Edite esta página no GitHub'
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
function nav() {
|
||||
return [
|
||||
{ text: 'Guia', link: '/pt_BR/guide/what-is-kernelsu' },
|
||||
]
|
||||
}
|
||||
|
||||
function sidebarGuide() {
|
||||
return [
|
||||
{
|
||||
text: 'Guia',
|
||||
items: [
|
||||
{ text: 'O que é KernelSU?', link: '/pt_BR/guide/what-is-kernelsu' },
|
||||
{ text: 'Diferenças com Magisk', link: '/pt_BR/guide/difference-with-magisk' },
|
||||
{ text: 'Instalação', link: '/pt_BR/guide/installation' },
|
||||
{ text: 'Como compilar', link: '/pt_BR/guide/how-to-build' },
|
||||
{ text: 'Integração para dispositivos não-GKI', link: '/pt_BR/guide/how-to-integrate-for-non-gki'},
|
||||
{ text: 'Dispositivos com suporte não oficial', link: '/pt_BR/guide/unofficially-support-devices.md' },
|
||||
{ text: 'Guias de módulo', link: '/pt_BR/guide/module.md' },
|
||||
{ text: 'Módulo WebUI', link: '/pt_BR/guide/module-webui.md' },
|
||||
{ text: 'Perfil do Aplicativo', link: '/pt_BR/guide/app-profile.md' },
|
||||
{ text: 'Resgate do bootloop', link: '/pt_BR/guide/rescue-from-bootloop.md' },
|
||||
{ text: 'Perguntas frequentes', link: '/pt_BR/guide/faq' },
|
||||
{ text: 'Recursos ocultos', link: '/pt_BR/guide/hidden-features' },
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
60
website/docs/.vitepress/locales/ru_RU.ts
Normal file
60
website/docs/.vitepress/locales/ru_RU.ts
Normal file
@@ -0,0 +1,60 @@
|
||||
import { createRequire } from 'module'
|
||||
import { defineConfig } from 'vitepress'
|
||||
|
||||
const require = createRequire(import.meta.url)
|
||||
const pkg = require('vitepress/package.json')
|
||||
|
||||
export default defineConfig({
|
||||
lang: 'ru-RU',
|
||||
description: 'Решение на основе ядра root для устройств Android GKI.',
|
||||
|
||||
themeConfig: {
|
||||
nav: nav(),
|
||||
|
||||
lastUpdatedText: 'последнее обновление',
|
||||
|
||||
sidebar: {
|
||||
'/ru_RU/guide/': sidebarGuide()
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/tiann/KernelSU' }
|
||||
],
|
||||
|
||||
footer: {
|
||||
message: 'Выпускается под лицензией GPL3.',
|
||||
copyright: 'Авторские права © 2022-текущее Разработчики KernelSU.'
|
||||
},
|
||||
|
||||
editLink: {
|
||||
pattern: 'https://github.com/tiann/KernelSU/edit/main/website/docs/:path',
|
||||
text: 'Редактировать эту страницу на GitHub'
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
function nav() {
|
||||
return [
|
||||
{ text: 'Руководство', link: '/ru_RU/guide/what-is-kernelsu' },
|
||||
]
|
||||
}
|
||||
|
||||
function sidebarGuide() {
|
||||
return [
|
||||
{
|
||||
text: 'Руководство',
|
||||
items: [
|
||||
{ text: 'Что такое KernelSU?', link: '/ru_RU/guide/what-is-kernelsu' },
|
||||
{ text: 'Установка', link: '/ru_RU/guide/installation' },
|
||||
{ text: 'Как собрать?', link: '/ru_RU/guide/how-to-build' },
|
||||
{ text: 'Реализация в устройствах, не относящихся к GKI', link: '/ru_RU/guide/how-to-integrate-for-non-gki'},
|
||||
{ text: 'Неофициально поддерживаемые устройства', link: '/ru_RU/guide/unofficially-support-devices.md' },
|
||||
{ text: 'Руководство по разработке модулей', link: '/ru_RU/guide/module.md' },
|
||||
{ text: 'Профиль приложений', link: '/ru_RU/guide/app-profile.md' },
|
||||
{ text: 'Выход из циклической загрузки', link: '/ru_RU/guide/rescue-from-bootloop.md' },
|
||||
{ text: 'FAQ', link: '/ru_RU/guide/faq' },
|
||||
{ text: 'Скрытые возможности', link: '/ru_RU/guide/hidden-features' },
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
56
website/docs/.vitepress/locales/vi_VN.ts
Normal file
56
website/docs/.vitepress/locales/vi_VN.ts
Normal file
@@ -0,0 +1,56 @@
|
||||
import { createRequire } from 'module'
|
||||
import { defineConfig } from 'vitepress'
|
||||
|
||||
const require = createRequire(import.meta.url)
|
||||
const pkg = require('vitepress/package.json')
|
||||
|
||||
export default defineConfig({
|
||||
lang: 'vi-VN',
|
||||
description: 'Một giải pháp root trực tiếp trên kernel dành cho các thiết bị hỗ trợ GKI.',
|
||||
|
||||
themeConfig: {
|
||||
nav: nav(),
|
||||
|
||||
lastUpdatedText: 'cập nhật lần cuối',
|
||||
|
||||
sidebar: {
|
||||
'/vi_VN/guide/': sidebarGuide()
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/tiann/KernelSU' }
|
||||
],
|
||||
|
||||
footer: {
|
||||
message: 'Phát hành dưới giấy phép GPL3.',
|
||||
copyright: 'Bản Quyền © 2022-nay KernelSU developers.'
|
||||
},
|
||||
|
||||
editLink: {
|
||||
pattern: 'https://github.com/tiann/KernelSU/edit/main/website/docs/:path',
|
||||
text: 'Chỉnh sửa trang này trên GitHub'
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
function nav() {
|
||||
return [
|
||||
{ text: 'Hướng Dẫn', link: '/vi_VN/guide/what-is-kernelsu' },
|
||||
]
|
||||
}
|
||||
|
||||
function sidebarGuide() {
|
||||
return [
|
||||
{
|
||||
text: 'Hướng Dẫn',
|
||||
items: [
|
||||
{ text: 'KernelSU là gì?', link: '/vi_VN/guide/what-is-kernelsu' },
|
||||
{ text: 'Cách cài đặt', link: '/vi_VN/guide/installation' },
|
||||
{ text: 'Cách để build?', link: '/vi_VN/guide/how-to-build' },
|
||||
{ text: 'Tích hợp vào thiết bị không sử dụng GKI', link: '/vi_VN/guide/how-to-integrate-for-non-gki'},
|
||||
{ text: 'Thiết bị hỗ trợ không chính thức', link: '/vi_VN/guide/unofficially-support-devices.md' },
|
||||
{ text: 'FAQ - Câu hỏi thường gặp', link: '/vi_VN/guide/faq' },
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
62
website/docs/.vitepress/locales/zh_CN.ts
Normal file
62
website/docs/.vitepress/locales/zh_CN.ts
Normal file
@@ -0,0 +1,62 @@
|
||||
import { createRequire } from 'module'
|
||||
import { defineConfig } from 'vitepress'
|
||||
|
||||
const require = createRequire(import.meta.url)
|
||||
const pkg = require('vitepress/package.json')
|
||||
|
||||
export default defineConfig({
|
||||
lang: 'zh-CN',
|
||||
description: '一个基于内核,为安卓 GKI 准备的 root 方案。',
|
||||
|
||||
themeConfig: {
|
||||
nav: nav(),
|
||||
|
||||
lastUpdatedText: '最后更新',
|
||||
|
||||
sidebar: {
|
||||
'/zh_CN/guide/': sidebarGuide()
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/tiann/KernelSU' }
|
||||
],
|
||||
|
||||
footer: {
|
||||
message: '在 GPL3 许可证下发布。',
|
||||
copyright: 'Copyright © 2022-现在 KernelSU 开发者。'
|
||||
},
|
||||
|
||||
editLink: {
|
||||
pattern: 'https://github.com/tiann/KernelSU/edit/main/website/docs/:path',
|
||||
text: '在 GitHub 中编辑本页'
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
function nav() {
|
||||
return [
|
||||
{ text: '指南', link: '/zh_CN/guide/what-is-kernelsu' },
|
||||
]
|
||||
}
|
||||
|
||||
function sidebarGuide() {
|
||||
return [
|
||||
{
|
||||
text: 'Guide',
|
||||
items: [
|
||||
{ text: '什么是 KernelSU?', link: '/zh_CN/guide/what-is-kernelsu' },
|
||||
{ text: 'KernelSU 模块与 Magisk 的差异', link: '/zh_CN/guide/difference-with-magisk' },
|
||||
{ text: '安装', link: '/zh_CN/guide/installation' },
|
||||
{ text: '如何构建?', link: '/zh_CN/guide/how-to-build' },
|
||||
{ text: '如何为非 GKI 设备集成 KernelSU', link: '/zh_CN/guide/how-to-integrate-for-non-gki'},
|
||||
{ text: '非官方支持设备', link: '/zh_CN/guide/unofficially-support-devices.md' },
|
||||
{ text: '模块开发指南', link: '/zh_CN/guide/module.md' },
|
||||
{ text: '模块 Web 界面', link: '/zh_CN/guide/module-webui.md' },
|
||||
{ text: 'App Profile', link: '/zh_CN/guide/app-profile.md' },
|
||||
{ text: '救砖', link: '/zh_CN/guide/rescue-from-bootloop.md' },
|
||||
{ text: '常见问题', link: '/zh_CN/guide/faq' },
|
||||
{ text: '隐藏功能', link: '/zh_CN/guide/hidden-features' },
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
62
website/docs/.vitepress/locales/zh_TW.ts
Normal file
62
website/docs/.vitepress/locales/zh_TW.ts
Normal file
@@ -0,0 +1,62 @@
|
||||
import { createRequire } from 'module'
|
||||
import { defineConfig } from 'vitepress'
|
||||
|
||||
const require = createRequire(import.meta.url)
|
||||
const pkg = require('vitepress/package.json')
|
||||
|
||||
export default defineConfig({
|
||||
lang: 'zh-TW',
|
||||
description: '一個基於核心,適用於 Android GKI 的 Root 解決方案。',
|
||||
|
||||
themeConfig: {
|
||||
nav: nav(),
|
||||
|
||||
lastUpdatedText: '上次更新',
|
||||
|
||||
sidebar: {
|
||||
'/zh_TW/guide/': sidebarGuide()
|
||||
},
|
||||
|
||||
socialLinks: [
|
||||
{ icon: 'github', link: 'https://github.com/tiann/KernelSU' }
|
||||
],
|
||||
|
||||
footer: {
|
||||
message: '係依據 GPL3 授權發行。',
|
||||
copyright: 'Copyright © 2022-目前 KernelSU 開發人員。'
|
||||
},
|
||||
|
||||
editLink: {
|
||||
pattern: 'https://github.com/tiann/KernelSU/edit/main/website/docs/:path',
|
||||
text: '在 GitHub 中編輯本頁面'
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
function nav() {
|
||||
return [
|
||||
{ text: '指南', link: '/zh_TW/guide/what-is-kernelsu' },
|
||||
]
|
||||
}
|
||||
|
||||
function sidebarGuide() {
|
||||
return [
|
||||
{
|
||||
text: 'Guide',
|
||||
items: [
|
||||
{ text: '什麼是 KernelSU?', link: '/zh_TW/guide/what-is-kernelsu' },
|
||||
{ text: 'KernelSU 與 Magisk 的差異', link: '/zh_TW/guide/difference-with-magisk' },
|
||||
{ text: '安裝', link: '/zh_TW/guide/installation' },
|
||||
{ text: '如何建置?', link: '/zh_TW/guide/how-to-build' },
|
||||
{ text: '如何為非 GKI 核心整合 KernelSU', link: '/zh_TW/guide/how-to-integrate-for-non-gki'},
|
||||
{ text: '非官方支援裝置', link: '/zh_TW/guide/unofficially-support-devices.md' },
|
||||
{ text: '模組指南', link: '/zh_TW/guide/module.md' },
|
||||
{ text: '模組 WebUI', link: '/zh_TW/guide/module-webui.md' },
|
||||
{ text: 'App Profile', link: '/zh_TW/guide/app-profile.md' },
|
||||
{ text: '搶救開機迴圈', link: '/zh_TW/guide/rescue-from-bootloop.md' },
|
||||
{ text: '常見問題', link: '/zh_TW/guide/faq' },
|
||||
{ text: '隱藏功能', link: '/zh_TW/guide/hidden-features' },
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user