From 6b4ef92c6fbf8b63c1ed8314bc230350eff340b1 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Sun, 19 Feb 2017 21:49:14 +0100 Subject: Adjust naming of public timeline -> "local timeline" vs "whole known network" --- .../javascripts/components/features/community_timeline/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/assets/javascripts/components/features/community_timeline') 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 ( - } /> + } /> ); }, -- cgit