@lobehub/lobehub 2.0.0-next.54 → 2.0.0-next.55
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/CHANGELOG.md +27 -0
- package/changelog/v1.json +9 -0
- package/locales/ar/common.json +1 -0
- package/locales/ar/file.json +85 -2
- package/locales/bg-BG/common.json +1 -0
- package/locales/bg-BG/file.json +85 -2
- package/locales/de-DE/common.json +1 -0
- package/locales/de-DE/file.json +85 -2
- package/locales/en-US/common.json +1 -0
- package/locales/en-US/file.json +85 -2
- package/locales/es-ES/common.json +1 -0
- package/locales/es-ES/file.json +85 -2
- package/locales/fa-IR/common.json +1 -0
- package/locales/fa-IR/file.json +85 -2
- package/locales/fr-FR/common.json +1 -0
- package/locales/fr-FR/file.json +85 -2
- package/locales/it-IT/common.json +1 -0
- package/locales/it-IT/file.json +85 -2
- package/locales/ja-JP/common.json +1 -0
- package/locales/ja-JP/file.json +85 -2
- package/locales/ko-KR/common.json +1 -0
- package/locales/ko-KR/file.json +85 -2
- package/locales/nl-NL/common.json +1 -0
- package/locales/nl-NL/file.json +85 -2
- package/locales/pl-PL/common.json +1 -0
- package/locales/pl-PL/file.json +85 -2
- package/locales/pt-BR/common.json +1 -0
- package/locales/pt-BR/file.json +85 -2
- package/locales/ru-RU/common.json +1 -0
- package/locales/ru-RU/file.json +85 -2
- package/locales/tr-TR/common.json +1 -0
- package/locales/tr-TR/file.json +85 -2
- package/locales/vi-VN/common.json +1 -0
- package/locales/vi-VN/file.json +85 -2
- package/locales/zh-CN/common.json +1 -0
- package/locales/zh-CN/file.json +85 -2
- package/locales/zh-TW/common.json +1 -0
- package/locales/zh-TW/file.json +85 -2
- package/package.json +1 -1
- package/packages/database/src/models/__tests__/file.test.ts +94 -29
- package/packages/database/src/models/file.ts +15 -4
- package/packages/database/src/repositories/knowledge/index.test.ts +300 -0
- package/packages/database/src/repositories/knowledge/index.ts +420 -0
- package/packages/model-bank/src/aiModels/aihubmix.ts +1 -0
- package/packages/model-bank/src/aiModels/google.ts +9 -5
- package/packages/model-bank/src/aiModels/openai.ts +2 -35
- package/packages/model-bank/src/aiModels/openrouter.ts +1 -0
- package/packages/model-bank/src/aiModels/vertexai.ts +2 -0
- package/packages/model-bank/src/types/aiModel.ts +15 -2
- package/packages/model-runtime/src/core/usageConverters/index.ts +1 -0
- package/packages/model-runtime/src/core/usageConverters/utils/resolveImageSinglePrice.ts +34 -0
- package/packages/types/src/document/index.ts +14 -2
- package/packages/types/src/files/index.ts +2 -0
- package/packages/types/src/files/list.ts +10 -0
- package/packages/types/src/llm.ts +1 -1
- package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/ModelSelect/ImageModelItem.tsx +93 -0
- package/src/app/[variants]/(main)/image/@menu/features/ConfigPanel/components/{ModelSelect.tsx → ModelSelect/index.tsx} +17 -2
- package/src/app/[variants]/(main)/knowledge/KnowledgeRouter.tsx +2 -1
- package/src/app/[variants]/(main)/knowledge/components/KnowledgeBaseItem/index.tsx +0 -2
- package/src/app/[variants]/(main)/knowledge/hooks/useFileCategory.ts +6 -3
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/index.tsx +2 -2
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/{MenuItems.tsx → CategoryMenu.tsx} +3 -3
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeBaseDetail/menu/Menu.tsx +2 -2
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/index.tsx +40 -18
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/layout/Container.tsx +1 -1
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/CategoryMenu.tsx +148 -0
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/KnowledgeBase.tsx +20 -7
- package/src/components/FileIcon/index.tsx +3 -1
- package/src/features/ChatInput/ActionBar/Knowledge/index.tsx +2 -2
- package/src/features/FileSidePanel/index.tsx +1 -1
- package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/Item/MasonryItem.tsx +80 -0
- package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/Item/MasonryItemWrapper.tsx +27 -0
- package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/List.tsx +104 -23
- package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/MasonrySkeleton.tsx +62 -0
- package/src/features/KnowledgeBaseModal/AssignKnowledgeBase/index.tsx +3 -2
- package/src/features/KnowledgeBaseModal/CreateNew/CreateForm.tsx +1 -1
- package/src/features/KnowledgeManager/DocumentExplorer/DocumentActions.tsx +111 -0
- package/src/features/KnowledgeManager/DocumentExplorer/DocumentEditor.tsx +723 -0
- package/src/features/KnowledgeManager/DocumentExplorer/DocumentEditorPlaceholder.tsx +169 -0
- package/src/features/KnowledgeManager/DocumentExplorer/DocumentListItem.tsx +148 -0
- package/src/features/KnowledgeManager/DocumentExplorer/DocumentListSkeleton.tsx +39 -0
- package/src/features/KnowledgeManager/DocumentExplorer/NoteEditorModal.tsx +348 -0
- package/src/features/KnowledgeManager/DocumentExplorer/RenamePopover.tsx +163 -0
- package/src/features/KnowledgeManager/DocumentExplorer/index.tsx +318 -0
- package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/FileListItem/index.tsx +48 -9
- package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/DefaultFileItem.tsx +149 -0
- package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/ImageFileItem.tsx +245 -0
- package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/MarkdownFileItem.tsx +232 -0
- package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/NoteFileItem.tsx +230 -0
- package/src/features/KnowledgeManager/FileExplorer/MasonryFileItem/index.tsx +398 -0
- package/src/features/KnowledgeManager/FileExplorer/ToolBar/ViewSwitcher.tsx +45 -0
- package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/index.tsx +68 -16
- package/src/features/KnowledgeManager/Header/AddButton.tsx +107 -0
- package/src/features/KnowledgeManager/Header/NewNoteButton.tsx +33 -0
- package/src/features/{FileManager → KnowledgeManager}/Header/index.tsx +3 -9
- package/src/features/KnowledgeManager/Home/RecentDocumentCard.tsx +116 -0
- package/src/features/KnowledgeManager/Home/RecentDocuments.tsx +77 -0
- package/src/features/KnowledgeManager/Home/RecentFileCard.tsx +121 -0
- package/src/features/KnowledgeManager/Home/RecentFiles.tsx +73 -0
- package/src/features/KnowledgeManager/Home/RecentFilesSkeleton.tsx +83 -0
- package/src/features/KnowledgeManager/Home/UploadEntries.tsx +208 -0
- package/src/features/KnowledgeManager/Home/index.tsx +221 -0
- package/src/features/KnowledgeManager/index.tsx +75 -0
- package/src/features/Portal/FilePreview/Body/index.tsx +1 -1
- package/src/features/Portal/FilePreview/Header.tsx +1 -1
- package/src/locales/default/common.ts +1 -0
- package/src/locales/default/file.ts +85 -2
- package/src/server/routers/lambda/__tests__/file.test.ts +85 -6
- package/src/server/routers/lambda/document.ts +57 -0
- package/src/server/routers/lambda/file.ts +72 -0
- package/src/server/routers/lambda/knowledge.ts +94 -0
- package/src/server/services/document/index.ts +103 -0
- package/src/services/document/index.ts +44 -0
- package/src/services/file/index.ts +5 -3
- package/src/store/aiInfra/slices/aiProvider/__tests__/action.test.ts +125 -229
- package/src/store/aiInfra/slices/aiProvider/action.ts +113 -33
- package/src/store/file/initialState.ts +6 -1
- package/src/store/file/slices/chat/action.ts +3 -3
- package/src/store/file/slices/document/action.ts +359 -0
- package/src/store/file/slices/document/index.ts +3 -0
- package/src/store/file/slices/document/initialState.ts +22 -0
- package/src/store/file/slices/document/selectors.ts +25 -0
- package/src/store/file/slices/fileManager/action.test.ts +16 -9
- package/src/store/file/slices/fileManager/action.ts +11 -11
- package/src/store/file/store.ts +3 -0
- package/src/store/global/initialState.ts +3 -1
- package/src/app/[variants]/(main)/knowledge/routes/KnowledgeHome/menu/FileMenu.tsx +0 -75
- package/src/features/FileManager/FileList/MasonryFileItem/index.tsx +0 -582
- package/src/features/FileManager/index.tsx +0 -36
- /package/src/features/{FileManager/FileList/ToolBar → KnowledgeBaseModal/AssignKnowledgeBase}/ViewSwitcher.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/ChunkList/ChunkItem.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/ChunkList/index.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/Content.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/Loading/index.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/SimilaritySearchList/Item.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/SimilaritySearchList/index.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/ChunkDrawer/index.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/EmptyStatus.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/FileListItem/ChunkTag.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/FileListItem/DropdownMenu.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/FileSkeleton.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/MasonryFileItem/MasonryItemWrapper.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/MasonrySkeleton.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/ToolBar/Config.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/ToolBar/MultiSelectActions.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/ToolBar/index.tsx +0 -0
- /package/src/features/{FileManager/FileList → KnowledgeManager/FileExplorer}/useCheckTaskStatus.ts +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/Header/FilesSearchBar.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/Header/TogglePanelButton.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/Header/UploadFileButton.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/UploadDock/Item.tsx +0 -0
- /package/src/features/{FileManager → KnowledgeManager}/UploadDock/index.tsx +0 -0
package/locales/ko-KR/file.json
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"addKnowledge": "지식 추가",
|
|
3
|
+
"addPage": "문서 생성",
|
|
4
|
+
"desc": "작업, 학습 및 생활 지식을 관리하세요.",
|
|
3
5
|
"detail": {
|
|
4
6
|
"basic": {
|
|
5
7
|
"createdAt": "생성 시간",
|
|
@@ -21,6 +23,44 @@
|
|
|
21
23
|
"embeddingStatus": "벡터화 상태"
|
|
22
24
|
}
|
|
23
25
|
},
|
|
26
|
+
"documentEditor": {
|
|
27
|
+
"addIcon": "아이콘 추가",
|
|
28
|
+
"autoSaveMessage": "문서는 자동으로 저장되며, 수동 저장이 필요하지 않습니다",
|
|
29
|
+
"chooseIcon": "아이콘 선택",
|
|
30
|
+
"deleteConfirm": {
|
|
31
|
+
"content": "이 문서를 삭제하려고 합니다. 삭제 후에는 복구할 수 없으니 신중히 진행해 주세요.",
|
|
32
|
+
"title": "문서 삭제"
|
|
33
|
+
},
|
|
34
|
+
"deleteError": "문서 삭제에 실패했습니다",
|
|
35
|
+
"deleteSuccess": "문서가 성공적으로 삭제되었습니다",
|
|
36
|
+
"editedAt": "{{time}}에 마지막으로 편집됨",
|
|
37
|
+
"editedBy": "마지막 편집자: {{name}}",
|
|
38
|
+
"editorPlaceholder": "문서 내용을 입력하세요. / 키를 눌러 명령 메뉴를 엽니다",
|
|
39
|
+
"empty": {
|
|
40
|
+
"createNewDocument": "새 문서 만들기",
|
|
41
|
+
"title": "문서를 선택하여 시작하세요",
|
|
42
|
+
"uploadMarkdown": "Markdown 파일 업로드"
|
|
43
|
+
},
|
|
44
|
+
"linkCopied": "링크가 복사되었습니다",
|
|
45
|
+
"menu": {
|
|
46
|
+
"copyLink": "링크 복사",
|
|
47
|
+
"exportDocument": "문서 내보내기",
|
|
48
|
+
"importDocument": "문서 가져오기",
|
|
49
|
+
"pin": "문서 상단 고정"
|
|
50
|
+
},
|
|
51
|
+
"saving": "저장 중...",
|
|
52
|
+
"titlePlaceholder": "제목 없음",
|
|
53
|
+
"wordCount": "{{wordCount}}자"
|
|
54
|
+
},
|
|
55
|
+
"documentList": {
|
|
56
|
+
"copyContent": "전체 내용 복사",
|
|
57
|
+
"documentCount": "총 {{count}}개의 문서",
|
|
58
|
+
"duplicate": "복사본 만들기",
|
|
59
|
+
"empty": "아직 문서가 없습니다. 위 버튼을 클릭하여 첫 문서를 작성해 보세요",
|
|
60
|
+
"noResults": "일치하는 문서를 찾을 수 없습니다",
|
|
61
|
+
"selectNote": "편집할 문서를 선택하세요",
|
|
62
|
+
"untitled": "제목 없음"
|
|
63
|
+
},
|
|
24
64
|
"empty": "업로드된 파일/폴더가 없습니다",
|
|
25
65
|
"header": {
|
|
26
66
|
"actions": {
|
|
@@ -28,8 +68,43 @@
|
|
|
28
68
|
"uploadFile": "파일 업로드",
|
|
29
69
|
"uploadFolder": "폴더 업로드"
|
|
30
70
|
},
|
|
71
|
+
"newDocumentButton": "새 문서",
|
|
72
|
+
"newNoteDialog": {
|
|
73
|
+
"cancel": "취소",
|
|
74
|
+
"editTitle": "문서 편집",
|
|
75
|
+
"emptyContent": "문서 내용은 비워둘 수 없습니다",
|
|
76
|
+
"loadError": "문서 불러오기에 실패했습니다. 다시 시도해 주세요",
|
|
77
|
+
"loading": "불러오는 중...",
|
|
78
|
+
"save": "저장",
|
|
79
|
+
"saveError": "문서 저장에 실패했습니다. 다시 시도해 주세요",
|
|
80
|
+
"saveSuccess": "문서가 성공적으로 저장되었습니다",
|
|
81
|
+
"title": "새 문서 만들기",
|
|
82
|
+
"updateSuccess": "문서가 성공적으로 업데이트되었습니다"
|
|
83
|
+
},
|
|
31
84
|
"uploadButton": "업로드"
|
|
32
85
|
},
|
|
86
|
+
"home": {
|
|
87
|
+
"getStarted": "시작하기",
|
|
88
|
+
"greeting": "시작하기",
|
|
89
|
+
"quickActions": "빠른 작업",
|
|
90
|
+
"recentDocuments": "최근 문서",
|
|
91
|
+
"recentFiles": "최근 파일",
|
|
92
|
+
"subtitle": "지식 관리 시스템에 오신 것을 환영합니다. 여기서 문서를 관리해 보세요",
|
|
93
|
+
"uploadEntries": {
|
|
94
|
+
"files": {
|
|
95
|
+
"title": "파일 업로드"
|
|
96
|
+
},
|
|
97
|
+
"folder": {
|
|
98
|
+
"title": "폴더 업로드"
|
|
99
|
+
},
|
|
100
|
+
"knowledgeBase": {
|
|
101
|
+
"title": "새 지식베이스 만들기"
|
|
102
|
+
},
|
|
103
|
+
"newDocument": {
|
|
104
|
+
"title": "새 문서 만들기"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
},
|
|
33
108
|
"knowledgeBase": {
|
|
34
109
|
"list": {
|
|
35
110
|
"confirmRemoveKnowledgeBase": "이 지식베이스를 삭제하려고 합니다. 포함된 파일은 삭제되지 않으며 전체 파일로 이동됩니다. 삭제된 지식베이스는 복구할 수 없으니 신중히 진행해 주세요.",
|
|
@@ -38,6 +113,10 @@
|
|
|
38
113
|
"new": "새 지식베이스",
|
|
39
114
|
"title": "지식베이스"
|
|
40
115
|
},
|
|
116
|
+
"menu": {
|
|
117
|
+
"allDocuments": "모든 문서",
|
|
118
|
+
"allFiles": "모든 파일"
|
|
119
|
+
},
|
|
41
120
|
"networkError": "지식베이스를 불러오지 못했습니다. 네트워크 연결을 확인한 후 다시 시도해 주세요",
|
|
42
121
|
"notSupportGuide": {
|
|
43
122
|
"desc": "현재 배포 인스턴스는 클라이언트 데이터베이스 모드로, 파일 관리 기능을 사용할 수 없습니다. <1>서버 데이터베이스 배포 모드</1>로 전환하거나 <3>LobeChat Cloud</3>를 이용해 주세요",
|
|
@@ -61,12 +140,16 @@
|
|
|
61
140
|
"downloadFile": "파일 다운로드",
|
|
62
141
|
"unsupportedFileAndContact": "이 파일 형식은 온라인 미리보기를 지원하지 않습니다. 미리보기 기능이 필요하시면 <1>의견을 보내주세요</1>"
|
|
63
142
|
},
|
|
143
|
+
"searchDocumentPlaceholder": "문서 검색",
|
|
64
144
|
"searchFilePlaceholder": "파일 검색",
|
|
65
145
|
"tab": {
|
|
66
|
-
"all": "전체
|
|
146
|
+
"all": "전체",
|
|
67
147
|
"audios": "오디오",
|
|
68
148
|
"documents": "문서",
|
|
149
|
+
"home": "홈",
|
|
69
150
|
"images": "이미지",
|
|
151
|
+
"moreTypes": "더 많은 유형",
|
|
152
|
+
"pages": "문서",
|
|
70
153
|
"videos": "비디오",
|
|
71
154
|
"websites": "웹사이트"
|
|
72
155
|
},
|
package/locales/nl-NL/file.json
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"addKnowledge": "Kennis toevoegen",
|
|
3
|
+
"addPage": "Document aanmaken",
|
|
4
|
+
"desc": "Beheer je kennis over werk, studie en leven.",
|
|
3
5
|
"detail": {
|
|
4
6
|
"basic": {
|
|
5
7
|
"createdAt": "Aanmaakdatum",
|
|
@@ -21,6 +23,44 @@
|
|
|
21
23
|
"embeddingStatus": "Vectorisatie"
|
|
22
24
|
}
|
|
23
25
|
},
|
|
26
|
+
"documentEditor": {
|
|
27
|
+
"addIcon": "Pictogram toevoegen",
|
|
28
|
+
"autoSaveMessage": "Documenten worden automatisch opgeslagen, handmatig opslaan is niet nodig",
|
|
29
|
+
"chooseIcon": "Pictogram kiezen",
|
|
30
|
+
"deleteConfirm": {
|
|
31
|
+
"content": "Je staat op het punt dit document te verwijderen. Dit kan niet ongedaan worden gemaakt. Wees voorzichtig.",
|
|
32
|
+
"title": "Document verwijderen"
|
|
33
|
+
},
|
|
34
|
+
"deleteError": "Verwijderen van document mislukt",
|
|
35
|
+
"deleteSuccess": "Document succesvol verwijderd",
|
|
36
|
+
"editedAt": "Laatst bewerkt op {{time}}",
|
|
37
|
+
"editedBy": "Laatst bewerkt door {{name}}",
|
|
38
|
+
"editorPlaceholder": "Voer documentinhoud in, druk op / om het opdrachtmenu te openen",
|
|
39
|
+
"empty": {
|
|
40
|
+
"createNewDocument": "Nieuw document aanmaken",
|
|
41
|
+
"title": "Selecteer een document om te beginnen",
|
|
42
|
+
"uploadMarkdown": "Markdown-bestand uploaden"
|
|
43
|
+
},
|
|
44
|
+
"linkCopied": "Link gekopieerd",
|
|
45
|
+
"menu": {
|
|
46
|
+
"copyLink": "Link kopiëren",
|
|
47
|
+
"exportDocument": "Document exporteren",
|
|
48
|
+
"importDocument": "Document importeren",
|
|
49
|
+
"pin": "Document vastzetten"
|
|
50
|
+
},
|
|
51
|
+
"saving": "Bezig met opslaan...",
|
|
52
|
+
"titlePlaceholder": "Zonder titel",
|
|
53
|
+
"wordCount": "{{wordCount}} woorden"
|
|
54
|
+
},
|
|
55
|
+
"documentList": {
|
|
56
|
+
"copyContent": "Volledige inhoud kopiëren",
|
|
57
|
+
"documentCount": "Totaal {{count}} documenten",
|
|
58
|
+
"duplicate": "Kopie maken",
|
|
59
|
+
"empty": "Nog geen documenten. Klik op de knop hierboven om je eerste document aan te maken",
|
|
60
|
+
"noResults": "Geen overeenkomende documenten gevonden",
|
|
61
|
+
"selectNote": "Selecteer een document om te beginnen met bewerken",
|
|
62
|
+
"untitled": "Zonder titel"
|
|
63
|
+
},
|
|
24
64
|
"empty": "Geen bestanden/mappen geüpload",
|
|
25
65
|
"header": {
|
|
26
66
|
"actions": {
|
|
@@ -28,8 +68,43 @@
|
|
|
28
68
|
"uploadFile": "Bestand uploaden",
|
|
29
69
|
"uploadFolder": "Map uploaden"
|
|
30
70
|
},
|
|
71
|
+
"newDocumentButton": "Nieuw document",
|
|
72
|
+
"newNoteDialog": {
|
|
73
|
+
"cancel": "Annuleren",
|
|
74
|
+
"editTitle": "Document bewerken",
|
|
75
|
+
"emptyContent": "Documentinhoud mag niet leeg zijn",
|
|
76
|
+
"loadError": "Laden van document mislukt, probeer het opnieuw",
|
|
77
|
+
"loading": "Bezig met laden...",
|
|
78
|
+
"save": "Opslaan",
|
|
79
|
+
"saveError": "Opslaan van document mislukt, probeer het opnieuw",
|
|
80
|
+
"saveSuccess": "Document succesvol opgeslagen",
|
|
81
|
+
"title": "Nieuw document",
|
|
82
|
+
"updateSuccess": "Document succesvol bijgewerkt"
|
|
83
|
+
},
|
|
31
84
|
"uploadButton": "Uploaden"
|
|
32
85
|
},
|
|
86
|
+
"home": {
|
|
87
|
+
"getStarted": "Aan de slag",
|
|
88
|
+
"greeting": "Aan de slag",
|
|
89
|
+
"quickActions": "Snelle acties",
|
|
90
|
+
"recentDocuments": "Recente documenten",
|
|
91
|
+
"recentFiles": "Recente bestanden",
|
|
92
|
+
"subtitle": "Welkom bij je kennisbank. Begin hier met het beheren van je documenten",
|
|
93
|
+
"uploadEntries": {
|
|
94
|
+
"files": {
|
|
95
|
+
"title": "Bestanden uploaden"
|
|
96
|
+
},
|
|
97
|
+
"folder": {
|
|
98
|
+
"title": "Map uploaden"
|
|
99
|
+
},
|
|
100
|
+
"knowledgeBase": {
|
|
101
|
+
"title": "Nieuwe kennisbank"
|
|
102
|
+
},
|
|
103
|
+
"newDocument": {
|
|
104
|
+
"title": "Nieuw document"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
},
|
|
33
108
|
"knowledgeBase": {
|
|
34
109
|
"list": {
|
|
35
110
|
"confirmRemoveKnowledgeBase": "Je staat op het punt deze kennisbank te verwijderen. De bestanden hierin worden niet verwijderd, maar verplaatst naar 'Alle bestanden'. Een verwijderde kennisbank kan niet worden hersteld, wees voorzichtig.",
|
|
@@ -38,6 +113,10 @@
|
|
|
38
113
|
"new": "Nieuwe kennisbank",
|
|
39
114
|
"title": "Kennisbank"
|
|
40
115
|
},
|
|
116
|
+
"menu": {
|
|
117
|
+
"allDocuments": "Alle documenten",
|
|
118
|
+
"allFiles": "Alle bestanden"
|
|
119
|
+
},
|
|
41
120
|
"networkError": "Kon de kennisbank niet ophalen, controleer uw netwerkverbinding en probeer het opnieuw",
|
|
42
121
|
"notSupportGuide": {
|
|
43
122
|
"desc": "De huidige implementatie is in client-database modus, waardoor de bestandsbeheerfunctie niet beschikbaar is. Schakel over naar <1>server-database implementatiemodus</1>, of gebruik direct <3>LobeChat Cloud</3>",
|
|
@@ -61,12 +140,16 @@
|
|
|
61
140
|
"downloadFile": "Bestand downloaden",
|
|
62
141
|
"unsupportedFileAndContact": "Dit bestandsformaat wordt momenteel niet ondersteund voor online preview. Als u een preview wilt, neem dan gerust <1>contact met ons op</1>."
|
|
63
142
|
},
|
|
143
|
+
"searchDocumentPlaceholder": "Documenten zoeken",
|
|
64
144
|
"searchFilePlaceholder": "Zoek bestand",
|
|
65
145
|
"tab": {
|
|
66
|
-
"all": "
|
|
146
|
+
"all": "Alles",
|
|
67
147
|
"audios": "Audio's",
|
|
68
148
|
"documents": "Documenten",
|
|
149
|
+
"home": "Startpagina",
|
|
69
150
|
"images": "Afbeeldingen",
|
|
151
|
+
"moreTypes": "Meer typen",
|
|
152
|
+
"pages": "Documenten",
|
|
70
153
|
"videos": "Video's",
|
|
71
154
|
"websites": "Websites"
|
|
72
155
|
},
|
package/locales/pl-PL/file.json
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"addKnowledge": "Dodaj wiedzę",
|
|
3
|
+
"addPage": "Utwórz dokument",
|
|
4
|
+
"desc": "Zarządzaj swoją wiedzą z pracy, nauki i życia.",
|
|
3
5
|
"detail": {
|
|
4
6
|
"basic": {
|
|
5
7
|
"createdAt": "Data utworzenia",
|
|
@@ -21,6 +23,44 @@
|
|
|
21
23
|
"embeddingStatus": "Indeksowanie"
|
|
22
24
|
}
|
|
23
25
|
},
|
|
26
|
+
"documentEditor": {
|
|
27
|
+
"addIcon": "Dodaj ikonę",
|
|
28
|
+
"autoSaveMessage": "Dokument jest zapisywany automatycznie, nie ma potrzeby zapisywania ręcznego",
|
|
29
|
+
"chooseIcon": "Wybierz ikonę",
|
|
30
|
+
"deleteConfirm": {
|
|
31
|
+
"content": "Zamierzasz usunąć ten dokument. Po usunięciu nie będzie można go odzyskać. Proszę postępować ostrożnie.",
|
|
32
|
+
"title": "Usuń dokument"
|
|
33
|
+
},
|
|
34
|
+
"deleteError": "Nie udało się usunąć dokumentu",
|
|
35
|
+
"deleteSuccess": "Dokument został pomyślnie usunięty",
|
|
36
|
+
"editedAt": "Ostatnia edycja: {{time}}",
|
|
37
|
+
"editedBy": "Ostatnio edytował: {{name}}",
|
|
38
|
+
"editorPlaceholder": "Wpisz treść dokumentu, naciśnij / aby otworzyć menu poleceń",
|
|
39
|
+
"empty": {
|
|
40
|
+
"createNewDocument": "Utwórz nowy dokument",
|
|
41
|
+
"title": "Wybierz dokument, aby rozpocząć",
|
|
42
|
+
"uploadMarkdown": "Prześlij plik Markdown"
|
|
43
|
+
},
|
|
44
|
+
"linkCopied": "Link został skopiowany",
|
|
45
|
+
"menu": {
|
|
46
|
+
"copyLink": "Kopiuj link",
|
|
47
|
+
"exportDocument": "Eksportuj dokument",
|
|
48
|
+
"importDocument": "Importuj dokument",
|
|
49
|
+
"pin": "Przypnij dokument"
|
|
50
|
+
},
|
|
51
|
+
"saving": "Zapisywanie...",
|
|
52
|
+
"titlePlaceholder": "Bez tytułu",
|
|
53
|
+
"wordCount": "{{wordCount}} słów"
|
|
54
|
+
},
|
|
55
|
+
"documentList": {
|
|
56
|
+
"copyContent": "Kopiuj całą treść",
|
|
57
|
+
"documentCount": "Łącznie {{count}} dokumentów",
|
|
58
|
+
"duplicate": "Utwórz kopię",
|
|
59
|
+
"empty": "Brak dokumentów. Kliknij przycisk powyżej, aby utworzyć pierwszy dokument",
|
|
60
|
+
"noResults": "Nie znaleziono pasujących dokumentów",
|
|
61
|
+
"selectNote": "Wybierz dokument, aby rozpocząć edycję",
|
|
62
|
+
"untitled": "Bez tytułu"
|
|
63
|
+
},
|
|
24
64
|
"empty": "Brak przesłanych plików/folderów",
|
|
25
65
|
"header": {
|
|
26
66
|
"actions": {
|
|
@@ -28,8 +68,43 @@
|
|
|
28
68
|
"uploadFile": "Prześlij plik",
|
|
29
69
|
"uploadFolder": "Prześlij folder"
|
|
30
70
|
},
|
|
71
|
+
"newDocumentButton": "Nowy dokument",
|
|
72
|
+
"newNoteDialog": {
|
|
73
|
+
"cancel": "Anuluj",
|
|
74
|
+
"editTitle": "Edytuj dokument",
|
|
75
|
+
"emptyContent": "Treść dokumentu nie może być pusta",
|
|
76
|
+
"loadError": "Nie udało się załadować dokumentu, spróbuj ponownie",
|
|
77
|
+
"loading": "Ładowanie...",
|
|
78
|
+
"save": "Zapisz",
|
|
79
|
+
"saveError": "Nie udało się zapisać dokumentu, spróbuj ponownie",
|
|
80
|
+
"saveSuccess": "Dokument został zapisany pomyślnie",
|
|
81
|
+
"title": "Nowy dokument",
|
|
82
|
+
"updateSuccess": "Dokument został zaktualizowany pomyślnie"
|
|
83
|
+
},
|
|
31
84
|
"uploadButton": "Prześlij"
|
|
32
85
|
},
|
|
86
|
+
"home": {
|
|
87
|
+
"getStarted": "Rozpocznij",
|
|
88
|
+
"greeting": "Zaczynamy",
|
|
89
|
+
"quickActions": "Szybkie akcje",
|
|
90
|
+
"recentDocuments": "Ostatnie dokumenty",
|
|
91
|
+
"recentFiles": "Ostatnie pliki",
|
|
92
|
+
"subtitle": "Witamy w bazie wiedzy. Zacznij zarządzać swoimi dokumentami już teraz",
|
|
93
|
+
"uploadEntries": {
|
|
94
|
+
"files": {
|
|
95
|
+
"title": "Prześlij pliki"
|
|
96
|
+
},
|
|
97
|
+
"folder": {
|
|
98
|
+
"title": "Prześlij folder"
|
|
99
|
+
},
|
|
100
|
+
"knowledgeBase": {
|
|
101
|
+
"title": "Nowa baza wiedzy"
|
|
102
|
+
},
|
|
103
|
+
"newDocument": {
|
|
104
|
+
"title": "Nowy dokument"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
},
|
|
33
108
|
"knowledgeBase": {
|
|
34
109
|
"list": {
|
|
35
110
|
"confirmRemoveKnowledgeBase": "Zaraz usuniesz tę bazę wiedzy, pliki w niej zawarte nie zostaną usunięte, a zostaną przeniesione do folderu wszystkich plików. Po usunięciu bazy wiedzy nie będzie można jej przywrócić, proszę działać ostrożnie.",
|
|
@@ -38,6 +113,10 @@
|
|
|
38
113
|
"new": "Nowa baza wiedzy",
|
|
39
114
|
"title": "Baza wiedzy"
|
|
40
115
|
},
|
|
116
|
+
"menu": {
|
|
117
|
+
"allDocuments": "Wszystkie dokumenty",
|
|
118
|
+
"allFiles": "Wszystkie pliki"
|
|
119
|
+
},
|
|
41
120
|
"networkError": "Nie udało się uzyskać dostępu do bazy wiedzy, proszę sprawdzić połączenie sieciowe i spróbować ponownie",
|
|
42
121
|
"notSupportGuide": {
|
|
43
122
|
"desc": "Obecna instancja wdrożeniowa jest w trybie bazy danych klienta, co uniemożliwia korzystanie z funkcji zarządzania plikami. Proszę przełączyć się na <1>tryb wdrożenia bazy danych serwera</1> lub bezpośrednio korzystać z <3>LobeChat Cloud</3>",
|
|
@@ -61,12 +140,16 @@
|
|
|
61
140
|
"downloadFile": "Pobierz plik",
|
|
62
141
|
"unsupportedFileAndContact": "Ten format pliku nie jest obecnie obsługiwany w podglądzie online. Jeśli chcesz uzyskać podgląd, zachęcamy do <1>skontaktowania się z nami</1>."
|
|
63
142
|
},
|
|
143
|
+
"searchDocumentPlaceholder": "Szukaj dokumentu",
|
|
64
144
|
"searchFilePlaceholder": "Szukaj pliku",
|
|
65
145
|
"tab": {
|
|
66
|
-
"all": "
|
|
146
|
+
"all": "Wszystko",
|
|
67
147
|
"audios": "Audio",
|
|
68
148
|
"documents": "Dokumenty",
|
|
149
|
+
"home": "Strona główna",
|
|
69
150
|
"images": "Obrazy",
|
|
151
|
+
"moreTypes": "Więcej typów",
|
|
152
|
+
"pages": "Dokumenty",
|
|
70
153
|
"videos": "Wideo",
|
|
71
154
|
"websites": "Strony internetowe"
|
|
72
155
|
},
|
package/locales/pt-BR/file.json
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"addKnowledge": "Adicionar conhecimento",
|
|
3
|
+
"addPage": "Criar documento",
|
|
4
|
+
"desc": "Gerencie seus conhecimentos de trabalho, estudo e vida.",
|
|
3
5
|
"detail": {
|
|
4
6
|
"basic": {
|
|
5
7
|
"createdAt": "Data de criação",
|
|
@@ -21,6 +23,44 @@
|
|
|
21
23
|
"embeddingStatus": "Vetorização"
|
|
22
24
|
}
|
|
23
25
|
},
|
|
26
|
+
"documentEditor": {
|
|
27
|
+
"addIcon": "Adicionar ícone",
|
|
28
|
+
"autoSaveMessage": "O documento é salvo automaticamente, não é necessário salvar manualmente",
|
|
29
|
+
"chooseIcon": "Escolher ícone",
|
|
30
|
+
"deleteConfirm": {
|
|
31
|
+
"content": "Este documento será excluído permanentemente e não poderá ser recuperado. Por favor, tenha cuidado.",
|
|
32
|
+
"title": "Excluir documento"
|
|
33
|
+
},
|
|
34
|
+
"deleteError": "Falha ao excluir o documento",
|
|
35
|
+
"deleteSuccess": "Documento excluído com sucesso",
|
|
36
|
+
"editedAt": "Última edição em {{time}}",
|
|
37
|
+
"editedBy": "Última edição por {{name}}",
|
|
38
|
+
"editorPlaceholder": "Digite o conteúdo do documento, pressione / para abrir o menu de comandos",
|
|
39
|
+
"empty": {
|
|
40
|
+
"createNewDocument": "Criar novo documento",
|
|
41
|
+
"title": "Selecione um documento para começar",
|
|
42
|
+
"uploadMarkdown": "Carregar arquivo Markdown"
|
|
43
|
+
},
|
|
44
|
+
"linkCopied": "Link copiado",
|
|
45
|
+
"menu": {
|
|
46
|
+
"copyLink": "Copiar link",
|
|
47
|
+
"exportDocument": "Exportar documento",
|
|
48
|
+
"importDocument": "Importar documento",
|
|
49
|
+
"pin": "Fixar documento"
|
|
50
|
+
},
|
|
51
|
+
"saving": "Salvando...",
|
|
52
|
+
"titlePlaceholder": "Sem título",
|
|
53
|
+
"wordCount": "{{wordCount}} palavras"
|
|
54
|
+
},
|
|
55
|
+
"documentList": {
|
|
56
|
+
"copyContent": "Copiar conteúdo completo",
|
|
57
|
+
"documentCount": "Total de {{count}} documentos",
|
|
58
|
+
"duplicate": "Criar uma cópia",
|
|
59
|
+
"empty": "Nenhum documento disponível. Clique no botão acima para criar seu primeiro documento",
|
|
60
|
+
"noResults": "Nenhum documento correspondente encontrado",
|
|
61
|
+
"selectNote": "Selecione um documento para começar a editar",
|
|
62
|
+
"untitled": "Sem título"
|
|
63
|
+
},
|
|
24
64
|
"empty": "Nenhum arquivo/pasta enviado até o momento",
|
|
25
65
|
"header": {
|
|
26
66
|
"actions": {
|
|
@@ -28,8 +68,43 @@
|
|
|
28
68
|
"uploadFile": "Enviar arquivo",
|
|
29
69
|
"uploadFolder": "Enviar pasta"
|
|
30
70
|
},
|
|
71
|
+
"newDocumentButton": "Novo documento",
|
|
72
|
+
"newNoteDialog": {
|
|
73
|
+
"cancel": "Cancelar",
|
|
74
|
+
"editTitle": "Editar documento",
|
|
75
|
+
"emptyContent": "O conteúdo do documento não pode estar vazio",
|
|
76
|
+
"loadError": "Falha ao carregar o documento, tente novamente",
|
|
77
|
+
"loading": "Carregando...",
|
|
78
|
+
"save": "Salvar",
|
|
79
|
+
"saveError": "Falha ao salvar o documento, tente novamente",
|
|
80
|
+
"saveSuccess": "Documento salvo com sucesso",
|
|
81
|
+
"title": "Novo documento",
|
|
82
|
+
"updateSuccess": "Documento atualizado com sucesso"
|
|
83
|
+
},
|
|
31
84
|
"uploadButton": "Enviar"
|
|
32
85
|
},
|
|
86
|
+
"home": {
|
|
87
|
+
"getStarted": "Começar",
|
|
88
|
+
"greeting": "Início",
|
|
89
|
+
"quickActions": "Ações Rápidas",
|
|
90
|
+
"recentDocuments": "Documentos Recentes",
|
|
91
|
+
"recentFiles": "Arquivos Recentes",
|
|
92
|
+
"subtitle": "Bem-vindo ao seu repositório de conhecimento. Comece a gerenciar seus documentos aqui",
|
|
93
|
+
"uploadEntries": {
|
|
94
|
+
"files": {
|
|
95
|
+
"title": "Enviar Arquivos"
|
|
96
|
+
},
|
|
97
|
+
"folder": {
|
|
98
|
+
"title": "Enviar Pasta"
|
|
99
|
+
},
|
|
100
|
+
"knowledgeBase": {
|
|
101
|
+
"title": "Nova Base de Conhecimento"
|
|
102
|
+
},
|
|
103
|
+
"newDocument": {
|
|
104
|
+
"title": "Novo Documento"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
},
|
|
33
108
|
"knowledgeBase": {
|
|
34
109
|
"list": {
|
|
35
110
|
"confirmRemoveKnowledgeBase": "Você está prestes a excluir este repositório de conhecimento. Os arquivos não serão excluídos, mas serão movidos para 'Todos os arquivos'. Após a exclusão, o repositório não poderá ser recuperado, por favor, proceda com cautela.",
|
|
@@ -38,6 +113,10 @@
|
|
|
38
113
|
"new": "Novo repositório de conhecimento",
|
|
39
114
|
"title": "Repositório de conhecimento"
|
|
40
115
|
},
|
|
116
|
+
"menu": {
|
|
117
|
+
"allDocuments": "Todos os Documentos",
|
|
118
|
+
"allFiles": "Todos os arquivos"
|
|
119
|
+
},
|
|
41
120
|
"networkError": "Falha ao acessar a base de conhecimento, por favor verifique a conexão de rede e tente novamente",
|
|
42
121
|
"notSupportGuide": {
|
|
43
122
|
"desc": "A instância atual está no modo de banco de dados cliente e não pode usar a funcionalidade de gerenciamento de arquivos. Por favor, mude para <1>modo de banco de dados servidor</1>, ou use diretamente <3>LobeChat Cloud</3>",
|
|
@@ -61,12 +140,16 @@
|
|
|
61
140
|
"downloadFile": "Baixar arquivo",
|
|
62
141
|
"unsupportedFileAndContact": "Este formato de arquivo não é suportado para visualização online. Se você tiver interesse em visualizar, sinta-se à vontade para <1>nos enviar um feedback</1>."
|
|
63
142
|
},
|
|
143
|
+
"searchDocumentPlaceholder": "Pesquisar documentos",
|
|
64
144
|
"searchFilePlaceholder": "Pesquisar arquivo",
|
|
65
145
|
"tab": {
|
|
66
|
-
"all": "Todos
|
|
146
|
+
"all": "Todos",
|
|
67
147
|
"audios": "Áudios",
|
|
68
148
|
"documents": "Documentos",
|
|
149
|
+
"home": "Início",
|
|
69
150
|
"images": "Imagens",
|
|
151
|
+
"moreTypes": "Mais Tipos",
|
|
152
|
+
"pages": "Documentos",
|
|
70
153
|
"videos": "Vídeos",
|
|
71
154
|
"websites": "Sites"
|
|
72
155
|
},
|