mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
fix: remove getExtraFields from searchPlugin to fix search freeze regression
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).
This commit is contained in:
parent
1796e7f80c
commit
a7dd9fff09
33 changed files with 894 additions and 53 deletions
|
|
@ -16,25 +16,6 @@ import { mainConfig, defaultThemeConfig } from './configs/locales_config.js'
|
|||
|
||||
const isProd = process.env.NODE_ENV === 'production'
|
||||
|
||||
const htmlEntityMap: Record<string, string> = {
|
||||
'&': '&',
|
||||
'<': '<',
|
||||
'>': '>',
|
||||
'"': '"',
|
||||
''': "'",
|
||||
' ': ' ',
|
||||
}
|
||||
|
||||
function normalizeSearchText(text: string): string {
|
||||
return text
|
||||
.replace(/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi, ' ')
|
||||
.replace(/<style\b[^<]*(?:(?!<\/style>)<[^<]*)*<\/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',
|
||||
|
|
|
|||
|
|
@ -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": {}
|
||||
}
|
||||
|
|
|
|||
28
docs/translations/af.json
Normal file
28
docs/translations/af.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/ar.json
Normal file
28
docs/translations/ar.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/ca.json
Normal file
28
docs/translations/ca.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/cs.json
Normal file
28
docs/translations/cs.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/da.json
Normal file
28
docs/translations/da.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/de.json
Normal file
28
docs/translations/de.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/el.json
Normal file
28
docs/translations/el.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/en.json
Normal file
28
docs/translations/en.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/es.json
Normal file
28
docs/translations/es.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/fi.json
Normal file
28
docs/translations/fi.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/fr.json
Normal file
28
docs/translations/fr.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/he.json
Normal file
28
docs/translations/he.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/hu.json
Normal file
28
docs/translations/hu.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/it.json
Normal file
28
docs/translations/it.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/ja.json
Normal file
28
docs/translations/ja.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/ko.json
Normal file
28
docs/translations/ko.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/lv.json
Normal file
28
docs/translations/lv.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/nl.json
Normal file
28
docs/translations/nl.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/no.json
Normal file
28
docs/translations/no.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/pl.json
Normal file
28
docs/translations/pl.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/pt-BR.json
Normal file
28
docs/translations/pt-BR.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/pt.json
Normal file
28
docs/translations/pt.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/ro.json
Normal file
28
docs/translations/ro.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/ru.json
Normal file
28
docs/translations/ru.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/sr-Cyrl.json
Normal file
28
docs/translations/sr-Cyrl.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/sv.json
Normal file
28
docs/translations/sv.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/tr.json
Normal file
28
docs/translations/tr.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/uk.json
Normal file
28
docs/translations/uk.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/vi.json
Normal file
28
docs/translations/vi.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/zh-Hans.json
Normal file
28
docs/translations/zh-Hans.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
28
docs/translations/zh-Hant.json
Normal file
28
docs/translations/zh-Hant.json
Normal file
|
|
@ -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": {}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue