about summary refs log tree commit diff
path: root/app/javascript/mastodon/features/list_timeline
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-12-13 02:40:32 +0100
committerGitHub <noreply@github.com>2017-12-13 02:40:32 +0100
commit71965cbef2696e66be284c8ed11711ec46925603 (patch)
tree94a6c4511379722995bb37299dd0422c6f5b1cd8 /app/javascript/mastodon/features/list_timeline
parent0128b86d3098042cdbc3a1629f74b70f665f8dfb (diff)
Adjust empty list timeline message (#5997)
Diffstat (limited to 'app/javascript/mastodon/features/list_timeline')
-rw-r--r--app/javascript/mastodon/features/list_timeline/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/list_timeline/index.js b/app/javascript/mastodon/features/list_timeline/index.js
index 1dcd4de14..ae136e48f 100644
--- a/app/javascript/mastodon/features/list_timeline/index.js
+++ b/app/javascript/mastodon/features/list_timeline/index.js
@@ -161,7 +161,7 @@ export default class ListTimeline extends React.PureComponent {
           scrollKey={`list_timeline-${columnId}`}
           timelineId={`list:${id}`}
           loadMore={this.handleLoadMore}
-          emptyMessage={<FormattedMessage id='empty_column.list' defaultMessage='There is nothing in this list yet.' />}
+          emptyMessage={<FormattedMessage id='empty_column.list' defaultMessage='There is nothing in this list yet. When members of this list post new statuses, they will appear here.' />}
         />
       </Column>
     );