From 17e683d373320f94e63c0e21c668c605b7bcd9d6 Mon Sep 17 00:00:00 2001 From: tshenry Date: Fri, 22 Jan 2021 17:21:26 -0800 Subject: [PATCH] UX: Simplify narrative bot bio (#11820) --- plugins/discourse-narrative-bot/config/locales/server.en.yml | 2 +- plugins/discourse-narrative-bot/db/fixtures/001_discobot.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/discourse-narrative-bot/config/locales/server.en.yml b/plugins/discourse-narrative-bot/config/locales/server.en.yml index 750201811eb..2d4887f4be7 100644 --- a/plugins/discourse-narrative-bot/config/locales/server.en.yml +++ b/plugins/discourse-narrative-bot/config/locales/server.en.yml @@ -21,7 +21,7 @@ en: This badge is granted upon successful completion of the interactive advanced user tutorial. You’ve mastered the advanced tools of discussion — and now you’re fully licensed! discourse_narrative_bot: - bio: "Hi, I’m not a real person. I’m a bot that can teach you about this site. To interact with me, send me a message or mention **`@%{discobot_username}`** anywhere." + bio: "Hi, I’m not a real person. I’m a bot that can teach you about this site. To interact with me, send me a message or mention me by name." tl2_promotion_message: subject_template: "Now that you’ve been promoted, it’s time to learn about some advanced features!" diff --git a/plugins/discourse-narrative-bot/db/fixtures/001_discobot.rb b/plugins/discourse-narrative-bot/db/fixtures/001_discobot.rb index 527dfbe3c90..9586bc483f7 100644 --- a/plugins/discourse-narrative-bot/db/fixtures/001_discobot.rb +++ b/plugins/discourse-narrative-bot/db/fixtures/001_discobot.rb @@ -49,7 +49,7 @@ bot.create_user_profile! if !bot.user_profile if !bot.user_profile.bio_raw bot.user_profile.update!( - bio_raw: I18n.t('discourse_narrative_bot.bio', site_title: SiteSetting.title, discobot_username: bot.username) + bio_raw: I18n.t('discourse_narrative_bot.bio') ) end