diff --git a/src/components/ArticleFooter.vue b/src/components/ArticleFooter.vue
index 5984e4acd52d7409ce62610e955f98aab8a8a772..5a0d46d82c5617398f52d74907a2daf667eb1001 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
     },