Skip to content
Snippets Groups Projects
Commit df90c2fe authored by Henrik Askjer's avatar Henrik Askjer
Browse files

smaller and translated copy notification

parent 40ab8502
No related branches found
No related tags found
No related merge requests found
<template>
<div class="article_footer">
<v-snackbar center left light
tile
v-model='copy_popup'
timeout="2000">
<span class="text-center">{{what_copied}} er kopiert til utklippstavla</span>
<template v-slot:action="{ attrs }">
<v-btn
color="primary"
text
v-bind="attrs"
@click="copy_popup = false"
>
<v-icon>close</v-icon>
</v-btn>
</template>
<v-snackbar centered
max-width="300px"
min-width="300px"
max-height="36px"
min-height="36px"
rounded="pill"
v-model='copy_popup'
timeout="1000">
<span class="text-center">{{$t(what_copied)}}</span>
</v-snackbar>
<v-btn v-if="showLinkCopy"
......@@ -108,7 +102,7 @@ export default {
let link = this.create_link()
let self = this
navigator.clipboard.writeText(link).then(() => {
self.what_copied = "Lenka"
self.what_copied = this.$t("article_footer.link_copied")
self.copy_popup = true
}).catch(err => {
console.log("ERROR COPYING:",err)
......@@ -120,7 +114,7 @@ export default {
let citation = document.getElementById("citation").textContent;
navigator.clipboard.writeText(citation)
this.citation_dialog = false
this.what_copied = "Sitatet"
this.what_copied = this.$t("article_footer.citation_copied")
this.copy_popup = true
},
......
......@@ -34,7 +34,9 @@
"description": "Ønskjer du å sitere denne artikkelen i Nynorskordboka, rår vi deg til å gje opp når artikkelen vart henta (lesen), t.d. slik:",
"copy": "Kopier",
"download": "Last ned",
"cancel": "Avbryt"
"cancel": "Avbryt",
"link_copied": "Lenka er kopiert til utklippstavla",
"citation_copied": "Sitatet er kopiert til utklippstavla"
},
"close": "Lukk",
"choose": "Vel",
......
......@@ -34,7 +34,9 @@
"description": "Ønsker du å sitere denne artikkelen i Bokmålsordboka, anbefaler vi å oppgi når artikkelen ble hentet (lest), f.eks. slik:",
"copy": "Kopier",
"download": "Last ned",
"cancel": "avbryt"
"cancel": "avbryt",
"link_copied": "Lenken er kopiert til utklippstavlen",
"citation_copied": "Sitatet er kopiert til utklippstavla"
},
"close": "Lukk",
"choose": "Velg",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment