diff options
| author | Shpuld Shpludson <shp@cock.li> | 2021-02-12 13:58:11 +0000 |
|---|---|---|
| committer | Shpuld Shpludson <shp@cock.li> | 2021-02-12 13:58:11 +0000 |
| commit | b2a96417cf95da5e34f2394835f0790911259182 (patch) | |
| tree | b505d6c03fbccad178a016d093ed407fe0c035d5 | |
| parent | 8b7c367b0478ac3907480e3a354612473fc0ba08 (diff) | |
| parent | da807a12fb2b1862205b2c1163326806cca6bd26 (diff) | |
Merge branch 'fix/localize-bot-label' into 'develop'
Make bot label localizable
See merge request pleroma/pleroma-fe!1342
| -rw-r--r-- | src/components/user_card/user_card.vue | 2 | ||||
| -rw-r--r-- | src/i18n/en.json | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue index 773f764a..c6c4dfee 100644 --- a/src/components/user_card/user_card.vue +++ b/src/components/user_card/user_card.vue @@ -89,7 +89,7 @@ v-if="user.bot" class="alert user-role" > - bot + {{ $t('user_card.bot') }} </span> </template> <span v-if="user.locked"> diff --git a/src/i18n/en.json b/src/i18n/en.json index 1025a8e1..3946f3cd 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -716,6 +716,7 @@ "mute_progress": "Muting…", "hide_repeats": "Hide repeats", "show_repeats": "Show repeats", + "bot": "Bot", "admin_menu": { "moderation": "Moderation", "grant_admin": "Grant Admin", |
