Skip to content

Commit 01bc09d

Browse files
share: Support switching accounts
Co-Authored-By: Chris Bobbe <[email protected]> Fixes: #1779
1 parent 6b9694c commit 01bc09d

16 files changed

+167
-30
lines changed

assets/l10n/app_en.arb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1117,9 +1117,9 @@
11171117
"allChannelsPageTitle": {"type": "String", "example": "All channels"}
11181118
}
11191119
},
1120-
"sharePageTitle": "Share",
1121-
"@sharePageTitle": {
1122-
"description": "Title for the page about sharing content received from other apps."
1120+
"shareChooseAccountLabel": "Choose an account",
1121+
"@shareChooseAccountLabel": {
1122+
"description": "Label for the page about selecting an account to share content received from other apps."
11231123
},
11241124
"mainMenuMyProfile": "My profile",
11251125
"@mainMenuMyProfile": {

lib/generated/l10n/zulip_localizations.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1647,11 +1647,11 @@ abstract class ZulipLocalizations {
16471647
String allChannelsPageTitle,
16481648
);
16491649

1650-
/// Title for the page about sharing content received from other apps.
1650+
/// Label for the page about selecting an account to share content received from other apps.
16511651
///
16521652
/// In en, this message translates to:
1653-
/// **'Share'**
1654-
String get sharePageTitle;
1653+
/// **'Choose an account'**
1654+
String get shareChooseAccountLabel;
16551655

16561656
/// Label for main-menu button leading to the user's own profile.
16571657
///

lib/generated/l10n/zulip_localizations_ar.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ class ZulipLocalizationsAr extends ZulipLocalizations {
934934
}
935935

936936
@override
937-
String get sharePageTitle => 'Share';
937+
String get shareChooseAccountLabel => 'Choose an account';
938938

939939
@override
940940
String get mainMenuMyProfile => 'My profile';

lib/generated/l10n/zulip_localizations_de.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -957,7 +957,7 @@ class ZulipLocalizationsDe extends ZulipLocalizations {
957957
}
958958

959959
@override
960-
String get sharePageTitle => 'Teilen';
960+
String get shareChooseAccountLabel => 'Choose an account';
961961

962962
@override
963963
String get mainMenuMyProfile => 'Mein Profil';

lib/generated/l10n/zulip_localizations_en.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ class ZulipLocalizationsEn extends ZulipLocalizations {
934934
}
935935

936936
@override
937-
String get sharePageTitle => 'Share';
937+
String get shareChooseAccountLabel => 'Choose an account';
938938

939939
@override
940940
String get mainMenuMyProfile => 'My profile';

lib/generated/l10n/zulip_localizations_fr.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -948,7 +948,7 @@ class ZulipLocalizationsFr extends ZulipLocalizations {
948948
}
949949

950950
@override
951-
String get sharePageTitle => 'Share';
951+
String get shareChooseAccountLabel => 'Choose an account';
952952

953953
@override
954954
String get mainMenuMyProfile => 'My profile';

lib/generated/l10n/zulip_localizations_it.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ class ZulipLocalizationsIt extends ZulipLocalizations {
949949
}
950950

951951
@override
952-
String get sharePageTitle => 'Share';
952+
String get shareChooseAccountLabel => 'Choose an account';
953953

954954
@override
955955
String get mainMenuMyProfile => 'Il mio profilo';

lib/generated/l10n/zulip_localizations_ja.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ class ZulipLocalizationsJa extends ZulipLocalizations {
913913
}
914914

915915
@override
916-
String get sharePageTitle => '共有';
916+
String get shareChooseAccountLabel => 'Choose an account';
917917

918918
@override
919919
String get mainMenuMyProfile => '自分のプロフィール';

lib/generated/l10n/zulip_localizations_nb.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -934,7 +934,7 @@ class ZulipLocalizationsNb extends ZulipLocalizations {
934934
}
935935

936936
@override
937-
String get sharePageTitle => 'Share';
937+
String get shareChooseAccountLabel => 'Choose an account';
938938

939939
@override
940940
String get mainMenuMyProfile => 'My profile';

lib/generated/l10n/zulip_localizations_pl.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ class ZulipLocalizationsPl extends ZulipLocalizations {
949949
}
950950

951951
@override
952-
String get sharePageTitle => 'Udostępnij';
952+
String get shareChooseAccountLabel => 'Choose an account';
953953

954954
@override
955955
String get mainMenuMyProfile => 'Mój profil';

0 commit comments

Comments
 (0)