@semiont/react-ui 0.5.26 → 0.5.28
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/README.md +28 -4
- package/dist/{PdfAnnotationCanvas.client-6ZSF6ZTJ.js → PdfAnnotationCanvas.client-C2IGG4SW.js} +33 -6
- package/dist/{PdfAnnotationCanvas.client-JCJMXWWJ.css → PdfAnnotationCanvas.client-TGDPPGXJ.css} +6 -1
- package/dist/{ar-YTUUGK2O.js → ar-FABPTJVB.js} +88 -26
- package/dist/{bn-ASGNGPMD.js → bn-LKP6BDMH.js} +88 -26
- package/dist/{chunk-L3WKRWP3.js → chunk-2GOHTTHW.js} +88 -26
- package/dist/{chunk-OBQOZCJE.js → chunk-2YHEE63S.js} +31 -31
- package/dist/{cs-WMYVAOZY.js → cs-YQYNWHRG.js} +88 -26
- package/dist/{da-FSHHN4D6.js → da-QHZOYKRY.js} +88 -26
- package/dist/{de-FJFO3TPT.js → de-GKA7RD7J.js} +88 -26
- package/dist/{el-XOH4QIAG.js → el-45T257AL.js} +88 -26
- package/dist/{en-3FCBW3YD.js → en-RVW5EQ66.js} +4 -2
- package/dist/{es-HDX4QI7E.js → es-AVER7RU4.js} +88 -26
- package/dist/{fa-DJ6WTFTJ.js → fa-K3VPK3O2.js} +88 -26
- package/dist/{fi-4S7H7W7U.js → fi-5NEKF7EB.js} +88 -26
- package/dist/{fr-6UJSYHXC.js → fr-FUMNDLBZ.js} +88 -26
- package/dist/{he-ZZJOHJX2.js → he-3JGNA3PR.js} +88 -26
- package/dist/{hi-HZJTAW7U.js → hi-IJY375DF.js} +88 -26
- package/dist/{id-E3I6ILEM.js → id-LWHKJ7ZD.js} +88 -26
- package/dist/index.css +380 -524
- package/dist/index.d.ts +318 -192
- package/dist/index.js +2960 -2421
- package/dist/integrations/css-modules-helper.js +1 -3
- package/dist/{it-ULAPAD7U.js → it-EBVOV4RW.js} +88 -26
- package/dist/{ja-SAHZQ4CZ.js → ja-KWRIX2NF.js} +88 -26
- package/dist/{ko-DFU2ADQ4.js → ko-L5CJMFDS.js} +88 -26
- package/dist/{ms-NWL76XNT.js → ms-LSNMJDR2.js} +88 -26
- package/dist/{nl-ATCM76WN.js → nl-ZB32MB7U.js} +88 -26
- package/dist/{no-UIAQ5RJF.js → no-4GTNY7M5.js} +88 -26
- package/dist/{pl-NOECQDXD.js → pl-LUHBLTHB.js} +88 -26
- package/dist/{pt-SVWIIUPC.js → pt-C4H3UNQ6.js} +88 -26
- package/dist/{ro-NR2DRTZG.js → ro-GGITS5V4.js} +88 -26
- package/dist/{sv-STVJ37JP.js → sv-T56RTLBP.js} +88 -26
- package/dist/test-utils.css +1 -1
- package/dist/test-utils.d.ts +1 -1
- package/dist/test-utils.js +2 -2
- package/dist/{th-UWQR4K54.js → th-22X2IWCB.js} +88 -26
- package/dist/{tr-WNXZSD27.js → tr-77TFG62H.js} +88 -26
- package/dist/{uk-SJRMB47Y.js → uk-MIIL6NXT.js} +88 -26
- package/dist/{vi-TMRQFES2.js → vi-7JYOIGNV.js} +88 -26
- package/dist/{zh-QOL3LYEM.js → zh-ID6DRYU4.js} +88 -26
- package/package.json +11 -10
- package/src/components/AssistProgress.tsx +178 -134
- package/src/components/CodeMirrorRenderer.tsx +8 -8
- package/src/components/{EntityFoundLog.tsx → ItemFoundLog.tsx} +12 -7
- package/src/components/ProtectedErrorBoundary.css +3 -1
- package/src/components/StatusDisplay.css +1 -1
- package/src/components/Toast.css +3 -1
- package/src/components/__tests__/AssistProgress.test.tsx +268 -141
- package/src/components/annotation/annotation-entries.css +0 -4
- package/src/components/annotation/references.css +0 -4
- package/src/components/image-annotation/AnnotationOverlay.tsx +6 -6
- package/src/components/image-annotation/SvgDrawingCanvas.tsx +1 -1
- package/src/components/image-annotation/__tests__/AnnotationOverlay.click.test.tsx +7 -9
- package/src/components/image-annotation/__tests__/SvgDrawingCanvas.click.test.tsx +1 -2
- package/src/components/layout/Header.css +0 -4
- package/src/components/layout/LeftSidebar.css +0 -4
- package/src/components/modals/ComposeStep.tsx +218 -0
- package/src/components/modals/ConfigureGatherStep.tsx +10 -18
- package/src/components/modals/ConfigureGenerationStep.tsx +131 -54
- package/src/components/modals/ConfigureSearchStep.tsx +42 -40
- package/src/components/modals/ContextSummary.tsx +185 -72
- package/src/components/modals/CorpusPane.tsx +75 -0
- package/src/components/modals/DiscardPrompt.tsx +38 -0
- package/src/components/modals/GatherContextStep.tsx +237 -107
- package/src/components/modals/ReferenceWizardModal.tsx +287 -60
- package/src/components/modals/ResourceGenerateModal.tsx +233 -109
- package/src/components/modals/SearchModal.css +335 -111
- package/src/components/modals/SearchModal.tsx +1 -1
- package/src/components/modals/SearchResultsStep.tsx +63 -88
- package/src/components/modals/WizardFooter.tsx +69 -0
- package/src/components/modals/__tests__/ComposeStep.test.tsx +152 -0
- package/src/components/modals/__tests__/ConfigureGatherStep.test.tsx +14 -26
- package/src/components/modals/__tests__/ConfigureGenerationStep.test.tsx +290 -0
- package/src/components/modals/__tests__/ConfigureSearchStep.test.tsx +95 -0
- package/src/components/modals/__tests__/GatherContextStep.resource.test.tsx +463 -25
- package/src/components/modals/__tests__/ReferenceWizardModal.test.tsx +635 -0
- package/src/components/modals/__tests__/ResourceGenerateModal.test.tsx +277 -85
- package/src/components/modals/__tests__/SearchModal.search-wiring.test.tsx +6 -2
- package/src/components/modals/__tests__/SearchResultsStep.test.tsx +61 -0
- package/src/components/modals/__tests__/WizardFooter.test.tsx +344 -0
- package/src/components/modals/modals.css +16 -42
- package/src/components/navigation/NavigationTabs.css +0 -20
- package/src/components/pdf-annotation/PdfAnnotationCanvas.css +21 -2
- package/src/components/pdf-annotation/PdfAnnotationCanvas.tsx +36 -3
- package/src/components/pdf-annotation/__tests__/PdfAnnotationCanvas.test.tsx +41 -6
- package/src/components/resource/AnnotateView.tsx +19 -8
- package/src/components/resource/AnnotationHistory.tsx +2 -0
- package/src/components/resource/BrowseView.tsx +20 -9
- package/src/components/resource/ResourceViewer.tsx +27 -28
- package/src/components/resource/__tests__/AnnotateView.embeddable.test.tsx +1 -1
- package/src/components/resource/__tests__/AnnotateView.focus.test.tsx +50 -0
- package/src/components/resource/__tests__/AnnotationHistory.test.tsx +2 -0
- package/src/components/resource/__tests__/BrowseView.embeddable.test.tsx +1 -1
- package/src/components/resource/__tests__/BrowseView.test.tsx +38 -12
- package/src/components/resource/__tests__/ResourceViewer.embeddable.test.tsx +47 -3
- package/src/components/resource/annotate-renderers.tsx +3 -3
- package/src/components/resource/event-formatting.ts +0 -3
- package/src/components/resource/panels/AssessmentEntry.tsx +1 -1
- package/src/components/resource/panels/AssessmentPanel.css +5 -6
- package/src/components/resource/panels/AssistSection.css +95 -263
- package/src/components/resource/panels/AssistSection.tsx +4 -4
- package/src/components/resource/panels/AssistShell.tsx +12 -4
- package/src/components/resource/panels/CollaborationPanel.css +47 -22
- package/src/components/resource/panels/CollaborationPanel.tsx +93 -2
- package/src/components/resource/panels/CommentEntry.tsx +1 -1
- package/src/components/resource/panels/CommentsPanel.css +0 -16
- package/src/components/resource/panels/HighlightEntry.tsx +1 -1
- package/src/components/resource/panels/HighlightPanel.css +0 -7
- package/src/components/resource/panels/JsonLdPanel.css +0 -4
- package/src/components/resource/panels/ReferenceEntry.tsx +10 -3
- package/src/components/resource/panels/ReferencesPanel.css +0 -12
- package/src/components/resource/panels/ReferencesPanel.tsx +16 -20
- package/src/components/resource/panels/ResourceInfoPanel.css +0 -32
- package/src/components/resource/panels/ResourceInfoPanel.tsx +89 -20
- package/src/components/resource/panels/StatisticsPanel.css +0 -20
- package/src/components/resource/panels/TagEntry.tsx +1 -1
- package/src/components/resource/panels/TaggingPanel.css +0 -4
- package/src/components/resource/panels/TaggingPanel.tsx +2 -10
- package/src/components/resource/panels/UnifiedAnnotationsPanel.css +0 -4
- package/src/components/resource/panels/UnifiedAnnotationsPanel.tsx +7 -2
- package/src/components/resource/panels/__tests__/AssessmentEntry.test.tsx +0 -1
- package/src/components/resource/panels/__tests__/AssistSection.test.tsx +48 -50
- package/src/components/resource/panels/__tests__/AssistShell.test.tsx +11 -6
- package/src/components/resource/panels/__tests__/CollaborationPanel.test.tsx +89 -0
- package/src/components/resource/panels/__tests__/CommentEntry.test.tsx +1 -2
- package/src/components/resource/panels/__tests__/HighlightEntry.test.tsx +0 -1
- package/src/components/resource/panels/__tests__/HighlightPanel.annotationProgress.test.tsx +44 -36
- package/src/components/resource/panels/__tests__/ReferenceEntry.test.tsx +41 -1
- package/src/components/resource/panels/__tests__/ReferencesPanel.headless.test.tsx +1 -1
- package/src/components/resource/panels/__tests__/ReferencesPanel.test.tsx +67 -54
- package/src/components/resource/panels/__tests__/ResourceInfoPanel.test.tsx +185 -7
- package/src/components/resource/panels/__tests__/TagEntry.test.tsx +0 -1
- package/src/components/settings/SettingsPanel.css +0 -4
- package/src/features/auth/auth.css +2 -26
- package/src/features/resource-compose/__tests__/ResourceComposePage.test.tsx +0 -65
- package/src/features/resource-compose/components/ResourceComposePage.tsx +17 -130
- package/src/features/resource-compose/state/__tests__/compose-page-state-unit.test.ts +1 -76
- package/src/features/resource-compose/state/compose-page-state-unit.ts +5 -48
- package/src/features/resource-discovery/__tests__/ResourceDiscoveryPage.test.tsx +55 -0
- package/src/features/resource-discovery/components/ResourceDiscoveryPage.tsx +29 -0
- package/src/features/resource-discovery/state/__tests__/discover-state-unit.test.ts +53 -3
- package/src/features/resource-discovery/state/discover-state-unit.ts +29 -8
- package/src/features/resource-viewer/__tests__/ResourceViewerPage.test.tsx +71 -15
- package/src/features/resource-viewer/components/ResourceViewerPage.tsx +166 -71
- package/src/features/resource-viewer/hooks/__tests__/useResourceViewedReport.test.tsx +63 -0
- package/src/features/resource-viewer/hooks/useResourceViewedReport.ts +33 -0
- package/src/features/resource-viewer/state/__tests__/resource-viewer-page-state-unit.test.ts +2 -2
- package/src/features/resource-viewer/state/resource-viewer-page-state-unit.ts +1 -1
- package/src/styles/core/buttons.css +3 -1
- package/src/styles/core/forms.css +35 -29
- package/src/styles/core/indicators.css +0 -4
- package/src/styles/core/inputs.css +0 -4
- package/src/styles/core/progress.css +2 -34
- package/src/styles/core/sliders.css +0 -4
- package/src/styles/core/toggles.css +0 -4
- package/src/styles/features/resource-discovery.css +13 -0
- package/src/styles/features/resource-viewer.css +0 -42
- package/src/styles/features/resource.css +0 -4
- package/src/styles/motivations/motivation-assessment.css +2 -2
- package/src/styles/panels/history-panel.css +0 -40
- package/src/styles/panels/user-panel.css +0 -3
- package/src/styles/patterns/panel-helpers.css +0 -27
- package/src/styles/patterns/panel-sections.css +0 -59
- package/src/styles/patterns/panels-base.css +0 -32
- package/translations/ar.json +84 -24
- package/translations/bn.json +84 -24
- package/translations/cs.json +84 -24
- package/translations/da.json +84 -24
- package/translations/de.json +84 -24
- package/translations/el.json +84 -24
- package/translations/en.json +84 -24
- package/translations/es.json +84 -24
- package/translations/fa.json +84 -24
- package/translations/fi.json +84 -24
- package/translations/fr.json +84 -24
- package/translations/he.json +84 -24
- package/translations/hi.json +84 -24
- package/translations/id.json +84 -24
- package/translations/it.json +84 -24
- package/translations/ja.json +84 -24
- package/translations/ko.json +84 -24
- package/translations/ms.json +84 -24
- package/translations/nl.json +84 -24
- package/translations/no.json +84 -24
- package/translations/pl.json +84 -24
- package/translations/pt.json +84 -24
- package/translations/ro.json +84 -24
- package/translations/sv.json +84 -24
- package/translations/th.json +84 -24
- package/translations/tr.json +84 -24
- package/translations/uk.json +84 -24
- package/translations/vi.json +84 -24
- package/translations/zh.json +84 -24
- package/dist/PdfAnnotationCanvas.client-6ZSF6ZTJ.js.map +0 -1
- package/dist/PdfAnnotationCanvas.client-JCJMXWWJ.css.map +0 -1
- package/dist/ar-YTUUGK2O.js.map +0 -1
- package/dist/bn-ASGNGPMD.js.map +0 -1
- package/dist/chunk-BTUG3VJJ.js.map +0 -1
- package/dist/chunk-L3WKRWP3.js.map +0 -1
- package/dist/chunk-O23TLLXW.js.map +0 -1
- package/dist/chunk-OBQOZCJE.js.map +0 -1
- package/dist/chunk-QT7LYM72.js.map +0 -1
- package/dist/chunk-VXASXU4K.js.map +0 -1
- package/dist/chunk-XUDKYAVC.js +0 -21
- package/dist/chunk-XUDKYAVC.js.map +0 -1
- package/dist/cs-WMYVAOZY.js.map +0 -1
- package/dist/da-FSHHN4D6.js.map +0 -1
- package/dist/de-FJFO3TPT.js.map +0 -1
- package/dist/el-XOH4QIAG.js.map +0 -1
- package/dist/en-3FCBW3YD.js.map +0 -1
- package/dist/es-HDX4QI7E.js.map +0 -1
- package/dist/fa-DJ6WTFTJ.js.map +0 -1
- package/dist/fi-4S7H7W7U.js.map +0 -1
- package/dist/fr-6UJSYHXC.js.map +0 -1
- package/dist/he-ZZJOHJX2.js.map +0 -1
- package/dist/hi-HZJTAW7U.js.map +0 -1
- package/dist/id-E3I6ILEM.js.map +0 -1
- package/dist/index.css.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/integrations/css-modules-helper.js.map +0 -1
- package/dist/integrations/styled-components-theme.js.map +0 -1
- package/dist/it-ULAPAD7U.js.map +0 -1
- package/dist/ja-SAHZQ4CZ.js.map +0 -1
- package/dist/ko-DFU2ADQ4.js.map +0 -1
- package/dist/ms-NWL76XNT.js.map +0 -1
- package/dist/nl-ATCM76WN.js.map +0 -1
- package/dist/no-UIAQ5RJF.js.map +0 -1
- package/dist/pl-NOECQDXD.js.map +0 -1
- package/dist/pt-SVWIIUPC.js.map +0 -1
- package/dist/ro-NR2DRTZG.js.map +0 -1
- package/dist/sv-STVJ37JP.js.map +0 -1
- package/dist/test-utils.css.map +0 -1
- package/dist/test-utils.js.map +0 -1
- package/dist/th-UWQR4K54.js.map +0 -1
- package/dist/tr-WNXZSD27.js.map +0 -1
- package/dist/uk-SJRMB47Y.js.map +0 -1
- package/dist/vi-TMRQFES2.js.map +0 -1
- package/dist/zh-QOL3LYEM.js.map +0 -1
- package/src/components/modals/ResourceSearchModal.tsx +0 -224
- package/src/components/modals/__tests__/ResourceSearchModal.test.tsx +0 -159
- package/src/integrations/tailwind-plugin.cjs +0 -224
|
@@ -4,8 +4,32 @@ import "./chunk-O23TLLXW.js";
|
|
|
4
4
|
// translations/id.json
|
|
5
5
|
var AssistProgress = {
|
|
6
6
|
close: "Tutup",
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
codeLoading: "Memuat\u2026",
|
|
8
|
+
codeAnalyzing: "Menandai\u2026",
|
|
9
|
+
codeAnalyzingTags: "Menandai tag\u2026",
|
|
10
|
+
codeDetectingEntities: "Menandai\u2026",
|
|
11
|
+
codeCreatingAnnotations: "Membuat {{count}} anotasi\u2026",
|
|
12
|
+
codeCreatingTagAnnotations: "Membuat {{count}} tag\u2026",
|
|
13
|
+
codeCompleteCreated: "{{count}} {{kind}} dibuat",
|
|
14
|
+
codeGeneratingResource: "Membuat\u2026",
|
|
15
|
+
codeCreatingResource: "Membuat sumber daya\u2026",
|
|
16
|
+
codeCompleteGenerated: "Sumber daya dibuat",
|
|
17
|
+
codeCompleteGeneratedTruncated: "Sumber daya dibuat \u2014 terpotong pada batas panjang",
|
|
18
|
+
kindHighlight: "sorotan",
|
|
19
|
+
kindComment: "komentar",
|
|
20
|
+
kindAssessment: "penilaian",
|
|
21
|
+
kindReference: "referensi",
|
|
22
|
+
kindTag: "tag",
|
|
23
|
+
subject: "{{kind}}: {{label}}",
|
|
24
|
+
subjectWithPosition: "{{kind}}: {{label}} ({{done}} dari {{total}})",
|
|
25
|
+
paramEntityTypes: "Tipe Entitas",
|
|
26
|
+
paramInstructions: "Instruksi",
|
|
27
|
+
paramTone: "Nada",
|
|
28
|
+
paramDensity: "Kepadatan",
|
|
29
|
+
subjectKindEntityType: "Tipe entitas",
|
|
30
|
+
subjectKindCategory: "Kategori",
|
|
31
|
+
cancel: "Batal",
|
|
32
|
+
inProgress: "Menganotasi..."
|
|
9
33
|
};
|
|
10
34
|
var PdfViewer = {
|
|
11
35
|
loadFailed: "Gagal memuat PDF",
|
|
@@ -66,7 +90,10 @@ var CollaborationPanel = {
|
|
|
66
90
|
realtimeActive: "Pembaruan waktu nyata aktif",
|
|
67
91
|
reconnecting: "Menghubungkan kembali ke server...",
|
|
68
92
|
sharing: "Berbagi",
|
|
69
|
-
collaborationComingSoon: "Fitur kolaborasi segera hadir"
|
|
93
|
+
collaborationComingSoon: "Fitur kolaborasi segera hadir",
|
|
94
|
+
collaborators: "Kolaborator",
|
|
95
|
+
ceilings: "{{contextTokens}} masuk / {{maxOutputTokens}} keluar",
|
|
96
|
+
sharedWindow: "Jendela {{contextTokens}}"
|
|
70
97
|
};
|
|
71
98
|
var AnnotationHistory = {
|
|
72
99
|
history: "Riwayat",
|
|
@@ -222,6 +249,7 @@ var ReferencesPanel = {
|
|
|
222
249
|
noIncomingReferences: "Tidak ada referensi masuk",
|
|
223
250
|
stub: "Referensi rintisan (tidak ditautkan)",
|
|
224
251
|
resolved: "Referensi terselesaikan (ditautkan)",
|
|
252
|
+
derived: "Turunan",
|
|
225
253
|
open: "Buka",
|
|
226
254
|
unlink: "Putuskan Tautan",
|
|
227
255
|
resolve: "Selesaikan referensi",
|
|
@@ -229,7 +257,6 @@ var ReferencesPanel = {
|
|
|
229
257
|
createReference: "Buat Referensi",
|
|
230
258
|
entityTypesOptional: "Tipe Entitas (Opsional)",
|
|
231
259
|
fragmentSelected: "Fragmen dipilih",
|
|
232
|
-
imageRegionSelected: "Wilayah gambar dipilih",
|
|
233
260
|
annotateReferences: "Anotasi Referensi",
|
|
234
261
|
selectEntityTypes: "Tipe entitas:",
|
|
235
262
|
select: "Pilih",
|
|
@@ -240,8 +267,6 @@ var ReferencesPanel = {
|
|
|
240
267
|
annotating: "Menganotasi...",
|
|
241
268
|
includeDescriptiveReferences: "Sertakan referensi deskriptif",
|
|
242
269
|
descriptiveReferencesTooltip: "Juga temukan frasa seperti 'sang CEO', 'raksasa teknologi', 'sang fisikawan' (selain nama)",
|
|
243
|
-
annotationProgressTitle: "Menganotasi Referensi Entitas",
|
|
244
|
-
cancelAnnotation: "Batalkan anotasi",
|
|
245
270
|
found: "{{count}} ditemukan",
|
|
246
271
|
complete: "Anotasi selesai!",
|
|
247
272
|
failed: "Anotasi gagal",
|
|
@@ -356,19 +381,14 @@ var Settings = {
|
|
|
356
381
|
};
|
|
357
382
|
var AnnotateView = {};
|
|
358
383
|
var ResourceGenerate = {
|
|
359
|
-
gatherTitle: "Konfigurasi Pengumpulan",
|
|
360
|
-
reviewTitle: "Tinjau Konteks",
|
|
361
|
-
configureTitle: "Konfigurasi Generasi",
|
|
362
|
-
next: "Berikutnya",
|
|
363
|
-
back: "Kembali",
|
|
364
|
-
cancel: "Batal",
|
|
365
384
|
gatherIntro: "Pilih apa yang akan disertakan dalam konteks yang dikumpulkan.",
|
|
366
385
|
includeContent: "Sertakan konten sumber daya",
|
|
367
386
|
includeSummary: "Sertakan ringkasan",
|
|
368
387
|
gatherDepth: "Kedalaman",
|
|
369
388
|
gatherMaxResources: "Sumber Daya Maksimum",
|
|
370
389
|
gatherButton: "Kumpulkan",
|
|
371
|
-
|
|
390
|
+
editGather: "Ubah pengaturan pengumpulan",
|
|
391
|
+
recallLabel: "Termasuk dalam pemanggilan \u2014 batalkan pilihan untuk mengecualikan",
|
|
372
392
|
loadingContext: "Mengumpulkan konteks...",
|
|
373
393
|
failedContext: "Gagal mengumpulkan konteks",
|
|
374
394
|
sourceContextLabel: "Sumber Daya",
|
|
@@ -386,17 +406,22 @@ var ResourceGenerate = {
|
|
|
386
406
|
maxLength: "Panjang Maksimum",
|
|
387
407
|
maxLengthHelp: "Jumlah token maksimum",
|
|
388
408
|
generate: "Hasilkan",
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
409
|
+
maxLengthCeiling: "Dibatasi hingga {{maxOutputTokens}} token oleh {{model}}.",
|
|
410
|
+
graphPaneTitle: "Lingkungan sekitar",
|
|
411
|
+
graphEmpty: "Belum ada tautan.",
|
|
412
|
+
resourceLinkLabel: "Tautan sumber daya",
|
|
413
|
+
corpusPaneTitle: "Bagian serupa",
|
|
414
|
+
corpusEmpty: "Tidak ditemukan bagian serupa.",
|
|
415
|
+
excludedReceipt: "{{types}} dikecualikan dari pengambilan ini",
|
|
416
|
+
machineRead: "OCR",
|
|
417
|
+
score: "Skor",
|
|
418
|
+
saveLocation: "Lokasi penyimpanan",
|
|
419
|
+
discardDraftPrompt: "Buang draf ini?",
|
|
420
|
+
discardDraft: "Buang",
|
|
421
|
+
keepEditing: "Lanjutkan menyunting",
|
|
422
|
+
title: "Hasilkan dari sumber ini"
|
|
394
423
|
};
|
|
395
424
|
var ReferenceWizard = {
|
|
396
|
-
gatherTitle: "Konteks Terkumpul",
|
|
397
|
-
configureGenerationTitle: "Konfigurasi Generasi",
|
|
398
|
-
configureSearchTitle: "Konfigurasi pencarian",
|
|
399
|
-
searchResultsTitle: "Hasil pencarian",
|
|
400
425
|
sourceContextLabel: "Konteks anotasi dalam sumber daya",
|
|
401
426
|
connectionsLabel: "Anotasi sejawat",
|
|
402
427
|
citedByLabel: "Sumber daya dikutip oleh",
|
|
@@ -404,7 +429,6 @@ var ReferenceWizard = {
|
|
|
404
429
|
userHintPlaceholder: "Jelaskan apa yang dirujuk anotasi ini...",
|
|
405
430
|
loadingContext: "Mengumpulkan konteks...",
|
|
406
431
|
failedContext: "Gagal mengumpulkan konteks",
|
|
407
|
-
cancel: "Batal",
|
|
408
432
|
generate: "Hasilkan",
|
|
409
433
|
compose: "Susun",
|
|
410
434
|
resolutionStrategyLabel: "Strategi resolusi",
|
|
@@ -427,7 +451,43 @@ var ReferenceWizard = {
|
|
|
427
451
|
semanticScoring: "Penilaian Semantik",
|
|
428
452
|
semanticScoringHelp: "Gunakan AI untuk menilai hasil berdasarkan relevansi semantik",
|
|
429
453
|
searching: "Mencari...",
|
|
430
|
-
|
|
454
|
+
searchFailed: "Pencarian gagal",
|
|
455
|
+
search: "Cari",
|
|
456
|
+
maxLengthCeiling: "Dibatasi hingga {{maxOutputTokens}} token oleh {{model}}.",
|
|
457
|
+
graphPaneTitle: "Lingkungan sekitar",
|
|
458
|
+
graphEmpty: "Belum ada tautan \u2014 menyelesaikan referensi ini membuat yang pertama.",
|
|
459
|
+
resourceLinkLabel: "Tautan sumber daya",
|
|
460
|
+
corpusPaneTitle: "Bagian serupa",
|
|
461
|
+
corpusEmpty: "Tidak ditemukan bagian serupa \u2014 pencarian kemungkinan tidak membuahkan hasil.",
|
|
462
|
+
excludedReceipt: "{{types}} dikecualikan dari pengambilan ini",
|
|
463
|
+
machineRead: "OCR",
|
|
464
|
+
userHintEffect: "mengarahkan pencarian dan pembuatan",
|
|
465
|
+
saveLocation: "Lokasi penyimpanan",
|
|
466
|
+
entityTypes: "Jenis entitas",
|
|
467
|
+
contentLabel: "Konten",
|
|
468
|
+
createAndLink: "Buat & Tautkan",
|
|
469
|
+
creatingAndLinking: "Membuat & menautkan\u2026",
|
|
470
|
+
discardDraftPrompt: "Buang draf ini?",
|
|
471
|
+
discardDraft: "Buang",
|
|
472
|
+
keepEditing: "Lanjutkan menyunting",
|
|
473
|
+
resolveTitle: "Selesaikan referensi"
|
|
474
|
+
};
|
|
475
|
+
var OutcomeToasts = {
|
|
476
|
+
createFailed: "Tidak dapat membuat anotasi: {{detail}}",
|
|
477
|
+
deleteFailed: "Tidak dapat menghapus anotasi: {{detail}}",
|
|
478
|
+
referenceUpdateFailed: "Tidak dapat memperbarui referensi: {{detail}}",
|
|
479
|
+
unknownError: "kesalahan tidak diketahui",
|
|
480
|
+
assistQuiet: "Masih berjalan \u2014 tidak ada kabar selama beberapa menit",
|
|
481
|
+
resourceCreatedNamed: "\u201C{{name}}\u201D dibuat",
|
|
482
|
+
resourceCreated: "Sumber daya dibuat",
|
|
483
|
+
annotationComplete: "Anotasi selesai",
|
|
484
|
+
annotationFailed: "Anotasi gagal",
|
|
485
|
+
generationFailed: "Pembuatan gagal: {{detail}}",
|
|
486
|
+
"decline_no-text-layer": "PDF ini hasil pindaian yang teksnya tidak dapat dikenali.",
|
|
487
|
+
decline_encrypted: "PDF ini dilindungi kata sandi, teksnya tidak dapat dibaca.",
|
|
488
|
+
decline_corrupt: "PDF ini tidak dapat dibaca \u2014 berkas mungkin rusak.",
|
|
489
|
+
"decline_too-large": "Dokumen ini terlalu besar untuk diekstrak teksnya.",
|
|
490
|
+
decline_empty: "Dokumen ini tidak memiliki teks untuk dianotasi."
|
|
431
491
|
};
|
|
432
492
|
var id_default = {
|
|
433
493
|
AssistProgress,
|
|
@@ -450,7 +510,8 @@ var id_default = {
|
|
|
450
510
|
Settings,
|
|
451
511
|
AnnotateView,
|
|
452
512
|
ResourceGenerate,
|
|
453
|
-
ReferenceWizard
|
|
513
|
+
ReferenceWizard,
|
|
514
|
+
OutcomeToasts
|
|
454
515
|
};
|
|
455
516
|
export {
|
|
456
517
|
AnnotateToolbar,
|
|
@@ -463,6 +524,7 @@ export {
|
|
|
463
524
|
CommentsPanel,
|
|
464
525
|
HighlightPanel,
|
|
465
526
|
KeyboardShortcuts,
|
|
527
|
+
OutcomeToasts,
|
|
466
528
|
PdfViewer,
|
|
467
529
|
ReferenceWizard,
|
|
468
530
|
ReferencesPanel,
|
|
@@ -476,4 +538,4 @@ export {
|
|
|
476
538
|
UnifiedAnnotationsPanel,
|
|
477
539
|
id_default as default
|
|
478
540
|
};
|
|
479
|
-
//# sourceMappingURL=id-
|
|
541
|
+
//# sourceMappingURL=id-LWHKJ7ZD.js.map
|