Skip to content

Commit 7c3710f

Browse files
committed
subscription_list: Change channelsEmptyPlaceholder to use "You're"
To be a bit less stuffy: #1849 (comment)
1 parent f8bde63 commit 7c3710f

9 files changed

+9
-9
lines changed

assets/l10n/app_en.arb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@
10741074
"@channelsPageTitle": {
10751075
"description": "Title for the page with a list of subscribed channels."
10761076
},
1077-
"channelsEmptyPlaceholder": "You are not subscribed to any channels yet.",
1077+
"channelsEmptyPlaceholder": "You’re not subscribed to any channels yet.",
10781078
"@channelsEmptyPlaceholder": {
10791079
"description": "Centered text on the 'Channels' page saying that there is no content to show."
10801080
},

lib/generated/l10n/zulip_localizations.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1588,7 +1588,7 @@ abstract class ZulipLocalizations {
15881588
/// Centered text on the 'Channels' page saying that there is no content to show.
15891589
///
15901590
/// In en, this message translates to:
1591-
/// **'You are not subscribed to any channels yet.'**
1591+
/// **'You’re not subscribed to any channels yet.'**
15921592
String get channelsEmptyPlaceholder;
15931593

15941594
/// Title for the page about sharing content received from other apps.

lib/generated/l10n/zulip_localizations_ar.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ class ZulipLocalizationsAr extends ZulipLocalizations {
898898

899899
@override
900900
String get channelsEmptyPlaceholder =>
901-
'You are not subscribed to any channels yet.';
901+
'You’re not subscribed to any channels yet.';
902902

903903
@override
904904
String get sharePageTitle => 'Share';

lib/generated/l10n/zulip_localizations_en.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ class ZulipLocalizationsEn extends ZulipLocalizations {
898898

899899
@override
900900
String get channelsEmptyPlaceholder =>
901-
'You are not subscribed to any channels yet.';
901+
'You’re not subscribed to any channels yet.';
902902

903903
@override
904904
String get sharePageTitle => 'Share';

lib/generated/l10n/zulip_localizations_fr.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -912,7 +912,7 @@ class ZulipLocalizationsFr extends ZulipLocalizations {
912912

913913
@override
914914
String get channelsEmptyPlaceholder =>
915-
'You are not subscribed to any channels yet.';
915+
'You’re not subscribed to any channels yet.';
916916

917917
@override
918918
String get sharePageTitle => 'Share';

lib/generated/l10n/zulip_localizations_nb.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ class ZulipLocalizationsNb extends ZulipLocalizations {
898898

899899
@override
900900
String get channelsEmptyPlaceholder =>
901-
'You are not subscribed to any channels yet.';
901+
'You’re not subscribed to any channels yet.';
902902

903903
@override
904904
String get sharePageTitle => 'Share';

lib/generated/l10n/zulip_localizations_sk.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ class ZulipLocalizationsSk extends ZulipLocalizations {
900900

901901
@override
902902
String get channelsEmptyPlaceholder =>
903-
'You are not subscribed to any channels yet.';
903+
'You’re not subscribed to any channels yet.';
904904

905905
@override
906906
String get sharePageTitle => 'Share';

lib/generated/l10n/zulip_localizations_zh.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ class ZulipLocalizationsZh extends ZulipLocalizations {
898898

899899
@override
900900
String get channelsEmptyPlaceholder =>
901-
'You are not subscribed to any channels yet.';
901+
'You’re not subscribed to any channels yet.';
902902

903903
@override
904904
String get sharePageTitle => 'Share';

test/widgets/subscription_list_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ void main() {
6262
check(getItemCount()).equals(0);
6363
check(isPinnedHeaderInTree()).isFalse();
6464
check(isUnpinnedHeaderInTree()).isFalse();
65-
check(find.text('You are not subscribed to any channels yet.')).findsOne();
65+
check(find.text('You’re not subscribed to any channels yet.')).findsOne();
6666
});
6767

6868
testWidgets('basic subscriptions', (tester) async {

0 commit comments

Comments
 (0)