docus 5.12.1 → 5.12.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/app.config.ts +7 -16
- package/app/components/app/AppHeaderBody.vue +14 -1
- package/app/components/app/AppHeaderCenter.vue +1 -1
- package/app/components/docs/DocsAsideLeftBody.vue +1 -0
- package/app/components/docs/DocsAsideMobileBar.vue +4 -4
- package/app/components/docs/DocsAsideRight.vue +1 -1
- package/app/composables/useSubNavigation.ts +1 -1
- package/app/composables/useUIConfig.ts +1 -1
- package/app/utils/assistantTools.ts +88 -0
- package/i18n/locales/ar.json +15 -1
- package/i18n/locales/be.json +15 -1
- package/i18n/locales/bg.json +15 -1
- package/i18n/locales/bn.json +15 -1
- package/i18n/locales/ca.json +15 -1
- package/i18n/locales/ckb.json +15 -1
- package/i18n/locales/cs.json +15 -1
- package/i18n/locales/da.json +15 -1
- package/i18n/locales/de.json +15 -1
- package/i18n/locales/el.json +15 -1
- package/i18n/locales/en.json +15 -1
- package/i18n/locales/es.json +15 -1
- package/i18n/locales/et.json +15 -1
- package/i18n/locales/fi.json +15 -1
- package/i18n/locales/fr.json +15 -1
- package/i18n/locales/he.json +15 -1
- package/i18n/locales/hi.json +15 -1
- package/i18n/locales/hy.json +15 -1
- package/i18n/locales/id.json +15 -1
- package/i18n/locales/it.json +15 -1
- package/i18n/locales/ja.json +15 -1
- package/i18n/locales/kk.json +15 -1
- package/i18n/locales/km.json +15 -1
- package/i18n/locales/ko.json +15 -1
- package/i18n/locales/ky.json +15 -1
- package/i18n/locales/lb.json +15 -1
- package/i18n/locales/ms.json +15 -1
- package/i18n/locales/nb.json +15 -1
- package/i18n/locales/nl.json +15 -1
- package/i18n/locales/pl.json +15 -1
- package/i18n/locales/pt-BR.json +15 -1
- package/i18n/locales/ro.json +15 -1
- package/i18n/locales/ru.json +15 -1
- package/i18n/locales/si.json +15 -1
- package/i18n/locales/sl.json +15 -1
- package/i18n/locales/sv.json +15 -1
- package/i18n/locales/tr.json +15 -1
- package/i18n/locales/uk.json +15 -1
- package/i18n/locales/ur.json +15 -1
- package/i18n/locales/vi.json +15 -1
- package/i18n/locales/zh-CN.json +15 -1
- package/modules/assistant/runtime/components/AssistantFloatingInput.vue +13 -2
- package/modules/assistant/runtime/components/AssistantIndicator.vue +15 -6
- package/modules/assistant/runtime/components/AssistantPanel.vue +13 -42
- package/modules/assistant/runtime/server/api/search.ts +14 -16
- package/package.json +15 -15
package/app/app.config.ts
CHANGED
|
@@ -15,29 +15,20 @@ export default defineAppConfig({
|
|
|
15
15
|
slots: {
|
|
16
16
|
item: 'items-center',
|
|
17
17
|
input: '[&_.iconify]:size-4 [&_.iconify]:mx-0.5',
|
|
18
|
-
itemLeadingIcon: 'size-4 mx-0.5',
|
|
19
18
|
},
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
19
|
+
variants: {
|
|
20
|
+
size: {
|
|
21
|
+
md: {
|
|
22
|
+
itemLeadingIcon: 'size-4 mx-0.5',
|
|
23
|
+
},
|
|
24
|
+
},
|
|
24
25
|
},
|
|
25
26
|
},
|
|
26
27
|
contentNavigation: {
|
|
27
28
|
slots: {
|
|
28
|
-
linkLeadingIcon: 'size-4
|
|
29
|
+
linkLeadingIcon: 'size-4 mx-0.5',
|
|
29
30
|
linkTrailing: 'hidden',
|
|
30
31
|
},
|
|
31
|
-
defaultVariants: {
|
|
32
|
-
variant: 'link',
|
|
33
|
-
highlight: true,
|
|
34
|
-
},
|
|
35
|
-
},
|
|
36
|
-
navigationMenu: {
|
|
37
|
-
defaultVariants: {
|
|
38
|
-
variant: 'pill',
|
|
39
|
-
highlight: true,
|
|
40
|
-
},
|
|
41
32
|
},
|
|
42
33
|
pageLinks: {
|
|
43
34
|
slots: {
|
|
@@ -1,17 +1,30 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
import type { ContentNavigationItem } from '@nuxt/content'
|
|
3
|
+
import { getFirstPagePath, useSubNavigation } from '../../composables/useSubNavigation'
|
|
3
4
|
|
|
4
5
|
const navigation = inject<Ref<ContentNavigationItem[]>>('navigation')
|
|
5
6
|
|
|
7
|
+
const { subNavigationMode } = useSubNavigation()
|
|
8
|
+
|
|
6
9
|
const contentNavVariants = useUIConfig('contentNavigation')
|
|
10
|
+
|
|
11
|
+
const items = computed<ContentNavigationItem[]>(() => {
|
|
12
|
+
const nav = navigation?.value || []
|
|
13
|
+
if (!subNavigationMode.value) return nav
|
|
14
|
+
return nav.map(({ children, ...item }) => ({
|
|
15
|
+
...item,
|
|
16
|
+
path: children?.length ? getFirstPagePath({ ...item, children }) : item.path,
|
|
17
|
+
}))
|
|
18
|
+
})
|
|
7
19
|
</script>
|
|
8
20
|
|
|
9
21
|
<template>
|
|
10
22
|
<UContentNavigation
|
|
23
|
+
:collapsible="false"
|
|
11
24
|
:highlight="contentNavVariants.highlight ?? true"
|
|
12
25
|
:highlight-color="contentNavVariants.highlightColor"
|
|
13
26
|
:variant="contentNavVariants.variant ?? 'link'"
|
|
14
27
|
:color="contentNavVariants.color"
|
|
15
|
-
:navigation="
|
|
28
|
+
:navigation="items"
|
|
16
29
|
/>
|
|
17
30
|
</template>
|
|
@@ -6,6 +6,7 @@ const contentNavVariants = useUIConfig('contentNavigation')
|
|
|
6
6
|
|
|
7
7
|
<template>
|
|
8
8
|
<UContentNavigation
|
|
9
|
+
:collapsible="false"
|
|
9
10
|
:highlight="contentNavVariants.highlight ?? true"
|
|
10
11
|
:highlight-color="contentNavVariants.highlightColor"
|
|
11
12
|
:variant="contentNavVariants.variant ?? 'link'"
|
|
@@ -34,8 +34,8 @@ const tocDrawerOpen = ref(false)
|
|
|
34
34
|
:label="t('docs.menu')"
|
|
35
35
|
icon="i-lucide-text-align-start"
|
|
36
36
|
color="neutral"
|
|
37
|
-
variant="
|
|
38
|
-
|
|
37
|
+
variant="ghost"
|
|
38
|
+
square
|
|
39
39
|
:aria-label="t('docs.menu')"
|
|
40
40
|
/>
|
|
41
41
|
|
|
@@ -67,7 +67,7 @@ const tocDrawerOpen = ref(false)
|
|
|
67
67
|
trailing-icon="i-lucide-chevron-right"
|
|
68
68
|
color="neutral"
|
|
69
69
|
variant="link"
|
|
70
|
-
|
|
70
|
+
square
|
|
71
71
|
:aria-label="t('docs.toc')"
|
|
72
72
|
/>
|
|
73
73
|
|
|
@@ -76,7 +76,7 @@ const tocDrawerOpen = ref(false)
|
|
|
76
76
|
v-if="links?.length"
|
|
77
77
|
:highlight="contentTocVariants.highlight ?? true"
|
|
78
78
|
:highlight-color="contentTocVariants.highlightColor"
|
|
79
|
-
:highlight-variant="contentTocVariants.highlightVariant"
|
|
79
|
+
:highlight-variant="contentTocVariants.highlightVariant ?? 'circuit'"
|
|
80
80
|
:color="contentTocVariants.color"
|
|
81
81
|
:links="links"
|
|
82
82
|
:open="true"
|
|
@@ -21,7 +21,7 @@ const contentTocVariants = useUIConfig('contentToc')
|
|
|
21
21
|
v-if="links.length"
|
|
22
22
|
:highlight="contentTocVariants.highlight ?? true"
|
|
23
23
|
:highlight-color="contentTocVariants.highlightColor"
|
|
24
|
-
:highlight-variant="contentTocVariants.highlightVariant"
|
|
24
|
+
:highlight-variant="contentTocVariants.highlightVariant ?? 'circuit'"
|
|
25
25
|
:color="contentTocVariants.color"
|
|
26
26
|
:title="appConfig.toc?.title || t('docs.toc')"
|
|
27
27
|
:links="links"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ContentNavigationItem } from '@nuxt/content'
|
|
2
2
|
|
|
3
|
-
function getFirstPagePath(item: ContentNavigationItem): string {
|
|
3
|
+
export function getFirstPagePath(item: ContentNavigationItem): string {
|
|
4
4
|
let current = item
|
|
5
5
|
while (current.children?.length) {
|
|
6
6
|
current = current.children[0]!
|
|
@@ -24,7 +24,7 @@ interface UIConfigMap {
|
|
|
24
24
|
export function useUIConfig<K extends keyof UIConfigMap>(componentName: K): ComputedRef<UIConfigMap[K]> {
|
|
25
25
|
const appConfig = useAppConfig()
|
|
26
26
|
return computed(() => {
|
|
27
|
-
const ui = appConfig.ui
|
|
27
|
+
const ui = appConfig.ui as Record<K, { defaultVariants?: UIConfigMap[K] } | undefined>
|
|
28
28
|
return (ui?.[componentName]?.defaultVariants || {}) as UIConfigMap[K]
|
|
29
29
|
})
|
|
30
30
|
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { getToolName } from 'ai'
|
|
2
|
+
import type { ToolUIPart, DynamicToolUIPart } from 'ai'
|
|
3
|
+
|
|
4
|
+
export type AssistantToolPart = ToolUIPart | DynamicToolUIPart
|
|
5
|
+
|
|
6
|
+
type Translator = (key: string) => string
|
|
7
|
+
|
|
8
|
+
const VERB_KEYS: Record<string, [active: string, done: string]> = {
|
|
9
|
+
list: ['searching', 'searched'],
|
|
10
|
+
search: ['searching', 'searched'],
|
|
11
|
+
find: ['searching', 'searched'],
|
|
12
|
+
query: ['searching', 'searched'],
|
|
13
|
+
get: ['reading', 'read'],
|
|
14
|
+
read: ['reading', 'read'],
|
|
15
|
+
fetch: ['reading', 'read'],
|
|
16
|
+
show: ['finding', 'found'],
|
|
17
|
+
open: ['opening', 'opened'],
|
|
18
|
+
generate: ['generating', 'generated'],
|
|
19
|
+
create: ['creating', 'created'],
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
const SUFFIX_KEYS = [
|
|
23
|
+
'search',
|
|
24
|
+
'query',
|
|
25
|
+
'q',
|
|
26
|
+
'term',
|
|
27
|
+
'path',
|
|
28
|
+
'slug',
|
|
29
|
+
'templateName',
|
|
30
|
+
'componentName',
|
|
31
|
+
'composableName',
|
|
32
|
+
'name',
|
|
33
|
+
'repo',
|
|
34
|
+
'section',
|
|
35
|
+
'id',
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
function parseToolName(toolName: string): { verbKey?: [string, string], label: string } {
|
|
39
|
+
const parts = toolName.split(/[-_\s]+/).filter(Boolean)
|
|
40
|
+
const head = parts[0]?.toLowerCase()
|
|
41
|
+
|
|
42
|
+
if (head && VERB_KEYS[head] && parts.length > 1) {
|
|
43
|
+
return { verbKey: VERB_KEYS[head], label: parts.slice(1).join(' ') }
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
return { label: parts.join(' ') || toolName }
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function getToolText(part: AssistantToolPart, t: Translator): string {
|
|
50
|
+
const done = part.state === 'output-available'
|
|
51
|
+
const { verbKey, label } = parseToolName(getToolName(part))
|
|
52
|
+
const key = verbKey ? verbKey[done ? 1 : 0] : (done ? 'searched' : 'searching')
|
|
53
|
+
|
|
54
|
+
return `${t(`assistant.tools.${key}`)} ${label}`.trim()
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export function getToolSuffix(part: AssistantToolPart): string | undefined {
|
|
58
|
+
const input = (part.input || {}) as Record<string, unknown>
|
|
59
|
+
|
|
60
|
+
for (const key of SUFFIX_KEYS) {
|
|
61
|
+
const value = input[key]
|
|
62
|
+
if (typeof value === 'string' && value.trim()) return value
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
return undefined
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export function getToolIcon(part: AssistantToolPart): string {
|
|
69
|
+
const name = getToolName(part).toLowerCase()
|
|
70
|
+
|
|
71
|
+
if (/icon/.test(name)) return 'i-lucide-smile'
|
|
72
|
+
if (/component/.test(name)) return 'i-lucide-box'
|
|
73
|
+
if (/composable/.test(name)) return 'i-lucide-square-function'
|
|
74
|
+
if (/template/.test(name)) return 'i-lucide-layout-template'
|
|
75
|
+
if (/example|snippet/.test(name)) return 'i-lucide-code'
|
|
76
|
+
if (/module|package/.test(name)) return 'i-lucide-box'
|
|
77
|
+
if (/blog|post|news/.test(name)) return 'i-lucide-newspaper'
|
|
78
|
+
if (/changelog|release/.test(name)) return 'i-lucide-history'
|
|
79
|
+
if (/deploy|hosting|provider/.test(name)) return 'i-lucide-cloud'
|
|
80
|
+
if (/getting.?started|guide/.test(name)) return 'i-lucide-rocket'
|
|
81
|
+
if (/issue|github/.test(name)) return 'i-simple-icons-github'
|
|
82
|
+
if (/page|doc/.test(name)) {
|
|
83
|
+
const isList = /^(?:list|search|find|query)[-_]/.test(name)
|
|
84
|
+
return isList ? 'i-lucide-book-open' : 'i-lucide-file-text'
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
return 'i-lucide-search'
|
|
88
|
+
}
|
package/i18n/locales/ar.json
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"close": "إغلاق",
|
|
44
44
|
"expand": "توسيع",
|
|
45
45
|
"collapse": "طي",
|
|
46
|
-
"thinking": "التفكير...",
|
|
47
46
|
"askMeAnything": "اسأل عن أي شيء",
|
|
48
47
|
"askMeAnythingDescription": "احصل على المساعدة في التنقل بين الوثائق وفهم المفاهيم والعثور على الإجابات.",
|
|
49
48
|
"faq": "الأسئلة الشائعة",
|
|
@@ -52,7 +51,22 @@
|
|
|
52
51
|
"explainWithAi": "اشرح باستخدام الذكاء الاصطناعي",
|
|
53
52
|
"toolListPages": "صفحات الوثائق المدرجة",
|
|
54
53
|
"toolReadPage": "قراءة",
|
|
54
|
+
"tools": {
|
|
55
|
+
"searching": "جارٍ البحث",
|
|
56
|
+
"searched": "تم البحث",
|
|
57
|
+
"reading": "جارٍ القراءة",
|
|
58
|
+
"read": "تمت القراءة",
|
|
59
|
+
"finding": "جارٍ البحث",
|
|
60
|
+
"found": "تم العثور",
|
|
61
|
+
"opening": "جارٍ الفتح",
|
|
62
|
+
"opened": "تم الفتح",
|
|
63
|
+
"generating": "جارٍ التوليد",
|
|
64
|
+
"generated": "تم التوليد",
|
|
65
|
+
"creating": "جارٍ الإنشاء",
|
|
66
|
+
"created": "تم الإنشاء"
|
|
67
|
+
},
|
|
55
68
|
"loading": {
|
|
69
|
+
"thinking": "التفكير...",
|
|
56
70
|
"searching": "البحث في الوثائق",
|
|
57
71
|
"reading": "قراءة المستندات",
|
|
58
72
|
"analyzing": "تحليل المحتوى",
|
package/i18n/locales/be.json
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"close": "Закрыць",
|
|
44
44
|
"expand": "Пашырыць",
|
|
45
45
|
"collapse": "Згарнуць",
|
|
46
|
-
"thinking": "Мысленне...",
|
|
47
46
|
"askMeAnything": "Спытаць што-небудзь",
|
|
48
47
|
"askMeAnythingDescription": "Атрымаць дапамогу ў навігацыі па дакументацыі, разуменні канцэпцый і пошуку адказаў.",
|
|
49
48
|
"faq": "Пытанні і адказы",
|
|
@@ -52,7 +51,22 @@
|
|
|
52
51
|
"explainWithAi": "Растлумачыць ІІ",
|
|
53
52
|
"toolListPages": "Старонкі дакументацыі",
|
|
54
53
|
"toolReadPage": "Чытаць",
|
|
54
|
+
"tools": {
|
|
55
|
+
"searching": "Пошук",
|
|
56
|
+
"searched": "Знойдзена",
|
|
57
|
+
"reading": "Чытанне",
|
|
58
|
+
"read": "Прачытана",
|
|
59
|
+
"finding": "Пошук",
|
|
60
|
+
"found": "Знойдзена",
|
|
61
|
+
"opening": "Адкрыццё",
|
|
62
|
+
"opened": "Адкрыта",
|
|
63
|
+
"generating": "Генерацыя",
|
|
64
|
+
"generated": "Згенеравана",
|
|
65
|
+
"creating": "Стварэнне",
|
|
66
|
+
"created": "Створана"
|
|
67
|
+
},
|
|
55
68
|
"loading": {
|
|
69
|
+
"thinking": "Мысленне...",
|
|
56
70
|
"searching": "Пошук дакументацыі",
|
|
57
71
|
"reading": "Чытанне праз дакументы",
|
|
58
72
|
"analyzing": "Аналіз зместу",
|
package/i18n/locales/bg.json
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"close": "Затваряне",
|
|
44
44
|
"expand": "Разширяване",
|
|
45
45
|
"collapse": "Свиване",
|
|
46
|
-
"thinking": "Мисля си...",
|
|
47
46
|
"askMeAnything": "Попитайте за всичко",
|
|
48
47
|
"askMeAnythingDescription": "Потърсете помощ за навигация в документацията, разбиране на концепциите и намиране на отговори.",
|
|
49
48
|
"faq": "Често задавани въпроси",
|
|
@@ -52,7 +51,22 @@
|
|
|
52
51
|
"explainWithAi": "Обяснете с ИИ",
|
|
53
52
|
"toolListPages": "Изброени страници от документацията",
|
|
54
53
|
"toolReadPage": "Четене",
|
|
54
|
+
"tools": {
|
|
55
|
+
"searching": "Търсене",
|
|
56
|
+
"searched": "Намерено",
|
|
57
|
+
"reading": "Четене",
|
|
58
|
+
"read": "Прочетено",
|
|
59
|
+
"finding": "Търсене",
|
|
60
|
+
"found": "Намерено",
|
|
61
|
+
"opening": "Отваряне",
|
|
62
|
+
"opened": "Отворено",
|
|
63
|
+
"generating": "Генериране",
|
|
64
|
+
"generated": "Генерирано",
|
|
65
|
+
"creating": "Създаване",
|
|
66
|
+
"created": "Създадено"
|
|
67
|
+
},
|
|
55
68
|
"loading": {
|
|
69
|
+
"thinking": "Мисля си...",
|
|
56
70
|
"searching": "Търсене в документацията",
|
|
57
71
|
"reading": "Четене на документите",
|
|
58
72
|
"analyzing": "Анализиране на съдържанието",
|
package/i18n/locales/bn.json
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"close": "বন্ধ করুন",
|
|
44
44
|
"expand": "প্রসারিত করুন",
|
|
45
45
|
"collapse": "সঙ্কুচিত",
|
|
46
|
-
"thinking": "চিন্তা করা হচ্ছে...",
|
|
47
46
|
"askMeAnything": "যেকোনো কিছু জিজ্ঞাসা করুন",
|
|
48
47
|
"askMeAnythingDescription": "ডকুমেন্টেশন নেভিগেট করতে, ধারণাগুলি বুঝতে এবং উত্তর খুঁজে পেতে সহায়তা পান ।",
|
|
49
48
|
"faq": "প্রায়শই জিজ্ঞাসিত প্রশ্নাবলী",
|
|
@@ -52,7 +51,22 @@
|
|
|
52
51
|
"explainWithAi": "AI এর সাথে ব্যাখ্যা করুন",
|
|
53
52
|
"toolListPages": "তালিকাভুক্ত ডকুমেন্টেশন পৃষ্ঠাগুলি",
|
|
54
53
|
"toolReadPage": "পড়ুন",
|
|
54
|
+
"tools": {
|
|
55
|
+
"searching": "খুঁজছে",
|
|
56
|
+
"searched": "খুঁজেছে",
|
|
57
|
+
"reading": "পড়ছে",
|
|
58
|
+
"read": "পড়েছে",
|
|
59
|
+
"finding": "খুঁজছে",
|
|
60
|
+
"found": "পাওয়া গেছে",
|
|
61
|
+
"opening": "খুলছে",
|
|
62
|
+
"opened": "খুলেছে",
|
|
63
|
+
"generating": "উৎপন্ন করছে",
|
|
64
|
+
"generated": "উৎপন্ন করেছে",
|
|
65
|
+
"creating": "তৈরি করছে",
|
|
66
|
+
"created": "তৈরি করেছে"
|
|
67
|
+
},
|
|
55
68
|
"loading": {
|
|
69
|
+
"thinking": "চিন্তা করা হচ্ছে...",
|
|
56
70
|
"searching": "ডকুমেন্টেশন অনুসন্ধান করা হচ্ছে",
|
|
57
71
|
"reading": "ডকুমেন্টের মাধ্যমে পড়া",
|
|
58
72
|
"analyzing": "বিষয়বস্তু বিশ্লেষণ করা হচ্ছে",
|
package/i18n/locales/ca.json
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"close": "Tanca",
|
|
44
44
|
"expand": "Amplia",
|
|
45
45
|
"collapse": "Contraure",
|
|
46
|
-
"thinking": "Pensant...",
|
|
47
46
|
"askMeAnything": "Pregunta el que vulguis",
|
|
48
47
|
"askMeAnythingDescription": "Rep ajuda per navegar per la documentació, entendre els conceptes i trobar respostes.",
|
|
49
48
|
"faq": "Preguntes freqüents",
|
|
@@ -52,7 +51,22 @@
|
|
|
52
51
|
"explainWithAi": "Explica-ho amb IA",
|
|
53
52
|
"toolListPages": "Pàgines de documentació llistades",
|
|
54
53
|
"toolReadPage": "Llegir",
|
|
54
|
+
"tools": {
|
|
55
|
+
"searching": "Cercant",
|
|
56
|
+
"searched": "Cercat",
|
|
57
|
+
"reading": "Llegint",
|
|
58
|
+
"read": "Llegit",
|
|
59
|
+
"finding": "Cercant",
|
|
60
|
+
"found": "Trobat",
|
|
61
|
+
"opening": "Obrint",
|
|
62
|
+
"opened": "Obert",
|
|
63
|
+
"generating": "Generant",
|
|
64
|
+
"generated": "Generat",
|
|
65
|
+
"creating": "Creant",
|
|
66
|
+
"created": "Creat"
|
|
67
|
+
},
|
|
55
68
|
"loading": {
|
|
69
|
+
"thinking": "Pensant...",
|
|
56
70
|
"searching": "Cerca a la documentació",
|
|
57
71
|
"reading": "Llegir els documents",
|
|
58
72
|
"analyzing": "Analitzar el contingut",
|
package/i18n/locales/ckb.json
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"close": "دابخە",
|
|
44
44
|
"expand": "فراوانتر بکە",
|
|
45
45
|
"collapse": "داڕمان",
|
|
46
|
-
"thinking": "بیرکردنەوە...",
|
|
47
46
|
"askMeAnything": "هەر شتێک بپرسە",
|
|
48
47
|
"askMeAnythingDescription": "یارمەتی وەربگرە لە گەشتکردن بە بەڵگەنامەکان، تێگەیشتن لە چەمکەکان و دۆزینەوەی وەڵامەکان.",
|
|
49
48
|
"faq": "پرسیارە بەردەوامەکان",
|
|
@@ -52,7 +51,22 @@
|
|
|
52
51
|
"explainWithAi": "بە AI ڕوونی بکەرەوە",
|
|
53
52
|
"toolListPages": "لاپەڕەکانی بەڵگەنامەی ڕیزبەندی",
|
|
54
53
|
"toolReadPage": "خوێندنەوە",
|
|
54
|
+
"tools": {
|
|
55
|
+
"searching": "گەڕان",
|
|
56
|
+
"searched": "گەڕا",
|
|
57
|
+
"reading": "خوێندنەوە",
|
|
58
|
+
"read": "خوێندرایەوە",
|
|
59
|
+
"finding": "گەڕان",
|
|
60
|
+
"found": "دۆزرایەوە",
|
|
61
|
+
"opening": "کردنەوە",
|
|
62
|
+
"opened": "کرایەوە",
|
|
63
|
+
"generating": "دروستکردن",
|
|
64
|
+
"generated": "دروستکرا",
|
|
65
|
+
"creating": "دروستکردن",
|
|
66
|
+
"created": "دروستکرا"
|
|
67
|
+
},
|
|
55
68
|
"loading": {
|
|
69
|
+
"thinking": "بیرکردنەوە...",
|
|
56
70
|
"searching": "گەڕان بەدوای بەڵگەنامەکاندا",
|
|
57
71
|
"reading": "خوێندنەوە لە ڕێگەی دۆکیۆمێنتەکانەوە",
|
|
58
72
|
"analyzing": "شیکردنەوەی ناوەڕۆک",
|
package/i18n/locales/cs.json
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"close": "Zavřít",
|
|
44
44
|
"expand": "Rozbalit",
|
|
45
45
|
"collapse": "Sbalit",
|
|
46
|
-
"thinking": "Přemýšlím...",
|
|
47
46
|
"askMeAnything": "Zeptej se na cokoliv",
|
|
48
47
|
"askMeAnythingDescription": "Získejte pomoc s orientací v dokumentaci, porozuměním konceptům a nalezením odpovědí.",
|
|
49
48
|
"faq": "Často kladené otázky",
|
|
@@ -52,7 +51,22 @@
|
|
|
52
51
|
"explainWithAi": "Vysvětlete pomocí AI",
|
|
53
52
|
"toolListPages": "Uvedené stránky dokumentace",
|
|
54
53
|
"toolReadPage": "Číst",
|
|
54
|
+
"tools": {
|
|
55
|
+
"searching": "Hledání",
|
|
56
|
+
"searched": "Nalezeno",
|
|
57
|
+
"reading": "Čtení",
|
|
58
|
+
"read": "Přečteno",
|
|
59
|
+
"finding": "Hledání",
|
|
60
|
+
"found": "Nalezeno",
|
|
61
|
+
"opening": "Otevírání",
|
|
62
|
+
"opened": "Otevřeno",
|
|
63
|
+
"generating": "Generování",
|
|
64
|
+
"generated": "Vygenerováno",
|
|
65
|
+
"creating": "Vytváření",
|
|
66
|
+
"created": "Vytvořeno"
|
|
67
|
+
},
|
|
55
68
|
"loading": {
|
|
69
|
+
"thinking": "Přemýšlím...",
|
|
56
70
|
"searching": "Vyhledávání v dokumentaci",
|
|
57
71
|
"reading": "Čtení dokumentů",
|
|
58
72
|
"analyzing": "Analýza obsahu",
|
package/i18n/locales/da.json
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"close": "Luk",
|
|
44
44
|
"expand": "Udvid",
|
|
45
45
|
"collapse": "Skjul",
|
|
46
|
-
"thinking": "Tænker...",
|
|
47
46
|
"askMeAnything": "Spørg om hvad som helst",
|
|
48
47
|
"askMeAnythingDescription": "Få hjælp til at navigere i dokumentationen, forstå begreber og finde svar.",
|
|
49
48
|
"faq": "FAQ",
|
|
@@ -52,7 +51,22 @@
|
|
|
52
51
|
"explainWithAi": "Forklar med AI",
|
|
53
52
|
"toolListPages": "Opførte dokumentationssider",
|
|
54
53
|
"toolReadPage": "Læs",
|
|
54
|
+
"tools": {
|
|
55
|
+
"searching": "Søger",
|
|
56
|
+
"searched": "Søgt",
|
|
57
|
+
"reading": "Læser",
|
|
58
|
+
"read": "Læst",
|
|
59
|
+
"finding": "Søger",
|
|
60
|
+
"found": "Fundet",
|
|
61
|
+
"opening": "Åbner",
|
|
62
|
+
"opened": "Åbnet",
|
|
63
|
+
"generating": "Genererer",
|
|
64
|
+
"generated": "Genereret",
|
|
65
|
+
"creating": "Opretter",
|
|
66
|
+
"created": "Oprettet"
|
|
67
|
+
},
|
|
55
68
|
"loading": {
|
|
69
|
+
"thinking": "Tænker...",
|
|
56
70
|
"searching": "Søgning i dokumentationen",
|
|
57
71
|
"reading": "Gennemlæsning af dokumenterne",
|
|
58
72
|
"analyzing": "Analyse af indholdet",
|
package/i18n/locales/de.json
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"close": "Schließen",
|
|
44
44
|
"expand": "Erweitern",
|
|
45
45
|
"collapse": "Einklappen",
|
|
46
|
-
"thinking": "Denken...",
|
|
47
46
|
"askMeAnything": "Fragen Sie alles",
|
|
48
47
|
"askMeAnythingDescription": "Erhalten Sie Hilfe beim Navigieren durch die Dokumentation, beim Verstehen von Konzepten und beim Finden von Antworten.",
|
|
49
48
|
"faq": "FAQ",
|
|
@@ -52,7 +51,22 @@
|
|
|
52
51
|
"explainWithAi": "Mit KI erklären",
|
|
53
52
|
"toolListPages": "Aufgelistete Dokumentationsseiten",
|
|
54
53
|
"toolReadPage": "Lesen",
|
|
54
|
+
"tools": {
|
|
55
|
+
"searching": "Suche",
|
|
56
|
+
"searched": "Gesucht",
|
|
57
|
+
"reading": "Lese",
|
|
58
|
+
"read": "Gelesen",
|
|
59
|
+
"finding": "Suche",
|
|
60
|
+
"found": "Gefunden",
|
|
61
|
+
"opening": "Öffne",
|
|
62
|
+
"opened": "Geöffnet",
|
|
63
|
+
"generating": "Generiere",
|
|
64
|
+
"generated": "Generiert",
|
|
65
|
+
"creating": "Erstelle",
|
|
66
|
+
"created": "Erstellt"
|
|
67
|
+
},
|
|
55
68
|
"loading": {
|
|
69
|
+
"thinking": "Denken...",
|
|
56
70
|
"searching": "Durchsuchen der Dokumentation",
|
|
57
71
|
"reading": "Lesen der Dokumente",
|
|
58
72
|
"analyzing": "Analysieren des Inhalts",
|
package/i18n/locales/el.json
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"close": "Κλείσιμο",
|
|
44
44
|
"expand": "Ανάπτυξη",
|
|
45
45
|
"collapse": "Σύμπτυξη",
|
|
46
|
-
"thinking": "Σκέψη...",
|
|
47
46
|
"askMeAnything": "Ρωτήστε οτιδήποτε",
|
|
48
47
|
"askMeAnythingDescription": "Λάβετε βοήθεια για την πλοήγηση στην τεκμηρίωση, την κατανόηση των εννοιών και την εύρεση απαντήσεων.",
|
|
49
48
|
"faq": "Συχνές Ερωτήσεις",
|
|
@@ -52,7 +51,22 @@
|
|
|
52
51
|
"explainWithAi": "Εξηγήστε με τεχνητή νοημοσύνη",
|
|
53
52
|
"toolListPages": "Καταχωρημένες σελίδες τεκμηρίωσης",
|
|
54
53
|
"toolReadPage": "Ανάγνωση",
|
|
54
|
+
"tools": {
|
|
55
|
+
"searching": "Αναζήτηση",
|
|
56
|
+
"searched": "Αναζητήθηκε",
|
|
57
|
+
"reading": "Ανάγνωση",
|
|
58
|
+
"read": "Διαβάστηκε",
|
|
59
|
+
"finding": "Αναζήτηση",
|
|
60
|
+
"found": "Βρέθηκε",
|
|
61
|
+
"opening": "Άνοιγμα",
|
|
62
|
+
"opened": "Άνοιξε",
|
|
63
|
+
"generating": "Παραγωγή",
|
|
64
|
+
"generated": "Παρήχθη",
|
|
65
|
+
"creating": "Δημιουργία",
|
|
66
|
+
"created": "Δημιουργήθηκε"
|
|
67
|
+
},
|
|
55
68
|
"loading": {
|
|
69
|
+
"thinking": "Σκέψη...",
|
|
56
70
|
"searching": "Αναζήτηση στην τεκμηρίωση",
|
|
57
71
|
"reading": "Ανάγνωση των εγγράφων",
|
|
58
72
|
"analyzing": "Ανάλυση του περιεχομένου",
|
package/i18n/locales/en.json
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"close": "Close",
|
|
44
44
|
"expand": "Expand",
|
|
45
45
|
"collapse": "Collapse",
|
|
46
|
-
"thinking": "Thinking...",
|
|
47
46
|
"askMeAnything": "Ask anything",
|
|
48
47
|
"askMeAnythingDescription": "Get help navigating the documentation, understanding concepts, and finding answers.",
|
|
49
48
|
"faq": "FAQ",
|
|
@@ -52,7 +51,22 @@
|
|
|
52
51
|
"explainWithAi": "Explain with AI",
|
|
53
52
|
"toolListPages": "Listed documentation pages",
|
|
54
53
|
"toolReadPage": "Read",
|
|
54
|
+
"tools": {
|
|
55
|
+
"searching": "Searching",
|
|
56
|
+
"searched": "Searched",
|
|
57
|
+
"reading": "Reading",
|
|
58
|
+
"read": "Read",
|
|
59
|
+
"finding": "Finding",
|
|
60
|
+
"found": "Found",
|
|
61
|
+
"opening": "Opening",
|
|
62
|
+
"opened": "Opened",
|
|
63
|
+
"generating": "Generating",
|
|
64
|
+
"generated": "Generated",
|
|
65
|
+
"creating": "Creating",
|
|
66
|
+
"created": "Created"
|
|
67
|
+
},
|
|
55
68
|
"loading": {
|
|
69
|
+
"thinking": "Thinking...",
|
|
56
70
|
"searching": "Searching the documentation",
|
|
57
71
|
"reading": "Reading through the docs",
|
|
58
72
|
"analyzing": "Analyzing the content",
|
package/i18n/locales/es.json
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"close": "Cerrar",
|
|
44
44
|
"expand": "Expandir",
|
|
45
45
|
"collapse": "Contraer",
|
|
46
|
-
"thinking": "Pensando...",
|
|
47
46
|
"askMeAnything": "Preguntar cualquier cosa",
|
|
48
47
|
"askMeAnythingDescription": "Obtenga ayuda para navegar por la documentación, comprender conceptos y encontrar respuestas.",
|
|
49
48
|
"faq": "Preguntas frecuentes",
|
|
@@ -52,7 +51,22 @@
|
|
|
52
51
|
"explainWithAi": "Explicar con IA",
|
|
53
52
|
"toolListPages": "Páginas de documentación publicadas",
|
|
54
53
|
"toolReadPage": "Leer",
|
|
54
|
+
"tools": {
|
|
55
|
+
"searching": "Buscando",
|
|
56
|
+
"searched": "Buscado",
|
|
57
|
+
"reading": "Leyendo",
|
|
58
|
+
"read": "Leído",
|
|
59
|
+
"finding": "Buscando",
|
|
60
|
+
"found": "Encontrado",
|
|
61
|
+
"opening": "Abriendo",
|
|
62
|
+
"opened": "Abierto",
|
|
63
|
+
"generating": "Generando",
|
|
64
|
+
"generated": "Generado",
|
|
65
|
+
"creating": "Creando",
|
|
66
|
+
"created": "Creado"
|
|
67
|
+
},
|
|
55
68
|
"loading": {
|
|
69
|
+
"thinking": "Pensando...",
|
|
56
70
|
"searching": "Búsqueda de la documentación",
|
|
57
71
|
"reading": "Leyendo los documentos",
|
|
58
72
|
"analyzing": "Análisis del contenido",
|
package/i18n/locales/et.json
CHANGED
|
@@ -43,7 +43,6 @@
|
|
|
43
43
|
"close": "Sulge",
|
|
44
44
|
"expand": "Laienda",
|
|
45
45
|
"collapse": "Ahenda",
|
|
46
|
-
"thinking": "Mõtlen...",
|
|
47
46
|
"askMeAnything": "Küsi ükskõik mida",
|
|
48
47
|
"askMeAnythingDescription": "Saa abi dokumentatsioonis navigeerimisel, kontseptsioonide mõistmisel ja vastuste leidmisel.",
|
|
49
48
|
"faq": "KKK",
|
|
@@ -52,7 +51,22 @@
|
|
|
52
51
|
"explainWithAi": "Selgita tehisintellektiga",
|
|
53
52
|
"toolListPages": "Loetletud dokumentatsiooni lehed",
|
|
54
53
|
"toolReadPage": "Loe",
|
|
54
|
+
"tools": {
|
|
55
|
+
"searching": "Otsin",
|
|
56
|
+
"searched": "Otsitud",
|
|
57
|
+
"reading": "Loen",
|
|
58
|
+
"read": "Loetud",
|
|
59
|
+
"finding": "Otsin",
|
|
60
|
+
"found": "Leitud",
|
|
61
|
+
"opening": "Avan",
|
|
62
|
+
"opened": "Avatud",
|
|
63
|
+
"generating": "Genereerin",
|
|
64
|
+
"generated": "Genereeritud",
|
|
65
|
+
"creating": "Loon",
|
|
66
|
+
"created": "Loodud"
|
|
67
|
+
},
|
|
55
68
|
"loading": {
|
|
69
|
+
"thinking": "Mõtlen...",
|
|
56
70
|
"searching": "Dokumentatsiooni otsimine",
|
|
57
71
|
"reading": "Dokumentide lugemine",
|
|
58
72
|
"analyzing": "Sisu analüüsimine",
|