diff --git a/assets/style.scss b/assets/style.scss index 785991d1..837b96ac 100644 --- a/assets/style.scss +++ b/assets/style.scss @@ -129,3 +129,7 @@ blockquote { .list-group, .list-unstyled { padding-right: 0; } + +strike, .text-strike { + text-decoration: line-through; +} diff --git a/components/Account.vue b/components/Account.vue index 63e61be7..ab414fc6 100644 --- a/components/Account.vue +++ b/components/Account.vue @@ -117,6 +117,7 @@ diff --git a/components/Login.vue b/components/Login.vue index 6d813eec..f5a7eb6d 100644 --- a/components/Login.vue +++ b/components/Login.vue @@ -60,6 +60,7 @@ diff --git a/components/SourceList.vue b/components/SourceList.vue index ad069311..78e01908 100644 --- a/components/SourceList.vue +++ b/components/SourceList.vue @@ -6,7 +6,7 @@ diff --git a/components/Spelling.vue b/components/Spelling.vue new file mode 100644 index 00000000..1ca14454 --- /dev/null +++ b/components/Spelling.vue @@ -0,0 +1,24 @@ + diff --git a/components/Support.vue b/components/Support.vue new file mode 100644 index 00000000..e7bbdc8f --- /dev/null +++ b/components/Support.vue @@ -0,0 +1,17 @@ + diff --git a/components/T.vue b/components/T.vue index d8afb3bd..0ff00274 100644 --- a/components/T.vue +++ b/components/T.vue @@ -15,10 +15,11 @@ export default { props: { params: {}, + silent: {type: Boolean} }, data() { return { - txt: t(this.$slots.default[0].text, this.params || {}), + txt: t(this.$slots.default[0].text, this.params || {}, !this.silent), } }, } diff --git a/components/TermsDictionary.vue b/components/TermsDictionary.vue index 84c23d2b..0b35cf40 100644 --- a/components/TermsDictionary.vue +++ b/components/TermsDictionary.vue @@ -25,12 +25,12 @@ diff --git a/routes/profile.vue b/routes/profile.vue index c120d1a3..a50c4f14 100644 --- a/routes/profile.vue +++ b/routes/profile.vue @@ -33,7 +33,7 @@

- {{ line }} + {{ line }}

diff --git a/routes/pronoun.vue b/routes/pronoun.vue index a6449cae..78f5090d 100644 --- a/routes/pronoun.vue +++ b/routes/pronoun.vue @@ -16,19 +16,21 @@

+ ({{Array.isArray(selectedPronoun.description) ? ($t('pronouns.alt.header') + ': ' + selectedPronoun.description.join(glue)) : selectedPronoun.description }}) +

@@ -66,21 +68,21 @@