diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-06-03 19:39:02 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-06-03 19:39:02 +0900 |
| commit | 5e967e24ff05ff83075c086a5e25d10ea299a3e0 (patch) | |
| tree | 216d7c264e143db643e1d5fb40758ad7bca9317e /src | |
| parent | :art: (diff) | |
| download | sharkey-5e967e24ff05ff83075c086a5e25d10ea299a3e0.tar.gz sharkey-5e967e24ff05ff83075c086a5e25d10ea299a3e0.tar.bz2 sharkey-5e967e24ff05ff83075c086a5e25d10ea299a3e0.zip | |
:v:
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/views/components/follow-button.vue | 2 | ||||
| -rw-r--r-- | src/client/app/mobile/views/components/follow-button.vue | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/client/app/desktop/views/components/follow-button.vue b/src/client/app/desktop/views/components/follow-button.vue index c7549c374e..62742a8f39 100644 --- a/src/client/app/desktop/views/components/follow-button.vue +++ b/src/client/app/desktop/views/components/follow-button.vue @@ -6,7 +6,7 @@ > <template v-if="!wait"> <template v-if="u.hasPendingFollowRequestFromYou">%fa:hourglass-half%<template v-if="size == 'big'"> %i18n:@request-pending%</template></template> - <template v-else-if="u.isFollowing">%fa:minus%<template v-if="size == 'big'"> %i18n:@unfollow%</template></template> + <template v-else-if="u.isFollowing">%fa:minus%<template v-if="size == 'big'"> %i18n:@following%</template></template> <template v-else-if="!u.isFollowing && u.isLocked">%fa:plus%<template v-if="size == 'big'"> %i18n:@follow-request%</template></template> <template v-else-if="!u.isFollowing && !u.isLocked">%fa:plus%<template v-if="size == 'big'"> %i18n:@follow%</template></template> </template> diff --git a/src/client/app/mobile/views/components/follow-button.vue b/src/client/app/mobile/views/components/follow-button.vue index d8441a20b9..b6a52fe1ed 100644 --- a/src/client/app/mobile/views/components/follow-button.vue +++ b/src/client/app/mobile/views/components/follow-button.vue @@ -6,7 +6,7 @@ > <template v-if="!wait"> <template v-if="u.hasPendingFollowRequestFromYou">%fa:hourglass-half% %i18n:@request-pending%</template> - <template v-else-if="u.isFollowing">%fa:minus% %i18n:@unfollow%</template> + <template v-else-if="u.isFollowing">%fa:minus% %i18n:@following%</template> <template v-else-if="!u.isFollowing && u.isLocked">%fa:plus% %i18n:@follow-request%</template> <template v-else-if="!u.isFollowing && !u.isLocked">%fa:plus% %i18n:@follow%</template> </template> @@ -102,6 +102,7 @@ export default Vue.extend({ min-width 150px line-height 36px font-size 14px + font-weight bold color $theme-color background transparent outline none |