diff --git a/frontend/locales/de.json b/frontend/locales/de.json index 311ca16..a7c6bb0 100644 --- a/frontend/locales/de.json +++ b/frontend/locales/de.json @@ -20,7 +20,8 @@ "errors": { "note_to_big": "Notiz konnte nicht erstellt werden. Notiz ist zu groß", "note_error": "konnte keine Notiz erstellen. Bitte versuchen Sie es erneut." - } + }, + "copied_to_clipboard": "in die Zwischenablage kopiert 🔗" }, "show": { "errors": { diff --git a/frontend/locales/en.json b/frontend/locales/en.json index 47c31df..60741e6 100644 --- a/frontend/locales/en.json +++ b/frontend/locales/en.json @@ -20,7 +20,8 @@ "errors": { "note_to_big": "could not create note. note is to big", "note_error": "could not create note. please try again." - } + }, + "copied_to_clipboard": "copied to clipboard 🔗" }, "show": { "errors": { diff --git a/frontend/locales/es.json b/frontend/locales/es.json index 005cbc2..f2cf547 100644 --- a/frontend/locales/es.json +++ b/frontend/locales/es.json @@ -20,7 +20,8 @@ "errors": { "note_to_big": "no se pudo crear la nota. la nota es demasiado grande", "note_error": "No se ha podido crear la nota. Por favor, inténtelo de nuevo." - } + }, + "copied_to_clipboard": "copiado al portapapeles 🔗" }, "show": { "errors": { diff --git a/frontend/locales/fr.json b/frontend/locales/fr.json index 9e6d933..48f6d5d 100644 --- a/frontend/locales/fr.json +++ b/frontend/locales/fr.json @@ -20,7 +20,8 @@ "errors": { "note_to_big": "Impossible de créer une note. La note est trop grande", "note_error": "n'a pas pu créer de note. Veuillez réessayer." - } + }, + "copied_to_clipboard": "copié dans le presse-papiers 🔗" }, "show": { "errors": { diff --git a/frontend/locales/it.json b/frontend/locales/it.json index a46da1a..100355e 100644 --- a/frontend/locales/it.json +++ b/frontend/locales/it.json @@ -20,7 +20,8 @@ "errors": { "note_to_big": "impossibile creare una nota. la nota è troppo grande", "note_error": "Impossibile creare la nota. Riprova." - } + }, + "copied_to_clipboard": "copiato negli appunti 🔗" }, "show": { "errors": { diff --git a/frontend/src/lib/ui/TextInput.svelte b/frontend/src/lib/ui/TextInput.svelte index 4360f37..8f5fc7d 100644 --- a/frontend/src/lib/ui/TextInput.svelte +++ b/frontend/src/lib/ui/TextInput.svelte @@ -1,6 +1,8 @@