diff --git a/src/core/client/stream/tabs/profile/components/CommentsHistory.tsx b/src/core/client/stream/tabs/profile/components/CommentsHistory.tsx index 879759d71..67b9d46c6 100644 --- a/src/core/client/stream/tabs/profile/components/CommentsHistory.tsx +++ b/src/core/client/stream/tabs/profile/components/CommentsHistory.tsx @@ -1,3 +1,4 @@ +import { Localized } from "fluent-react/compat"; import * as React from "react"; import { StatelessComponent } from "react"; import { CommentsHistoryContainer_me as MeData } from "talk-stream/__generated__/CommentsHistoryContainer_me.graphql"; @@ -13,7 +14,9 @@ const CommentsHistory: StatelessComponent = props => { const comments = props.me.comments.edges.map(edge => edge.node); return ( - Comment History + + Comment History + {comments.map(comment => ( = props => { launch - - View Conversation - + + + View Conversation + + schedule @@ -54,7 +57,9 @@ const HistoryComment: StatelessComponent = props => { className={styles.text} > reply - Replies {props.comment.replyCount} + + Replies {props.comment.replyCount} + )} diff --git a/src/locales/en-US/stream.ftl b/src/locales/en-US/stream.ftl index 1a2b81f5f..322137aef 100644 --- a/src/locales/en-US/stream.ftl +++ b/src/locales/en-US/stream.ftl @@ -68,3 +68,8 @@ comments-editCommentForm-rte = comments-editCommentForm-editRemainingTime = Edit: remaining comments-editCommentForm-editTimeExpired = Edit time has expired. You can no longer edit this comment. Why not post another one? comments-editedMarker-edited = Edited + +## Comment History +commentHistory-viewConversation = View Conversation +commentHistory-replies = Replies +commentHistory-commentHistory = Comment History