about summary refs log tree commit diff
path: root/app/assets/javascripts/components/features/community_timeline
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-02-19 21:49:14 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-02-19 21:49:14 +0100
commit6b4ef92c6fbf8b63c1ed8314bc230350eff340b1 (patch)
treec334ee6d4340379e232fc7f2cccdb797d9e05b31 /app/assets/javascripts/components/features/community_timeline
parentc50256d25c47110119ea3386050040c916f2cf83 (diff)
Adjust naming of public timeline -> "local timeline" vs "whole known network"
Diffstat (limited to 'app/assets/javascripts/components/features/community_timeline')
-rw-r--r--app/assets/javascripts/components/features/community_timeline/index.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/components/features/community_timeline/index.jsx b/app/assets/javascripts/components/features/community_timeline/index.jsx
index 736c5d58f..1b40da3d7 100644
--- a/app/assets/javascripts/components/features/community_timeline/index.jsx
+++ b/app/assets/javascripts/components/features/community_timeline/index.jsx
@@ -12,7 +12,7 @@ import ColumnBackButtonSlim from '../../components/column_back_button_slim';
 import createStream from '../../stream';
 
 const messages = defineMessages({
-  title: { id: 'column.community', defaultMessage: 'Public' }
+  title: { id: 'column.community', defaultMessage: 'Local' }
 });
 
 const mapStateToProps = state => ({
@@ -63,7 +63,7 @@ const CommunityTimeline = React.createClass({
     return (
       <Column icon='users' heading={intl.formatMessage(messages.title)}>
         <ColumnBackButtonSlim />
-        <StatusListContainer type='community' emptyMessage={<FormattedMessage id='empty_column.community' defaultMessage='The community timeline is empty. Write something publicly to get the ball rolling!' />} />
+        <StatusListContainer type='community' emptyMessage={<FormattedMessage id='empty_column.community' defaultMessage='The local timeline is empty. Write something publicly to get the ball rolling!' />} />
       </Column>
     );
   },