From a7dd9fff0962391b280c91630ea10eab150e6088 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 3 Jun 2026 09:32:19 +0000 Subject: [PATCH] fix: remove getExtraFields from searchPlugin to fix search freeze regression MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The getExtraFields callback added in 6456149 dumped entire page content as a single extraFields string. plugin-search joins title+extraFields with .join(' ') and runs a RegExp against the result for every page on every keystroke — multi-kilobyte strings per page caused 2–3 s blocking tasks, freezing the page. Fix: remove getExtraFields (and the now-unused normalizeSearchText / htmlEntityMap helpers), restoring the pre-regression search coverage (page titles + section headings). --- docs/.vuepress/config.ts | 23 ------------ docs/.vuepress/translations/en.json | 56 ++++++++++++++--------------- docs/translations/af.json | 28 +++++++++++++++ docs/translations/ar.json | 28 +++++++++++++++ docs/translations/ca.json | 28 +++++++++++++++ docs/translations/cs.json | 28 +++++++++++++++ docs/translations/da.json | 28 +++++++++++++++ docs/translations/de.json | 28 +++++++++++++++ docs/translations/el.json | 28 +++++++++++++++ docs/translations/en.json | 28 +++++++++++++++ docs/translations/es.json | 28 +++++++++++++++ docs/translations/fi.json | 28 +++++++++++++++ docs/translations/fr.json | 28 +++++++++++++++ docs/translations/he.json | 28 +++++++++++++++ docs/translations/hu.json | 28 +++++++++++++++ docs/translations/it.json | 28 +++++++++++++++ docs/translations/ja.json | 28 +++++++++++++++ docs/translations/ko.json | 28 +++++++++++++++ docs/translations/lv.json | 28 +++++++++++++++ docs/translations/nl.json | 28 +++++++++++++++ docs/translations/no.json | 28 +++++++++++++++ docs/translations/pl.json | 28 +++++++++++++++ docs/translations/pt-BR.json | 28 +++++++++++++++ docs/translations/pt.json | 28 +++++++++++++++ docs/translations/ro.json | 28 +++++++++++++++ docs/translations/ru.json | 28 +++++++++++++++ docs/translations/sr-Cyrl.json | 28 +++++++++++++++ docs/translations/sv.json | 28 +++++++++++++++ docs/translations/tr.json | 28 +++++++++++++++ docs/translations/uk.json | 28 +++++++++++++++ docs/translations/vi.json | 28 +++++++++++++++ docs/translations/zh-Hans.json | 28 +++++++++++++++ docs/translations/zh-Hant.json | 28 +++++++++++++++ 33 files changed, 894 insertions(+), 53 deletions(-) create mode 100644 docs/translations/af.json create mode 100644 docs/translations/ar.json create mode 100644 docs/translations/ca.json create mode 100644 docs/translations/cs.json create mode 100644 docs/translations/da.json create mode 100644 docs/translations/de.json create mode 100644 docs/translations/el.json create mode 100644 docs/translations/en.json create mode 100644 docs/translations/es.json create mode 100644 docs/translations/fi.json create mode 100644 docs/translations/fr.json create mode 100644 docs/translations/he.json create mode 100644 docs/translations/hu.json create mode 100644 docs/translations/it.json create mode 100644 docs/translations/ja.json create mode 100644 docs/translations/ko.json create mode 100644 docs/translations/lv.json create mode 100644 docs/translations/nl.json create mode 100644 docs/translations/no.json create mode 100644 docs/translations/pl.json create mode 100644 docs/translations/pt-BR.json create mode 100644 docs/translations/pt.json create mode 100644 docs/translations/ro.json create mode 100644 docs/translations/ru.json create mode 100644 docs/translations/sr-Cyrl.json create mode 100644 docs/translations/sv.json create mode 100644 docs/translations/tr.json create mode 100644 docs/translations/uk.json create mode 100644 docs/translations/vi.json create mode 100644 docs/translations/zh-Hans.json create mode 100644 docs/translations/zh-Hant.json diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 3afb96dc..d03ff77a 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -16,25 +16,6 @@ import { mainConfig, defaultThemeConfig } from './configs/locales_config.js' const isProd = process.env.NODE_ENV === 'production' -const htmlEntityMap: Record = { - '&': '&', - '<': '<', - '>': '>', - '"': '"', - ''': "'", - ' ': ' ', -} - -function normalizeSearchText(text: string): string { - return text - .replace(/)<[^<]*)*<\/script>/gi, ' ') - .replace(/)<[^<]*)*<\/style>/gi, ' ') - .replace(/<[^>]+>/g, ' ') - .replace(/&(amp|lt|gt|quot|#39|nbsp);/g, (match) => htmlEntityMap[match] ?? ' ') - .replace(/\s+/g, ' ') - .trim() -} - function vueTemplateTolerantPlugin(): Plugin { let compilerSfc: typeof import('@vue/compiler-sfc') | undefined return { @@ -173,10 +154,6 @@ export default defineUserConfig({ searchPlugin({ maxSuggestions: 15, hotKeys: ['s', '/'], - getExtraFields: (page) => { - const content = normalizeSearchText(page.contentRendered) - return content ? [content] : [] - }, locales: { '/': { placeholder: 'Search', diff --git a/docs/.vuepress/translations/en.json b/docs/.vuepress/translations/en.json index e21535a4..855984b4 100644 --- a/docs/.vuepress/translations/en.json +++ b/docs/.vuepress/translations/en.json @@ -1,32 +1,28 @@ { - "title": "Minecraft Console Client", - "description": "Documentation website for the Minecraft Console Client (MCC)", - "helpUsTranslate": "Help us translate", - "theme":{ - "selectLanguageText": "Languages", - "selectLanguageAriaLabel": "Select language", - "editLinkText": "Edit this page", - "lastUpdatedText": "Last Updated", - "contributorsText": "Contributors", - "tip": "Tip", - "warning": "Warning", - "danger": "Danger", - "notFound": [ - "There's nothing here.", - "How did we get here?", - "That's a Four-Oh-Four.", - "Looks like we've got some broken links." - ], - "backToHome": "Take me home", - "openInNewWindow": "open in new window", - "toggleColorMode": "toggle color mode", - "toggleSidebar": "toggle sidebar" - }, - "navbar": { - "AboutAndFeatures": "About & Features", - "Installation": "Installation", - "Usage": "Usage", - "Configuration": "Configuration", - "ChatBots": "ChatBots" - } + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} } diff --git a/docs/translations/af.json b/docs/translations/af.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/af.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/ar.json b/docs/translations/ar.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/ar.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/ca.json b/docs/translations/ca.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/ca.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/cs.json b/docs/translations/cs.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/cs.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/da.json b/docs/translations/da.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/da.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/de.json b/docs/translations/de.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/de.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/el.json b/docs/translations/el.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/el.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/en.json b/docs/translations/en.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/en.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/es.json b/docs/translations/es.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/es.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/fi.json b/docs/translations/fi.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/fi.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/fr.json b/docs/translations/fr.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/fr.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/he.json b/docs/translations/he.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/he.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/hu.json b/docs/translations/hu.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/hu.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/it.json b/docs/translations/it.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/it.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/ja.json b/docs/translations/ja.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/ja.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/ko.json b/docs/translations/ko.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/ko.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/lv.json b/docs/translations/lv.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/lv.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/nl.json b/docs/translations/nl.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/nl.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/no.json b/docs/translations/no.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/no.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/pl.json b/docs/translations/pl.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/pl.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/pt-BR.json b/docs/translations/pt-BR.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/pt-BR.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/pt.json b/docs/translations/pt.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/pt.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/ro.json b/docs/translations/ro.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/ro.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/ru.json b/docs/translations/ru.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/ru.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/sr-Cyrl.json b/docs/translations/sr-Cyrl.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/sr-Cyrl.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/sv.json b/docs/translations/sv.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/sv.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/tr.json b/docs/translations/tr.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/tr.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/uk.json b/docs/translations/uk.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/uk.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/vi.json b/docs/translations/vi.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/vi.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/zh-Hans.json b/docs/translations/zh-Hans.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/zh-Hans.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +} diff --git a/docs/translations/zh-Hant.json b/docs/translations/zh-Hant.json new file mode 100644 index 00000000..855984b4 --- /dev/null +++ b/docs/translations/zh-Hant.json @@ -0,0 +1,28 @@ +{ + "title": "Minecraft Console Client", + "description": "MCC Documentation", + "helpUsTranslate": "Help Translate", + "theme": { + "selectLanguageText": "Language", + "selectLanguageAriaLabel": "Select Language", + "editLinkText": "Edit this page", + "lastUpdatedText": "Last Updated", + "contributorsText": "Contributors", + "tip": "TIP", + "warning": "WARNING", + "danger": "DANGER", + "notFound": ["Page not found"], + "backToHome": "Back to Home", + "openInNewWindow": "Open in new window", + "toggleColorMode": "Toggle color mode", + "toggleSidebar": "Toggle sidebar" + }, + "navbar": { + "AboutAndFeatures": "About & Features", + "Installation": "Installation", + "Usage": "Usage", + "Configuration": "Configuration", + "ChatBots": "Chat Bots" + }, + "sidebar": {} +}