File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -282,7 +282,7 @@ class HomePage extends StatelessWidget {
282
282
ElevatedButton (
283
283
onPressed: () => Navigator .push (context,
284
284
SubscriptionListPage .buildRoute (context: context)),
285
- child: const Text ("Subscribed streams " )),
285
+ child: const Text ("Subscribed channels " )),
286
286
const SizedBox (height: 16 ),
287
287
ElevatedButton (
288
288
onPressed: () => Navigator .push (context,
Original file line number Diff line number Diff line change @@ -148,13 +148,13 @@ class MessageListAppBarTitle extends StatelessWidget {
148
148
case StreamNarrow (: var streamId):
149
149
final store = PerAccountStoreWidget .of (context);
150
150
final stream = store.streams[streamId];
151
- final streamName = stream? .name ?? '(unknown stream )' ;
151
+ final streamName = stream? .name ?? '(unknown channel )' ;
152
152
return _buildStreamRow (stream, streamName);
153
153
154
154
case TopicNarrow (: var streamId, : var topic):
155
155
final store = PerAccountStoreWidget .of (context);
156
156
final stream = store.streams[streamId];
157
- final streamName = stream? .name ?? '(unknown stream )' ;
157
+ final streamName = stream? .name ?? '(unknown channel )' ;
158
158
return _buildStreamRow (stream, "$streamName > $topic " );
159
159
160
160
case DmNarrow (: var otherRecipientIds):
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ class _SubscriptionListPageState extends State<SubscriptionListPage> with PerAcc
81
81
unpinned.sortBy ((subscription) => subscription.name.toLowerCase ());
82
82
83
83
return Scaffold (
84
- appBar: AppBar (title: const Text ("Streams " )),
84
+ appBar: AppBar (title: const Text ("Channels " )),
85
85
body: SafeArea (
86
86
// Don't pad the bottom here; we want the list content to do that.
87
87
bottom: false ,
@@ -115,7 +115,7 @@ class _NoSubscriptionsItem extends StatelessWidget {
115
115
return SliverToBoxAdapter (
116
116
child: Padding (
117
117
padding: const EdgeInsets .all (10 ),
118
- child: Text ("No streams found" ,
118
+ child: Text ("No channels found" ,
119
119
textAlign: TextAlign .center,
120
120
style: TextStyle (
121
121
// TODO(#95) need dark-theme color
You can’t perform that action at this time.
0 commit comments