aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-08-08 14:20:01 +0300
committerHenry Jameson <me@hjkos.com>2022-08-08 14:20:01 +0300
commite147dbfb8226f1f6c072a6e9231a0ccbb13a4bc5 (patch)
tree362ccb34278cee013cd9594867473ddfa5db80bb /src
parent0832228e45eb5a2c456e3140c4e36aa1e7617ee6 (diff)
art credit
Diffstat (limited to 'src')
-rw-r--r--src/components/update_notification/update_notification.scss4
-rw-r--r--src/components/update_notification/update_notification.vue15
-rw-r--r--src/i18n/en.json3
3 files changed, 19 insertions, 3 deletions
diff --git a/src/components/update_notification/update_notification.scss b/src/components/update_notification/update_notification.scss
index c3b1bc13..77ee275a 100644
--- a/src/components/update_notification/update_notification.scss
+++ b/src/components/update_notification/update_notification.scss
@@ -83,6 +83,10 @@
linear-gradient(to top, white, white);
}
+ .art-credit {
+ text-align: right;
+ }
+
&.-peek {
/* Explanation:
* 100vh - 100% = Distance between modal's top+bottom boundaries and screen
diff --git a/src/components/update_notification/update_notification.vue b/src/components/update_notification/update_notification.vue
index 1651384b..d0e2499c 100644
--- a/src/components/update_notification/update_notification.vue
+++ b/src/components/update_notification/update_notification.vue
@@ -33,7 +33,6 @@
<i18n-t
keypath="update.update_bugs"
tag="p"
- class="extra-info"
>
<template #pleromaGitlab>
<a
@@ -45,7 +44,6 @@
<i18n-t
keypath="update.update_changelog"
tag="p"
- class="extra-info"
>
<template #theFullChangelog>
<a
@@ -54,6 +52,19 @@
>{{ $t('update.update_changelog_here') }}</a>
</template>
</i18n-t>
+ <p class="art-credit">
+ <i18n-t
+ keypath="update.art_by"
+ tag="small"
+ >
+ <template #linkToArtist>
+ <a
+ target="_blank"
+ href="https://post.ebin.club/pipivovott"
+ >pipivovott</a>
+ </template>
+ </i18n-t>
+ </p>
</div>
</div>
<div class="spacer-bottom" />
diff --git a/src/i18n/en.json b/src/i18n/en.json
index 77bd8cf2..ae3be443 100644
--- a/src/i18n/en.json
+++ b/src/i18n/en.json
@@ -969,6 +969,7 @@
"update_bugs": "Please report any issues and bugs on {pleromaGitlab}, as we have changed a lot, and although we test thoroughly and use development versions ourselves, we may have missed some things. We welcome your feedback and suggestions on issues you might encounter, or how to improve Pleroma and Pleroma-FE.",
"update_bugs_gitlab": "Pleroma GitLab",
"update_changelog": "For more details on what's changed, see {theFullChangelog}.",
- "update_changelog_here": "the full changelog"
+ "update_changelog_here": "the full changelog",
+ "art_by": "Art by {linkToArtist}"
}
}