From a3c9c1c09debcb50028d1b4fe9e57da63061b981 Mon Sep 17 00:00:00 2001 From: Henrik Askjer <henrik.askjer@uib.no> Date: Thu, 18 Nov 2021 15:57:13 +0100 Subject: [PATCH] change notification text --- src/components/ArticleFooter.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/ArticleFooter.vue b/src/components/ArticleFooter.vue index 5984e4a..5a0d46d 100644 --- a/src/components/ArticleFooter.vue +++ b/src/components/ArticleFooter.vue @@ -5,7 +5,7 @@ v-model='copy_popup' timeout="2000"> - <span class="text-center">{{what_copied}} kopiert til utklippstavla</span> + <span class="text-center">{{what_copied}} er kopiert til utklippstavla</span> <template v-slot:action="{ attrs }"> <v-btn color="primary" @@ -106,7 +106,7 @@ export default { }, copy_link() { navigator.clipboard.writeText(this.create_link()); - this.what_copied = "Lenke" + this.what_copied = "Lenka" this.copy_popup = true }, @@ -115,7 +115,7 @@ export default { let citation = document.getElementById("citation").textContent; navigator.clipboard.writeText(citation) this.citation_dialog = false - this.what_copied = "Sitering" + this.what_copied = "Siteringa" this.copy_popup = true }, -- GitLab