diff --git a/frontend/messages/de.json b/frontend/messages/de.json index 20dba446..c2f33689 100644 --- a/frontend/messages/de.json +++ b/frontend/messages/de.json @@ -321,6 +321,7 @@ "comment_btn_post": "Senden", "comment_btn_reply": "Antworten", "comment_edited_label": "(Bearbeitet)", + "comment_edit_hint": "Enter speichern · Esc abbrechen", "comment_time_just_now": "gerade eben", "comment_time_minutes": "vor {count} Minute(n)", "comment_time_hours": "vor {count} Stunde(n)", diff --git a/frontend/messages/en.json b/frontend/messages/en.json index 901adb29..c7f784a5 100644 --- a/frontend/messages/en.json +++ b/frontend/messages/en.json @@ -321,6 +321,7 @@ "comment_btn_post": "Send", "comment_btn_reply": "Reply", "comment_edited_label": "(Edited)", + "comment_edit_hint": "Enter to save · Esc to cancel", "comment_time_just_now": "just now", "comment_time_minutes": "{count} minute(s) ago", "comment_time_hours": "{count} hour(s) ago", diff --git a/frontend/messages/es.json b/frontend/messages/es.json index 53d4f1a0..2e06e421 100644 --- a/frontend/messages/es.json +++ b/frontend/messages/es.json @@ -321,6 +321,7 @@ "comment_btn_post": "Enviar", "comment_btn_reply": "Responder", "comment_edited_label": "(Editado)", + "comment_edit_hint": "Enter para guardar · Esc para cancelar", "comment_time_just_now": "justo ahora", "comment_time_minutes": "hace {count} minuto(s)", "comment_time_hours": "hace {count} hora(s)", diff --git a/frontend/src/lib/components/CommentMessage.svelte b/frontend/src/lib/components/CommentMessage.svelte index f32e7d7d..f1171448 100644 --- a/frontend/src/lib/components/CommentMessage.svelte +++ b/frontend/src/lib/components/CommentMessage.svelte @@ -70,7 +70,7 @@ const parsed = $derived(extractQuote(message.content)); oninput={(e) => onEditTextChange((e.currentTarget as HTMLTextAreaElement).value)} onkeydown={onEditKeydown} > -