diff options
| author | Mar0xy <marie@kaifa.ch> | 2023-10-14 02:46:36 +0200 |
|---|---|---|
| committer | Mar0xy <marie@kaifa.ch> | 2023-10-14 02:46:36 +0200 |
| commit | 080450c10ba2a8c652dcb35e86d4abcb1255f9d2 (patch) | |
| tree | 808433171eca92e675f374519f28b32ece43cc47 /packages/frontend/src | |
| parent | upd: increase default cache max values (diff) | |
| download | sharkey-080450c10ba2a8c652dcb35e86d4abcb1255f9d2.tar.gz sharkey-080450c10ba2a8c652dcb35e86d4abcb1255f9d2.tar.bz2 sharkey-080450c10ba2a8c652dcb35e86d4abcb1255f9d2.zip | |
upd: rename renote to boost
Diffstat (limited to 'packages/frontend/src')
| -rw-r--r-- | packages/frontend/src/components/MkNote.vue | 2 | ||||
| -rw-r--r-- | packages/frontend/src/components/MkNoteDetailed.vue | 4 | ||||
| -rw-r--r-- | packages/frontend/src/components/MkNotification.vue | 2 | ||||
| -rw-r--r-- | packages/frontend/src/pages/page.vue | 2 | ||||
| -rw-r--r-- | packages/frontend/src/pages/timeline.vue | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue index fcc596b83c..9e4bc38a88 100644 --- a/packages/frontend/src/components/MkNote.vue +++ b/packages/frontend/src/components/MkNote.vue @@ -19,7 +19,7 @@ SPDX-License-Identifier: AGPL-3.0-only <div v-if="isRenote" :class="$style.renote"> <div v-if="note.channel" :class="$style.colorBar" :style="{ background: note.channel.color }"></div> <MkAvatar :class="$style.renoteAvatar" :user="note.user" link preview/> - <i class="ph-repeat ph-bold ph-lg" style="margin-right: 4px;"></i> + <i class="ph-rocket-launch ph-bold ph-lg" style="margin-right: 4px;"></i> <I18n :src="i18n.ts.renotedBy" tag="span" :class="$style.renoteText"> <template #user> <MkA v-user-preview="note.userId" :class="$style.renoteUserName" :to="userPage(note.user)"> diff --git a/packages/frontend/src/components/MkNoteDetailed.vue b/packages/frontend/src/components/MkNoteDetailed.vue index 3f21a2e854..782128d810 100644 --- a/packages/frontend/src/components/MkNoteDetailed.vue +++ b/packages/frontend/src/components/MkNoteDetailed.vue @@ -20,7 +20,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkNoteSub v-if="appearNote.reply" :note="appearNote.reply" :class="$style.replyTo"/> <div v-if="isRenote" :class="$style.renote"> <MkAvatar :class="$style.renoteAvatar" :user="note.user" link preview/> - <i class="ph-repeat ph-bold ph-lg" style="margin-right: 4px;"></i> + <i class="ph-rocket-launch ph-bold ph-lg" style="margin-right: 4px;"></i> <span :class="$style.renoteText"> <I18n :src="i18n.ts.renotedBy" tag="span"> <template #user> @@ -140,7 +140,7 @@ SPDX-License-Identifier: AGPL-3.0-only </article> <div :class="$style.tabs"> <button class="_button" :class="[$style.tab, { [$style.tabActive]: tab === 'replies' }]" @click="tab = 'replies'"><i class="ph-arrow-u-up-left ph-bold pg-lg"></i> {{ i18n.ts.replies }}</button> - <button class="_button" :class="[$style.tab, { [$style.tabActive]: tab === 'renotes' }]" @click="tab = 'renotes'"><i class="ph-repeat ph-bold ph-lg"></i> {{ i18n.ts.renotes }}</button> + <button class="_button" :class="[$style.tab, { [$style.tabActive]: tab === 'renotes' }]" @click="tab = 'renotes'"><i class="ph-rocket-launch ph-bold ph-lg"></i> {{ i18n.ts.renotes }}</button> <button class="_button" :class="[$style.tab, { [$style.tabActive]: tab === 'reactions' }]" @click="tab = 'reactions'"><i class="ph-smiley ph-bold pg-lg"></i> {{ i18n.ts.reactions }}</button> </div> <div> diff --git a/packages/frontend/src/components/MkNotification.vue b/packages/frontend/src/components/MkNotification.vue index 7e7694bf4b..c33f7cba7f 100644 --- a/packages/frontend/src/components/MkNotification.vue +++ b/packages/frontend/src/components/MkNotification.vue @@ -28,7 +28,7 @@ SPDX-License-Identifier: AGPL-3.0-only <i v-if="notification.type === 'follow'" class="ph-plus ph-bold ph-lg"></i> <i v-else-if="notification.type === 'receiveFollowRequest'" class="ph-clock ph-bold ph-lg"></i> <i v-else-if="notification.type === 'followRequestAccepted'" class="ph-check ph-bold ph-lg"></i> - <i v-else-if="notification.type === 'renote'" class="ph-repeat ph-bold ph-lg"></i> + <i v-else-if="notification.type === 'renote'" class="ph-rocket-launch ph-bold ph-lg"></i> <i v-else-if="notification.type === 'reply'" class="ph-arrow-u-up-left ph-bold pg-lg"></i> <i v-else-if="notification.type === 'mention'" class="ph-at ph-bold ph-lg"></i> <i v-else-if="notification.type === 'quote'" class="ph-quotes ph-bold ph-lg"></i> diff --git a/packages/frontend/src/pages/page.vue b/packages/frontend/src/pages/page.vue index d106216bf4..2cd7de48d1 100644 --- a/packages/frontend/src/pages/page.vue +++ b/packages/frontend/src/pages/page.vue @@ -33,7 +33,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkButton v-else v-tooltip="i18n.ts._pages.like" class="button" asLike @click="like()"><i class="ph-heart ph-bold ph-lg"></i><span v-if="page.likedCount > 0" class="count">{{ page.likedCount }}</span></MkButton> </div> <div class="other"> - <button v-tooltip="i18n.ts.shareWithNote" v-click-anime class="_button" @click="shareWithNote"><i class="ph-repeat ph-bold ph-lg ti-fw"></i></button> + <button v-tooltip="i18n.ts.shareWithNote" v-click-anime class="_button" @click="shareWithNote"><i class="ph-rocket-launch ph-bold ph-lg ti-fw"></i></button> <button v-tooltip="i18n.ts.share" v-click-anime class="_button" @click="share"><i class="ph-share-network ph-bold pg-lg ti-fw"></i></button> </div> </div> diff --git a/packages/frontend/src/pages/timeline.vue b/packages/frontend/src/pages/timeline.vue index 8d7fbc210c..c375b3839f 100644 --- a/packages/frontend/src/pages/timeline.vue +++ b/packages/frontend/src/pages/timeline.vue @@ -146,7 +146,7 @@ const headerActions = $computed(() => [{ os.popupMenu([{ type: 'switch', text: i18n.ts.showRenotes, - icon: 'ph-repeat ph-bold ph-lg', + icon: 'ph-rocket-launch ph-bold ph-lg', ref: $$(withRenotes), }, src === 'local' || src === 'social' ? { type: 'switch', |