summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorInsert5StarName <sakura@shourai.de>2023-11-28 20:33:29 +0100
committerMarie <robloxfilmcam@gmail.com>2023-11-28 22:21:40 +0100
commitc483a75337fb46e400a6c2a26426c054ff8c62ea (patch)
tree382c98b0e3fcf903d346fd52bc560cd9dc966b2f /packages
parentupd: ask to reload on like change (diff)
downloadsharkey-c483a75337fb46e400a6c2a26426c054ff8c62ea.tar.gz
sharkey-c483a75337fb46e400a6c2a26426c054ff8c62ea.tar.bz2
sharkey-c483a75337fb46e400a6c2a26426c054ff8c62ea.zip
use locale
Diffstat (limited to 'packages')
-rw-r--r--packages/frontend/src/pages/settings/reaction.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/settings/reaction.vue b/packages/frontend/src/pages/settings/reaction.vue
index 80fbfc324d..41ffbdb829 100644
--- a/packages/frontend/src/pages/settings/reaction.vue
+++ b/packages/frontend/src/pages/settings/reaction.vue
@@ -27,7 +27,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<template #label>Default like emoji</template>
<MkCustomEmoji v-if="like && like.startsWith(':')" style="max-height: 3em; font-size: 1.1em;" :useOriginalSize="false" :class="$style.reaction" :name="like" :normal="true" :noStyle="true"/>
<MkEmoji v-else-if="like && !like.startsWith(':')" :emoji="like" style="max-height: 3em; font-size: 1.1em;" :normal="true" :noStyle="true"/>
- <span v-else-if="!like">Not Set</span>
+ <span v-else-if="!like">{{ i18n.ts.notSet }}</span>
<div class="_buttons" style="padding-top: 8px;">
<MkButton rounded :small="true" inline @click="chooseNewLike"><i class="ph-smiley ph-bold ph-lg"></i> Change</MkButton>
<MkButton rounded :small="true" inline @click="resetLike"><i class="ph-arrow-clockwise ph-bold ph-lg"></i> Reset</MkButton>