commit: e147dbfb8226f1f6c072a6e9231a0ccbb13a4bc5
parent 0832228e45eb5a2c456e3140c4e36aa1e7617ee6
Author: Henry Jameson <me@hjkos.com>
Date: Mon, 8 Aug 2022 14:20:01 +0300
art credit
Diffstat:
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
@@ -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
@@ -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
@@ -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}"
}
}