@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/pl.json
|
|
5
5
|
var AssistProgress = {
|
|
6
6
|
close: "Zamknij",
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
codeLoading: "Wczytywanie\u2026",
|
|
8
|
+
codeAnalyzing: "Oznaczanie\u2026",
|
|
9
|
+
codeAnalyzingTags: "Oznaczanie tag\xF3w\u2026",
|
|
10
|
+
codeDetectingEntities: "Oznaczanie\u2026",
|
|
11
|
+
codeCreatingAnnotations: "Tworzenie {{count}} adnotacji\u2026",
|
|
12
|
+
codeCreatingTagAnnotations: "Tworzenie {{count}} tag\xF3w\u2026",
|
|
13
|
+
codeCompleteCreated: "Utworzono {{count}} {{kind}}",
|
|
14
|
+
codeGeneratingResource: "Generowanie\u2026",
|
|
15
|
+
codeCreatingResource: "Tworzenie zasobu\u2026",
|
|
16
|
+
codeCompleteGenerated: "Utworzono zas\xF3b",
|
|
17
|
+
codeCompleteGeneratedTruncated: "Utworzono zas\xF3b \u2014 uci\u0119ty na limicie d\u0142ugo\u015Bci",
|
|
18
|
+
kindHighlight: "wyr\xF3\u017Cnie\u0144",
|
|
19
|
+
kindComment: "komentarzy",
|
|
20
|
+
kindAssessment: "ocen",
|
|
21
|
+
kindReference: "odniesie\u0144",
|
|
22
|
+
kindTag: "tag\xF3w",
|
|
23
|
+
subject: "{{kind}}: {{label}}",
|
|
24
|
+
subjectWithPosition: "{{kind}}: {{label}} ({{done}} z {{total}})",
|
|
25
|
+
paramEntityTypes: "Typy encji",
|
|
26
|
+
paramInstructions: "Instrukcje",
|
|
27
|
+
paramTone: "Ton",
|
|
28
|
+
paramDensity: "G\u0119sto\u015B\u0107",
|
|
29
|
+
subjectKindEntityType: "Typ encji",
|
|
30
|
+
subjectKindCategory: "Kategoria",
|
|
31
|
+
cancel: "Anuluj",
|
|
32
|
+
inProgress: "Adnotowanie..."
|
|
9
33
|
};
|
|
10
34
|
var PdfViewer = {
|
|
11
35
|
loadFailed: "Nie uda\u0142o si\u0119 za\u0142adowa\u0107 PDF",
|
|
@@ -66,7 +90,10 @@ var CollaborationPanel = {
|
|
|
66
90
|
realtimeActive: "Aktualizacje w czasie rzeczywistym s\u0105 aktywne",
|
|
67
91
|
reconnecting: "Ponowne \u0142\u0105czenie z serwerem...",
|
|
68
92
|
sharing: "Udost\u0119pnianie",
|
|
69
|
-
collaborationComingSoon: "Funkcje wsp\xF3\u0142pracy ju\u017C wkr\xF3tce"
|
|
93
|
+
collaborationComingSoon: "Funkcje wsp\xF3\u0142pracy ju\u017C wkr\xF3tce",
|
|
94
|
+
collaborators: "Wsp\xF3\u0142pracownicy",
|
|
95
|
+
ceilings: "{{contextTokens}} wej\u015Bcie / {{maxOutputTokens}} wyj\u015Bcie",
|
|
96
|
+
sharedWindow: "Okno {{contextTokens}}"
|
|
70
97
|
};
|
|
71
98
|
var AnnotationHistory = {
|
|
72
99
|
history: "Historia",
|
|
@@ -222,6 +249,7 @@ var ReferencesPanel = {
|
|
|
222
249
|
noIncomingReferences: "Brak referencji przychodz\u0105cych",
|
|
223
250
|
stub: "Referencja zast\u0119pcza (niepo\u0142\u0105czona)",
|
|
224
251
|
resolved: "Referencja rozwi\u0105zana (po\u0142\u0105czona)",
|
|
252
|
+
derived: "Pochodny",
|
|
225
253
|
open: "Otw\xF3rz",
|
|
226
254
|
unlink: "Od\u0142\u0105cz",
|
|
227
255
|
resolve: "Rozwi\u0105\u017C referencj\u0119",
|
|
@@ -229,7 +257,6 @@ var ReferencesPanel = {
|
|
|
229
257
|
createReference: "Utw\xF3rz referencj\u0119",
|
|
230
258
|
entityTypesOptional: "Typy encji (opcjonalne)",
|
|
231
259
|
fragmentSelected: "Fragment zaznaczony",
|
|
232
|
-
imageRegionSelected: "Region obrazu zaznaczony",
|
|
233
260
|
annotateReferences: "Adnotuj referencje",
|
|
234
261
|
selectEntityTypes: "Typy encji:",
|
|
235
262
|
select: "Zaznacz",
|
|
@@ -240,8 +267,6 @@ var ReferencesPanel = {
|
|
|
240
267
|
annotating: "Adnotowanie...",
|
|
241
268
|
includeDescriptiveReferences: "Uwzgl\u0119dnij referencje opisowe",
|
|
242
269
|
descriptiveReferencesTooltip: "Znajd\u017A r\xF3wnie\u017C wyra\u017Cenia takie jak 'dyrektor generalny', 'gigant technologiczny', 'fizyk' (opr\xF3cz nazw w\u0142asnych)",
|
|
243
|
-
annotationProgressTitle: "Adnotowanie referencji encji",
|
|
244
|
-
cancelAnnotation: "Anuluj adnotowanie",
|
|
245
270
|
found: "Znaleziono {{count}}",
|
|
246
271
|
complete: "Adnotowanie zako\u0144czone!",
|
|
247
272
|
failed: "Adnotowanie nie powiod\u0142o si\u0119",
|
|
@@ -356,19 +381,14 @@ var Settings = {
|
|
|
356
381
|
};
|
|
357
382
|
var AnnotateView = {};
|
|
358
383
|
var ResourceGenerate = {
|
|
359
|
-
gatherTitle: "Skonfiguruj zbieranie",
|
|
360
|
-
reviewTitle: "Przejrzyj kontekst",
|
|
361
|
-
configureTitle: "Skonfiguruj generowanie",
|
|
362
|
-
next: "Dalej",
|
|
363
|
-
back: "Wstecz",
|
|
364
|
-
cancel: "Anuluj",
|
|
365
384
|
gatherIntro: "Wybierz, co ma zosta\u0107 uwzgl\u0119dnione w zebranym kontek\u015Bcie.",
|
|
366
385
|
includeContent: "Uwzgl\u0119dnij tre\u015B\u0107 zasobu",
|
|
367
386
|
includeSummary: "Uwzgl\u0119dnij podsumowanie",
|
|
368
387
|
gatherDepth: "G\u0142\u0119boko\u015B\u0107",
|
|
369
388
|
gatherMaxResources: "Maksymalna liczba zasob\xF3w",
|
|
370
389
|
gatherButton: "Zbierz",
|
|
371
|
-
|
|
390
|
+
editGather: "Zmie\u0144 ustawienia zbierania",
|
|
391
|
+
recallLabel: "Uwzgl\u0119dnione w przywo\u0142ywaniu \u2014 odznacz, aby wykluczy\u0107",
|
|
372
392
|
loadingContext: "Zbieranie kontekstu...",
|
|
373
393
|
failedContext: "Nie uda\u0142o si\u0119 zebra\u0107 kontekstu",
|
|
374
394
|
sourceContextLabel: "Zas\xF3b",
|
|
@@ -386,17 +406,22 @@ var ResourceGenerate = {
|
|
|
386
406
|
maxLength: "Maksymalna d\u0142ugo\u015B\u0107",
|
|
387
407
|
maxLengthHelp: "Maksymalna liczba token\xF3w",
|
|
388
408
|
generate: "Generuj",
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
409
|
+
maxLengthCeiling: "Ograniczone do {{maxOutputTokens}} token\xF3w przez {{model}}.",
|
|
410
|
+
graphPaneTitle: "Otoczenie",
|
|
411
|
+
graphEmpty: "Brak powi\u0105za\u0144.",
|
|
412
|
+
resourceLinkLabel: "\u0141\u0105cze zasobu",
|
|
413
|
+
corpusPaneTitle: "Podobne fragmenty",
|
|
414
|
+
corpusEmpty: "Nie znaleziono podobnych fragment\xF3w.",
|
|
415
|
+
excludedReceipt: "{{types}} wykluczono z tego pobrania",
|
|
416
|
+
machineRead: "OCR",
|
|
417
|
+
score: "Wynik",
|
|
418
|
+
saveLocation: "Lokalizacja zapisu",
|
|
419
|
+
discardDraftPrompt: "Odrzuci\u0107 ten szkic?",
|
|
420
|
+
discardDraft: "Odrzu\u0107",
|
|
421
|
+
keepEditing: "Kontynuuj edycj\u0119",
|
|
422
|
+
title: "Generuj z tego zasobu"
|
|
394
423
|
};
|
|
395
424
|
var ReferenceWizard = {
|
|
396
|
-
gatherTitle: "Zebrany kontekst",
|
|
397
|
-
configureGenerationTitle: "Skonfiguruj generowanie",
|
|
398
|
-
configureSearchTitle: "Konfiguruj wyszukiwanie",
|
|
399
|
-
searchResultsTitle: "Wyniki wyszukiwania",
|
|
400
425
|
sourceContextLabel: "Kontekst adnotacji w zasobie",
|
|
401
426
|
connectionsLabel: "Adnotacje r\xF3wnorz\u0119dne",
|
|
402
427
|
citedByLabel: "Zas\xF3b cytowany przez",
|
|
@@ -404,7 +429,6 @@ var ReferenceWizard = {
|
|
|
404
429
|
userHintPlaceholder: "Opisz, do czego odnosi si\u0119 ta adnotacja...",
|
|
405
430
|
loadingContext: "Zbieranie kontekstu...",
|
|
406
431
|
failedContext: "Nie uda\u0142o si\u0119 zebra\u0107 kontekstu",
|
|
407
|
-
cancel: "Anuluj",
|
|
408
432
|
generate: "Generuj",
|
|
409
433
|
compose: "Komponuj",
|
|
410
434
|
resolutionStrategyLabel: "Strategia rozwi\u0105zywania",
|
|
@@ -427,7 +451,43 @@ var ReferenceWizard = {
|
|
|
427
451
|
semanticScoring: "Ocena semantyczna",
|
|
428
452
|
semanticScoringHelp: "U\u017Cyj AI do oceny wynik\xF3w wed\u0142ug semantycznego dopasowania",
|
|
429
453
|
searching: "Wyszukiwanie...",
|
|
430
|
-
|
|
454
|
+
searchFailed: "Wyszukiwanie nie powiod\u0142o si\u0119",
|
|
455
|
+
search: "Szukaj",
|
|
456
|
+
maxLengthCeiling: "Ograniczone do {{maxOutputTokens}} token\xF3w przez {{model}}.",
|
|
457
|
+
graphPaneTitle: "Otoczenie",
|
|
458
|
+
graphEmpty: "Brak powi\u0105za\u0144 \u2014 rozwi\u0105zanie tego odniesienia utworzy pierwsze.",
|
|
459
|
+
resourceLinkLabel: "\u0141\u0105cze zasobu",
|
|
460
|
+
corpusPaneTitle: "Podobne fragmenty",
|
|
461
|
+
corpusEmpty: "Nie znaleziono podobnych fragment\xF3w \u2014 wyszukiwanie raczej nic nie da.",
|
|
462
|
+
excludedReceipt: "{{types}} wykluczono z tego pobrania",
|
|
463
|
+
machineRead: "OCR",
|
|
464
|
+
userHintEffect: "kieruje wyszukiwaniem i generowaniem",
|
|
465
|
+
saveLocation: "Lokalizacja zapisu",
|
|
466
|
+
entityTypes: "Typy encji",
|
|
467
|
+
contentLabel: "Tre\u015B\u0107",
|
|
468
|
+
createAndLink: "Utw\xF3rz i po\u0142\u0105cz",
|
|
469
|
+
creatingAndLinking: "Tworzenie i \u0142\u0105czenie\u2026",
|
|
470
|
+
discardDraftPrompt: "Odrzuci\u0107 ten szkic?",
|
|
471
|
+
discardDraft: "Odrzu\u0107",
|
|
472
|
+
keepEditing: "Kontynuuj edycj\u0119",
|
|
473
|
+
resolveTitle: "Rozwi\u0105\u017C odwo\u0142anie"
|
|
474
|
+
};
|
|
475
|
+
var OutcomeToasts = {
|
|
476
|
+
createFailed: "Nie uda\u0142o si\u0119 utworzy\u0107 adnotacji: {{detail}}",
|
|
477
|
+
deleteFailed: "Nie uda\u0142o si\u0119 usun\u0105\u0107 adnotacji: {{detail}}",
|
|
478
|
+
referenceUpdateFailed: "Nie uda\u0142o si\u0119 zaktualizowa\u0107 odniesienia: {{detail}}",
|
|
479
|
+
unknownError: "nieznany b\u0142\u0105d",
|
|
480
|
+
assistQuiet: "Nadal trwa \u2014 brak aktualizacji od kilku minut",
|
|
481
|
+
resourceCreatedNamed: "Utworzono \u201E{{name}}\u201D",
|
|
482
|
+
resourceCreated: "Zas\xF3b utworzony",
|
|
483
|
+
annotationComplete: "Adnotacje uko\u0144czone",
|
|
484
|
+
annotationFailed: "Adnotacja nie powiod\u0142a si\u0119",
|
|
485
|
+
generationFailed: "Generowanie nie powiod\u0142o si\u0119: {{detail}}",
|
|
486
|
+
"decline_no-text-layer": "Ten PDF to skan, kt\xF3rego tekstu nie rozpoznano.",
|
|
487
|
+
decline_encrypted: "Ten PDF jest chroniony has\u0142em, tekstu nie mo\u017Cna odczyta\u0107.",
|
|
488
|
+
decline_corrupt: "Nie uda\u0142o si\u0119 odczyta\u0107 tego PDF-a \u2014 plik mo\u017Ce by\u0107 uszkodzony.",
|
|
489
|
+
"decline_too-large": "Ten dokument jest zbyt du\u017Cy, aby wyodr\u0119bni\u0107 tekst.",
|
|
490
|
+
decline_empty: "Ten dokument nie zawiera tekstu do adnotacji."
|
|
431
491
|
};
|
|
432
492
|
var pl_default = {
|
|
433
493
|
AssistProgress,
|
|
@@ -450,7 +510,8 @@ var pl_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
|
pl_default as default
|
|
478
540
|
};
|
|
479
|
-
//# sourceMappingURL=pl-
|
|
541
|
+
//# sourceMappingURL=pl-LUHBLTHB.js.map
|
|
@@ -4,8 +4,32 @@ import "./chunk-O23TLLXW.js";
|
|
|
4
4
|
// translations/pt.json
|
|
5
5
|
var AssistProgress = {
|
|
6
6
|
close: "Fechar",
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
codeLoading: "A carregar\u2026",
|
|
8
|
+
codeAnalyzing: "A anotar\u2026",
|
|
9
|
+
codeAnalyzingTags: "A anotar etiquetas\u2026",
|
|
10
|
+
codeDetectingEntities: "A anotar\u2026",
|
|
11
|
+
codeCreatingAnnotations: "A criar {{count}} anota\xE7\xF5es\u2026",
|
|
12
|
+
codeCreatingTagAnnotations: "A criar {{count}} etiquetas\u2026",
|
|
13
|
+
codeCompleteCreated: "{{count}} {{kind}} criados",
|
|
14
|
+
codeGeneratingResource: "A gerar\u2026",
|
|
15
|
+
codeCreatingResource: "A criar o recurso\u2026",
|
|
16
|
+
codeCompleteGenerated: "Recurso criado",
|
|
17
|
+
codeCompleteGeneratedTruncated: "Recurso criado \u2014 cortado no limite de comprimento",
|
|
18
|
+
kindHighlight: "destaques",
|
|
19
|
+
kindComment: "coment\xE1rios",
|
|
20
|
+
kindAssessment: "avalia\xE7\xF5es",
|
|
21
|
+
kindReference: "refer\xEAncias",
|
|
22
|
+
kindTag: "etiquetas",
|
|
23
|
+
subject: "{{kind}}: {{label}}",
|
|
24
|
+
subjectWithPosition: "{{kind}}: {{label}} ({{done}} de {{total}})",
|
|
25
|
+
paramEntityTypes: "Tipos de Entidade",
|
|
26
|
+
paramInstructions: "Instru\xE7\xF5es",
|
|
27
|
+
paramTone: "Tom",
|
|
28
|
+
paramDensity: "Densidade",
|
|
29
|
+
subjectKindEntityType: "Tipo de entidade",
|
|
30
|
+
subjectKindCategory: "Categoria",
|
|
31
|
+
cancel: "Cancelar",
|
|
32
|
+
inProgress: "Anotando..."
|
|
9
33
|
};
|
|
10
34
|
var PdfViewer = {
|
|
11
35
|
loadFailed: "Falha ao carregar o PDF",
|
|
@@ -66,7 +90,10 @@ var CollaborationPanel = {
|
|
|
66
90
|
realtimeActive: "Atualiza\xE7\xF5es em tempo real est\xE3o ativas",
|
|
67
91
|
reconnecting: "Reconectando ao servidor...",
|
|
68
92
|
sharing: "Compartilhamento",
|
|
69
|
-
collaborationComingSoon: "Recursos de colabora\xE7\xE3o em breve"
|
|
93
|
+
collaborationComingSoon: "Recursos de colabora\xE7\xE3o em breve",
|
|
94
|
+
collaborators: "Colaboradores",
|
|
95
|
+
ceilings: "{{contextTokens}} entrada / {{maxOutputTokens}} sa\xEDda",
|
|
96
|
+
sharedWindow: "Janela de {{contextTokens}}"
|
|
70
97
|
};
|
|
71
98
|
var AnnotationHistory = {
|
|
72
99
|
history: "Hist\xF3rico",
|
|
@@ -222,6 +249,7 @@ var ReferencesPanel = {
|
|
|
222
249
|
noIncomingReferences: "Nenhuma refer\xEAncia de entrada",
|
|
223
250
|
stub: "Refer\xEAncia pendente (n\xE3o vinculada)",
|
|
224
251
|
resolved: "Refer\xEAncia resolvida (vinculada)",
|
|
252
|
+
derived: "Derivado",
|
|
225
253
|
open: "Abrir",
|
|
226
254
|
unlink: "Desvincular",
|
|
227
255
|
resolve: "Resolver refer\xEAncia",
|
|
@@ -229,7 +257,6 @@ var ReferencesPanel = {
|
|
|
229
257
|
createReference: "Criar Refer\xEAncia",
|
|
230
258
|
entityTypesOptional: "Tipos de Entidade (Opcional)",
|
|
231
259
|
fragmentSelected: "Fragmento selecionado",
|
|
232
|
-
imageRegionSelected: "Regi\xE3o da imagem selecionada",
|
|
233
260
|
annotateReferences: "Anotar Refer\xEAncias",
|
|
234
261
|
selectEntityTypes: "Tipos de entidade:",
|
|
235
262
|
select: "Selecionar",
|
|
@@ -240,8 +267,6 @@ var ReferencesPanel = {
|
|
|
240
267
|
annotating: "Anotando...",
|
|
241
268
|
includeDescriptiveReferences: "Incluir refer\xEAncias descritivas",
|
|
242
269
|
descriptiveReferencesTooltip: "Tamb\xE9m encontrar frases como 'o CEO', 'a gigante da tecnologia', 'o f\xEDsico' (al\xE9m dos nomes)",
|
|
243
|
-
annotationProgressTitle: "Anotando Refer\xEAncias de Entidades",
|
|
244
|
-
cancelAnnotation: "Cancelar anota\xE7\xE3o",
|
|
245
270
|
found: "{{count}} encontrados",
|
|
246
271
|
complete: "Anota\xE7\xE3o conclu\xEDda!",
|
|
247
272
|
failed: "Anota\xE7\xE3o falhou",
|
|
@@ -356,19 +381,14 @@ var Settings = {
|
|
|
356
381
|
};
|
|
357
382
|
var AnnotateView = {};
|
|
358
383
|
var ResourceGenerate = {
|
|
359
|
-
gatherTitle: "Configurar Coleta",
|
|
360
|
-
reviewTitle: "Revisar Contexto",
|
|
361
|
-
configureTitle: "Configurar Gera\xE7\xE3o",
|
|
362
|
-
next: "Pr\xF3ximo",
|
|
363
|
-
back: "Voltar",
|
|
364
|
-
cancel: "Cancelar",
|
|
365
384
|
gatherIntro: "Escolha o que incluir no contexto coletado.",
|
|
366
385
|
includeContent: "Incluir conte\xFAdo do recurso",
|
|
367
386
|
includeSummary: "Incluir resumo",
|
|
368
387
|
gatherDepth: "Profundidade",
|
|
369
388
|
gatherMaxResources: "Recursos M\xE1ximos",
|
|
370
389
|
gatherButton: "Coletar",
|
|
371
|
-
|
|
390
|
+
editGather: "Alterar as configura\xE7\xF5es de coleta",
|
|
391
|
+
recallLabel: "Inclu\xEDdos na recupera\xE7\xE3o \u2014 desmarque para excluir",
|
|
372
392
|
loadingContext: "Coletando contexto...",
|
|
373
393
|
failedContext: "Falha ao coletar contexto",
|
|
374
394
|
sourceContextLabel: "Recurso",
|
|
@@ -386,17 +406,22 @@ var ResourceGenerate = {
|
|
|
386
406
|
maxLength: "Comprimento M\xE1ximo",
|
|
387
407
|
maxLengthHelp: "N\xFAmero m\xE1ximo de tokens",
|
|
388
408
|
generate: "Gerar",
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
409
|
+
maxLengthCeiling: "Limitado a {{maxOutputTokens}} tokens por {{model}}.",
|
|
410
|
+
graphPaneTitle: "Vizinhan\xE7a",
|
|
411
|
+
graphEmpty: "Ainda sem liga\xE7\xF5es.",
|
|
412
|
+
resourceLinkLabel: "Link de recurso",
|
|
413
|
+
corpusPaneTitle: "Passagens semelhantes",
|
|
414
|
+
corpusEmpty: "Nenhuma passagem semelhante encontrada.",
|
|
415
|
+
excludedReceipt: "{{types}} exclu\xEDdos desta recupera\xE7\xE3o",
|
|
416
|
+
machineRead: "OCR",
|
|
417
|
+
score: "Pontua\xE7\xE3o",
|
|
418
|
+
saveLocation: "Local de salvamento",
|
|
419
|
+
discardDraftPrompt: "Descartar este rascunho?",
|
|
420
|
+
discardDraft: "Descartar",
|
|
421
|
+
keepEditing: "Continuar editando",
|
|
422
|
+
title: "Gerar a partir deste recurso"
|
|
394
423
|
};
|
|
395
424
|
var ReferenceWizard = {
|
|
396
|
-
gatherTitle: "Contexto Coletado",
|
|
397
|
-
configureGenerationTitle: "Configurar Gera\xE7\xE3o",
|
|
398
|
-
configureSearchTitle: "Configurar pesquisa",
|
|
399
|
-
searchResultsTitle: "Resultados da pesquisa",
|
|
400
425
|
sourceContextLabel: "Contexto da anota\xE7\xE3o no recurso",
|
|
401
426
|
connectionsLabel: "Anota\xE7\xF5es de pares",
|
|
402
427
|
citedByLabel: "Recurso citado por",
|
|
@@ -404,7 +429,6 @@ var ReferenceWizard = {
|
|
|
404
429
|
userHintPlaceholder: "Descreva a que esta anota\xE7\xE3o se refere...",
|
|
405
430
|
loadingContext: "Coletando contexto...",
|
|
406
431
|
failedContext: "Falha ao coletar contexto",
|
|
407
|
-
cancel: "Cancelar",
|
|
408
432
|
generate: "Gerar",
|
|
409
433
|
compose: "Compor",
|
|
410
434
|
resolutionStrategyLabel: "Estrat\xE9gia de resolu\xE7\xE3o",
|
|
@@ -427,7 +451,43 @@ var ReferenceWizard = {
|
|
|
427
451
|
semanticScoring: "Pontua\xE7\xE3o Sem\xE2ntica",
|
|
428
452
|
semanticScoringHelp: "Usar IA para pontuar resultados por relev\xE2ncia sem\xE2ntica",
|
|
429
453
|
searching: "Pesquisando...",
|
|
430
|
-
|
|
454
|
+
searchFailed: "Falha na pesquisa",
|
|
455
|
+
search: "Pesquisar",
|
|
456
|
+
maxLengthCeiling: "Limitado a {{maxOutputTokens}} tokens por {{model}}.",
|
|
457
|
+
graphPaneTitle: "Vizinhan\xE7a",
|
|
458
|
+
graphEmpty: "Ainda sem liga\xE7\xF5es \u2014 resolver esta refer\xEAncia cria a primeira.",
|
|
459
|
+
resourceLinkLabel: "Link de recurso",
|
|
460
|
+
corpusPaneTitle: "Passagens semelhantes",
|
|
461
|
+
corpusEmpty: "Nenhuma passagem semelhante encontrada \u2014 \xE9 improv\xE1vel que a pesquisa tenha \xEAxito.",
|
|
462
|
+
excludedReceipt: "{{types}} exclu\xEDdos desta recupera\xE7\xE3o",
|
|
463
|
+
machineRead: "OCR",
|
|
464
|
+
userHintEffect: "orienta a busca e a gera\xE7\xE3o",
|
|
465
|
+
saveLocation: "Local de salvamento",
|
|
466
|
+
entityTypes: "Tipos de entidade",
|
|
467
|
+
contentLabel: "Conte\xFAdo",
|
|
468
|
+
createAndLink: "Criar e vincular",
|
|
469
|
+
creatingAndLinking: "Criando e vinculando\u2026",
|
|
470
|
+
discardDraftPrompt: "Descartar este rascunho?",
|
|
471
|
+
discardDraft: "Descartar",
|
|
472
|
+
keepEditing: "Continuar editando",
|
|
473
|
+
resolveTitle: "Resolver refer\xEAncia"
|
|
474
|
+
};
|
|
475
|
+
var OutcomeToasts = {
|
|
476
|
+
createFailed: "N\xE3o foi poss\xEDvel criar a anota\xE7\xE3o: {{detail}}",
|
|
477
|
+
deleteFailed: "N\xE3o foi poss\xEDvel eliminar a anota\xE7\xE3o: {{detail}}",
|
|
478
|
+
referenceUpdateFailed: "N\xE3o foi poss\xEDvel atualizar a refer\xEAncia: {{detail}}",
|
|
479
|
+
unknownError: "erro desconhecido",
|
|
480
|
+
assistQuiet: "Ainda a trabalhar \u2014 sem novidades h\xE1 alguns minutos",
|
|
481
|
+
resourceCreatedNamed: "\u201C{{name}}\u201D criado",
|
|
482
|
+
resourceCreated: "Recurso criado",
|
|
483
|
+
annotationComplete: "Anota\xE7\xE3o conclu\xEDda",
|
|
484
|
+
annotationFailed: "A anota\xE7\xE3o falhou",
|
|
485
|
+
generationFailed: "A gera\xE7\xE3o falhou: {{detail}}",
|
|
486
|
+
"decline_no-text-layer": "Este PDF \xE9 uma digitaliza\xE7\xE3o cujo texto n\xE3o foi reconhecido.",
|
|
487
|
+
decline_encrypted: "Este PDF est\xE1 protegido por palavra-passe e o texto n\xE3o pode ser lido.",
|
|
488
|
+
decline_corrupt: "N\xE3o foi poss\xEDvel ler este PDF \u2014 o ficheiro pode estar danificado.",
|
|
489
|
+
"decline_too-large": "Este documento \xE9 demasiado grande para extrair texto.",
|
|
490
|
+
decline_empty: "Este documento n\xE3o tem texto para anotar."
|
|
431
491
|
};
|
|
432
492
|
var pt_default = {
|
|
433
493
|
AssistProgress,
|
|
@@ -450,7 +510,8 @@ var pt_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
|
pt_default as default
|
|
478
540
|
};
|
|
479
|
-
//# sourceMappingURL=pt-
|
|
541
|
+
//# sourceMappingURL=pt-C4H3UNQ6.js.map
|
|
@@ -4,8 +4,32 @@ import "./chunk-O23TLLXW.js";
|
|
|
4
4
|
// translations/ro.json
|
|
5
5
|
var AssistProgress = {
|
|
6
6
|
close: "\xCEnchide",
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
codeLoading: "Se \xEEncarc\u0103\u2026",
|
|
8
|
+
codeAnalyzing: "Se marcheaz\u0103\u2026",
|
|
9
|
+
codeAnalyzingTags: "Se marcheaz\u0103 etichetele\u2026",
|
|
10
|
+
codeDetectingEntities: "Se marcheaz\u0103\u2026",
|
|
11
|
+
codeCreatingAnnotations: "Se creeaz\u0103 {{count}} adnot\u0103ri\u2026",
|
|
12
|
+
codeCreatingTagAnnotations: "Se creeaz\u0103 {{count}} etichete\u2026",
|
|
13
|
+
codeCompleteCreated: "S-au creat {{count}} {{kind}}",
|
|
14
|
+
codeGeneratingResource: "Se genereaz\u0103\u2026",
|
|
15
|
+
codeCreatingResource: "Se creeaz\u0103 resursa\u2026",
|
|
16
|
+
codeCompleteGenerated: "Resursa a fost creat\u0103",
|
|
17
|
+
codeCompleteGeneratedTruncated: "Resursa a fost creat\u0103 \u2014 trunchiat\u0103 la limita de lungime",
|
|
18
|
+
kindHighlight: "eviden\u021Bieri",
|
|
19
|
+
kindComment: "comentarii",
|
|
20
|
+
kindAssessment: "evalu\u0103ri",
|
|
21
|
+
kindReference: "referin\u021Be",
|
|
22
|
+
kindTag: "etichete",
|
|
23
|
+
subject: "{{kind}}: {{label}}",
|
|
24
|
+
subjectWithPosition: "{{kind}}: {{label}} ({{done}} din {{total}})",
|
|
25
|
+
paramEntityTypes: "Tipuri de entitate",
|
|
26
|
+
paramInstructions: "Instruc\u021Biuni",
|
|
27
|
+
paramTone: "Ton",
|
|
28
|
+
paramDensity: "Densitate",
|
|
29
|
+
subjectKindEntityType: "Tip de entitate",
|
|
30
|
+
subjectKindCategory: "Categorie",
|
|
31
|
+
cancel: "Anulare",
|
|
32
|
+
inProgress: "Se adnoteaz\u0103..."
|
|
9
33
|
};
|
|
10
34
|
var PdfViewer = {
|
|
11
35
|
loadFailed: "\xCEnc\u0103rcarea PDF-ului a e\u0219uat",
|
|
@@ -66,7 +90,10 @@ var CollaborationPanel = {
|
|
|
66
90
|
realtimeActive: "Actualiz\u0103rile \xEEn timp real sunt active",
|
|
67
91
|
reconnecting: "Se reconecteaz\u0103 la server...",
|
|
68
92
|
sharing: "Partajare",
|
|
69
|
-
collaborationComingSoon: "Func\u021Biile de colaborare vor fi disponibile \xEEn cur\xE2nd"
|
|
93
|
+
collaborationComingSoon: "Func\u021Biile de colaborare vor fi disponibile \xEEn cur\xE2nd",
|
|
94
|
+
collaborators: "Colaboratori",
|
|
95
|
+
ceilings: "{{contextTokens}} intrare / {{maxOutputTokens}} ie\u0219ire",
|
|
96
|
+
sharedWindow: "Fereastr\u0103 de {{contextTokens}}"
|
|
70
97
|
};
|
|
71
98
|
var AnnotationHistory = {
|
|
72
99
|
history: "Istoric",
|
|
@@ -222,6 +249,7 @@ var ReferencesPanel = {
|
|
|
222
249
|
noIncomingReferences: "Nicio referin\u021B\u0103 de intrare",
|
|
223
250
|
stub: "Referin\u021B\u0103 provizorie (nelegat\u0103)",
|
|
224
251
|
resolved: "Referin\u021B\u0103 rezolvat\u0103 (legat\u0103)",
|
|
252
|
+
derived: "Derivat",
|
|
225
253
|
open: "Deschide",
|
|
226
254
|
unlink: "Deconecteaz\u0103",
|
|
227
255
|
resolve: "Rezolv\u0103 referin\u021Ba",
|
|
@@ -229,7 +257,6 @@ var ReferencesPanel = {
|
|
|
229
257
|
createReference: "Creeaz\u0103 referin\u021B\u0103",
|
|
230
258
|
entityTypesOptional: "Tipuri de entitate (op\u021Bional)",
|
|
231
259
|
fragmentSelected: "Fragment selectat",
|
|
232
|
-
imageRegionSelected: "Regiune de imagine selectat\u0103",
|
|
233
260
|
annotateReferences: "Adnoteaz\u0103 referin\u021Be",
|
|
234
261
|
selectEntityTypes: "Tipuri de entitate:",
|
|
235
262
|
select: "Selecteaz\u0103",
|
|
@@ -240,8 +267,6 @@ var ReferencesPanel = {
|
|
|
240
267
|
annotating: "Se adnoteaz\u0103...",
|
|
241
268
|
includeDescriptiveReferences: "Include referin\u021Be descriptive",
|
|
242
269
|
descriptiveReferencesTooltip: "G\u0103se\u0219te \u0219i expresii precum 'directorul general', 'gigantul tehnologic', 'fizicianul' (pe l\xE2ng\u0103 nume)",
|
|
243
|
-
annotationProgressTitle: "Se adnoteaz\u0103 referin\u021Bele entit\u0103\u021Bilor",
|
|
244
|
-
cancelAnnotation: "Anuleaz\u0103 adnotarea",
|
|
245
270
|
found: "{{count}} g\u0103site",
|
|
246
271
|
complete: "Adnotare complet\u0103!",
|
|
247
272
|
failed: "Adnotarea a e\u0219uat",
|
|
@@ -356,19 +381,14 @@ var Settings = {
|
|
|
356
381
|
};
|
|
357
382
|
var AnnotateView = {};
|
|
358
383
|
var ResourceGenerate = {
|
|
359
|
-
gatherTitle: "Configurare Colectare",
|
|
360
|
-
reviewTitle: "Revizuire Context",
|
|
361
|
-
configureTitle: "Configurare Generare",
|
|
362
|
-
next: "Urm\u0103torul",
|
|
363
|
-
back: "\xCEnapoi",
|
|
364
|
-
cancel: "Anulare",
|
|
365
384
|
gatherIntro: "Alege ce s\u0103 incluzi \xEEn contextul colectat.",
|
|
366
385
|
includeContent: "Include con\u021Binutul resursei",
|
|
367
386
|
includeSummary: "Include rezumatul",
|
|
368
387
|
gatherDepth: "Ad\xE2ncime",
|
|
369
388
|
gatherMaxResources: "Resurse Maxime",
|
|
370
389
|
gatherButton: "Colecteaz\u0103",
|
|
371
|
-
|
|
390
|
+
editGather: "Modifica\u021Bi set\u0103rile de colectare",
|
|
391
|
+
recallLabel: "Incluse \xEEn recuperare \u2014 deselecta\u021Bi pentru a exclude",
|
|
372
392
|
loadingContext: "Se colecteaz\u0103 contextul...",
|
|
373
393
|
failedContext: "Colectarea contextului a e\u0219uat",
|
|
374
394
|
sourceContextLabel: "Resurs\u0103",
|
|
@@ -386,17 +406,22 @@ var ResourceGenerate = {
|
|
|
386
406
|
maxLength: "Lungime Maxim\u0103",
|
|
387
407
|
maxLengthHelp: "Num\u0103r maxim de jetoane",
|
|
388
408
|
generate: "Genereaz\u0103",
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
409
|
+
maxLengthCeiling: "Limitat la {{maxOutputTokens}} tokenuri de {{model}}.",
|
|
410
|
+
graphPaneTitle: "Vecin\u0103tate",
|
|
411
|
+
graphEmpty: "\xCEnc\u0103 f\u0103r\u0103 leg\u0103turi.",
|
|
412
|
+
resourceLinkLabel: "Leg\u0103tur\u0103 c\u0103tre resurs\u0103",
|
|
413
|
+
corpusPaneTitle: "Pasaje similare",
|
|
414
|
+
corpusEmpty: "Nu s-au g\u0103sit pasaje similare.",
|
|
415
|
+
excludedReceipt: "{{types}} excluse din aceast\u0103 reg\u0103sire",
|
|
416
|
+
machineRead: "OCR",
|
|
417
|
+
score: "Scor",
|
|
418
|
+
saveLocation: "Loca\u021Bia salv\u0103rii",
|
|
419
|
+
discardDraftPrompt: "Renun\u021Bi la aceast\u0103 ciorn\u0103?",
|
|
420
|
+
discardDraft: "Renun\u021B\u0103",
|
|
421
|
+
keepEditing: "Continu\u0103 editarea",
|
|
422
|
+
title: "Genereaz\u0103 din aceast\u0103 resurs\u0103"
|
|
394
423
|
};
|
|
395
424
|
var ReferenceWizard = {
|
|
396
|
-
gatherTitle: "Context Colectat",
|
|
397
|
-
configureGenerationTitle: "Configurare Generare",
|
|
398
|
-
configureSearchTitle: "Configurare c\u0103utare",
|
|
399
|
-
searchResultsTitle: "Rezultatele c\u0103ut\u0103rii",
|
|
400
425
|
sourceContextLabel: "Contextul adnot\u0103rii \xEEn resurs\u0103",
|
|
401
426
|
connectionsLabel: "Adnot\u0103ri similare",
|
|
402
427
|
citedByLabel: "Resurs\u0103 citat\u0103 de",
|
|
@@ -404,7 +429,6 @@ var ReferenceWizard = {
|
|
|
404
429
|
userHintPlaceholder: "Descrie\u021Bi la ce se refer\u0103 aceast\u0103 adnotare...",
|
|
405
430
|
loadingContext: "Se colecteaz\u0103 contextul...",
|
|
406
431
|
failedContext: "Colectarea contextului a e\u0219uat",
|
|
407
|
-
cancel: "Anulare",
|
|
408
432
|
generate: "Genereaz\u0103",
|
|
409
433
|
compose: "Compune",
|
|
410
434
|
resolutionStrategyLabel: "Strategie de rezolu\u021Bie",
|
|
@@ -427,7 +451,43 @@ var ReferenceWizard = {
|
|
|
427
451
|
semanticScoring: "Evaluare Semantic\u0103",
|
|
428
452
|
semanticScoringHelp: "Folosi\u021Bi AI pentru a evalua rezultatele dup\u0103 relevan\u021Ba semantic\u0103",
|
|
429
453
|
searching: "Se caut\u0103...",
|
|
430
|
-
|
|
454
|
+
searchFailed: "C\u0103utarea a e\u0219uat",
|
|
455
|
+
search: "Caut\u0103",
|
|
456
|
+
maxLengthCeiling: "Limitat la {{maxOutputTokens}} tokenuri de {{model}}.",
|
|
457
|
+
graphPaneTitle: "Vecin\u0103tate",
|
|
458
|
+
graphEmpty: "\xCEnc\u0103 f\u0103r\u0103 leg\u0103turi \u2014 rezolvarea acestei referin\u021Be o creeaz\u0103 pe prima.",
|
|
459
|
+
resourceLinkLabel: "Leg\u0103tur\u0103 c\u0103tre resurs\u0103",
|
|
460
|
+
corpusPaneTitle: "Pasaje similare",
|
|
461
|
+
corpusEmpty: "Nu s-au g\u0103sit pasaje similare \u2014 c\u0103utarea are \u0219anse mici de reu\u0219it\u0103.",
|
|
462
|
+
excludedReceipt: "{{types}} excluse din aceast\u0103 reg\u0103sire",
|
|
463
|
+
machineRead: "OCR",
|
|
464
|
+
userHintEffect: "ghideaz\u0103 c\u0103utarea \u0219i generarea",
|
|
465
|
+
saveLocation: "Loca\u021Bia salv\u0103rii",
|
|
466
|
+
entityTypes: "Tipuri de entit\u0103\u021Bi",
|
|
467
|
+
contentLabel: "Con\u021Binut",
|
|
468
|
+
createAndLink: "Creeaz\u0103 \u0219i leag\u0103",
|
|
469
|
+
creatingAndLinking: "Se creeaz\u0103 \u0219i se leag\u0103\u2026",
|
|
470
|
+
discardDraftPrompt: "Renun\u021Bi la aceast\u0103 ciorn\u0103?",
|
|
471
|
+
discardDraft: "Renun\u021B\u0103",
|
|
472
|
+
keepEditing: "Continu\u0103 editarea",
|
|
473
|
+
resolveTitle: "Rezolv\u0103 referin\u021Ba"
|
|
474
|
+
};
|
|
475
|
+
var OutcomeToasts = {
|
|
476
|
+
createFailed: "Nu s-a putut crea adnotarea: {{detail}}",
|
|
477
|
+
deleteFailed: "Nu s-a putut \u0219terge adnotarea: {{detail}}",
|
|
478
|
+
referenceUpdateFailed: "Nu s-a putut actualiza referin\u021Ba: {{detail}}",
|
|
479
|
+
unknownError: "eroare necunoscut\u0103",
|
|
480
|
+
assistQuiet: "\xCEnc\u0103 lucreaz\u0103 \u2014 nicio actualizare de c\xE2teva minute",
|
|
481
|
+
resourceCreatedNamed: "\u201E{{name}}\u201D creat",
|
|
482
|
+
resourceCreated: "Resurs\u0103 creat\u0103",
|
|
483
|
+
annotationComplete: "Adnotare finalizat\u0103",
|
|
484
|
+
annotationFailed: "Adnotarea a e\u0219uat",
|
|
485
|
+
generationFailed: "Generarea a e\u0219uat: {{detail}}",
|
|
486
|
+
"decline_no-text-layer": "Acest PDF este o scanare al c\u0103rei text nu a putut fi recunoscut.",
|
|
487
|
+
decline_encrypted: "Acest PDF este protejat prin parol\u0103, textul nu poate fi citit.",
|
|
488
|
+
decline_corrupt: "Acest PDF nu a putut fi citit \u2014 fi\u0219ierul poate fi deteriorat.",
|
|
489
|
+
"decline_too-large": "Acest document este prea mare pentru extragerea textului.",
|
|
490
|
+
decline_empty: "Acest document nu are text de adnotat."
|
|
431
491
|
};
|
|
432
492
|
var ro_default = {
|
|
433
493
|
AssistProgress,
|
|
@@ -450,7 +510,8 @@ var ro_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
|
ro_default as default
|
|
478
540
|
};
|
|
479
|
-
//# sourceMappingURL=ro-
|
|
541
|
+
//# sourceMappingURL=ro-GGITS5V4.js.map
|