feat(i18n): add doc_panel_annotate_hint message key in de/en/es, use in AnnotateHintStrip
Some checks failed
CI / Backend Unit Tests (pull_request) Has been cancelled
CI / Unit & Component Tests (pull_request) Has been cancelled
CI / Unit & Component Tests (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
CI / E2E Tests (pull_request) Has been cancelled
CI / Backend Unit Tests (push) Has been cancelled
Some checks failed
CI / Backend Unit Tests (pull_request) Has been cancelled
CI / Unit & Component Tests (pull_request) Has been cancelled
CI / Unit & Component Tests (push) Has been cancelled
CI / E2E Tests (push) Has been cancelled
CI / E2E Tests (pull_request) Has been cancelled
CI / Backend Unit Tests (push) Has been cancelled
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -321,6 +321,7 @@
|
|||||||
"doc_panel_tab_history": "Verlauf",
|
"doc_panel_tab_history": "Verlauf",
|
||||||
"doc_panel_annotate": "Annotieren",
|
"doc_panel_annotate": "Annotieren",
|
||||||
"doc_panel_annotate_stop": "Fertig",
|
"doc_panel_annotate_stop": "Fertig",
|
||||||
|
"doc_panel_annotate_hint": "Klicken und ziehen Sie, um einen Bereich zu markieren",
|
||||||
"doc_panel_annotation_thread_title": "Annotation",
|
"doc_panel_annotation_thread_title": "Annotation",
|
||||||
"doc_panel_discussion_annotation_tab": "Annotation · Seite {page}",
|
"doc_panel_discussion_annotation_tab": "Annotation · Seite {page}",
|
||||||
"pdf_annotations_show": "Annotierungen anzeigen",
|
"pdf_annotations_show": "Annotierungen anzeigen",
|
||||||
|
|||||||
@@ -321,6 +321,7 @@
|
|||||||
"doc_panel_tab_history": "History",
|
"doc_panel_tab_history": "History",
|
||||||
"doc_panel_annotate": "Annotate",
|
"doc_panel_annotate": "Annotate",
|
||||||
"doc_panel_annotate_stop": "Done",
|
"doc_panel_annotate_stop": "Done",
|
||||||
|
"doc_panel_annotate_hint": "Click and drag to mark an area",
|
||||||
"doc_panel_annotation_thread_title": "Annotation",
|
"doc_panel_annotation_thread_title": "Annotation",
|
||||||
"doc_panel_discussion_annotation_tab": "Annotation · Page {page}",
|
"doc_panel_discussion_annotation_tab": "Annotation · Page {page}",
|
||||||
"pdf_annotations_show": "Show annotations",
|
"pdf_annotations_show": "Show annotations",
|
||||||
|
|||||||
@@ -321,6 +321,7 @@
|
|||||||
"doc_panel_tab_history": "Historial",
|
"doc_panel_tab_history": "Historial",
|
||||||
"doc_panel_annotate": "Anotar",
|
"doc_panel_annotate": "Anotar",
|
||||||
"doc_panel_annotate_stop": "Listo",
|
"doc_panel_annotate_stop": "Listo",
|
||||||
|
"doc_panel_annotate_hint": "Haga clic y arrastre para marcar un área",
|
||||||
"doc_panel_annotation_thread_title": "Anotación",
|
"doc_panel_annotation_thread_title": "Anotación",
|
||||||
"doc_panel_discussion_annotation_tab": "Anotación · Página {page}",
|
"doc_panel_discussion_annotation_tab": "Anotación · Página {page}",
|
||||||
"pdf_annotations_show": "Mostrar anotaciones",
|
"pdf_annotations_show": "Mostrar anotaciones",
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
|
import { m } from '$lib/paraglide/messages.js';
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
annotateMode: boolean;
|
annotateMode: boolean;
|
||||||
};
|
};
|
||||||
@@ -12,7 +14,9 @@ let { annotateMode }: Props = $props();
|
|||||||
class="hidden h-[29px] items-center gap-2 border-t border-dashed px-3.5 md:flex"
|
class="hidden h-[29px] items-center gap-2 border-t border-dashed px-3.5 md:flex"
|
||||||
style="background: rgba(1,40,81,0.05); border-color: rgba(1,40,81,0.20)"
|
style="background: rgba(1,40,81,0.05); border-color: rgba(1,40,81,0.20)"
|
||||||
>
|
>
|
||||||
<span class="text-[16px] font-bold tracking-wide text-primary uppercase">Annotieren</span>
|
<span class="text-[16px] font-bold tracking-wide text-primary uppercase"
|
||||||
<span class="text-[16px] text-ink-2">Klicken Sie auf einen Bereich im Dokument</span>
|
>{m.doc_panel_annotate()}</span
|
||||||
|
>
|
||||||
|
<span class="text-[16px] text-ink-2">{m.doc_panel_annotate_hint()}</span>
|
||||||
</div>
|
</div>
|
||||||
{/if}
|
{/if}
|
||||||
|
|||||||
Reference in New Issue
Block a user