diff --git a/changelog.html b/changelog.html index e239929d..ec82c9c4 100644 --- a/changelog.html +++ b/changelog.html @@ -1,3 +1,16 @@ +
- {channel.displayName} playing {stream.game.name} -
+{ + game ? + game.id == CREATIVE_ID ? + t.i18n.tList('directory.user-creative', '%{user} being %{game}', { + user: user_link, + game: game_link + }) : + t.i18n.tList('directory.user-playing', '%{user} playing %{game}', { + user: user_link, + game: game_link + }) + : user_link + }
- Hosted by {nodes.length > 1 ? `${nodes.length} channels` : nodes[0].displayName} -
+{ + nodes.length > 1 ? + t.i18n.t('directory.hosted.by-many', 'Hosted by %{count} channel%{count|en_plural}', nodes.length) : + t.i18n.tList('directory.hosted.by-one', 'Hosted by %{user}', { + user: {nodes[0].displayName} + }) + }