diff --git a/public/_lang/en.json b/public/_lang/en.json index 9e3b67209..84bd3913f 100644 Binary files a/public/_lang/en.json and b/public/_lang/en.json differ diff --git a/public/_lang/fr.json b/public/_lang/fr.json index 02598034c..580ce877c 100644 Binary files a/public/_lang/fr.json and b/public/_lang/fr.json differ diff --git a/resources/assets/components/DirectMessage.vue b/resources/assets/components/DirectMessage.vue index e91ecdfaf..0c2326c4c 100644 --- a/resources/assets/components/DirectMessage.vue +++ b/resources/assets/components/DirectMessage.vue @@ -227,7 +227,7 @@ v-html="conversationProfile.display_name" @click="gotoProfile(conversationProfile)" > -

+

@@ -31,7 +31,11 @@

{{ config.domain }}

- Decentralized photo sharing social media powered by Pixelfed + + +

diff --git a/resources/assets/components/partials/profile/ProfileFollowers.vue b/resources/assets/components/partials/profile/ProfileFollowers.vue index 4f3df5fec..704a20896 100644 --- a/resources/assets/components/partials/profile/ProfileFollowers.vue +++ b/resources/assets/components/partials/profile/ProfileFollowers.vue @@ -12,7 +12,7 @@

@{{ profile.acct }}

-

{{ $t('profile.followers') }}

+

{{ $t('profile.followers.caption') }}

Back diff --git a/resources/assets/components/partials/profile/ProfileHoverCard.vue b/resources/assets/components/partials/profile/ProfileHoverCard.vue index c1bbff7a2..a2f2b5e61 100644 --- a/resources/assets/components/partials/profile/ProfileHoverCard.vue +++ b/resources/assets/components/partials/profile/ProfileHoverCard.vue @@ -72,7 +72,7 @@

- {{ formatCount(profile.following_count) }} Following + {{ formatCount(profile.following_count) }} {{ $t('profile.following.caption', profile.following_count) }} {{ formatCount(profile.followers_count) }} Followers diff --git a/resources/assets/components/partials/sidebar.vue b/resources/assets/components/partials/sidebar.vue index 06b20bf2a..3777eeb85 100644 --- a/resources/assets/components/partials/sidebar.vue +++ b/resources/assets/components/partials/sidebar.vue @@ -16,10 +16,10 @@

@{{ user.username }}

- {{ formatCount(user.following_count) }} Following + {{ formatCount(user.following_count) }} {{ $tc('sidebar.followingCount', user.following_count) }} - {{ formatCount(user.followers_count) }} Followers + {{ formatCount(user.followers_count) }} {{ $tc('sidebar.followersCount', user.followers_count) }}

@@ -29,10 +29,10 @@
- {{ $t('navmenu.compose') }} Post + {{ $t('navmenu.composePost') }}