UX: Simplify narrative bot bio ()

This commit is contained in:
tshenry 2021-01-22 17:21:26 -08:00 committed by GitHub
parent 6d30e01d1c
commit 17e683d373
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
plugins/discourse-narrative-bot
config/locales
db/fixtures

@ -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!"

@ -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