You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And update Flutter's supporting libraries to match.
In particular this pulls in this recent PR of mine so we can use it:
flutter/flutter#166731
This also causes all the generated l10n files to get reformatted.
That's due to this upstream PR:
flutter/flutter#167029
@@ -104,7 +107,7 @@ abstract class ZulipLocalizations {
104
107
Locale('pl'),
105
108
Locale('ru'),
106
109
Locale('sk'),
107
-
Locale('uk')
110
+
Locale('uk'),
108
111
];
109
112
110
113
/// Title for About Zulip page.
@@ -381,7 +384,11 @@ abstract class ZulipLocalizations {
381
384
///
382
385
/// In en, this message translates to:
383
386
/// **'{num, plural, =1{File is} other{{num} files are}} larger than the server\'s limit of {maxFileUploadSizeMib} MiB and will not be uploaded:\n\n{listMessage}'**
384
-
StringerrorFilesTooLarge(intnum, int maxFileUploadSizeMib, String listMessage);
387
+
StringerrorFilesTooLarge(
388
+
intnum,
389
+
int maxFileUploadSizeMib,
390
+
String listMessage,
391
+
);
385
392
386
393
/// Error title when attached files are too large in size.
387
394
///
@@ -459,7 +466,11 @@ abstract class ZulipLocalizations {
459
466
///
460
467
/// In en, this message translates to:
461
468
/// **'Error handling a Zulip event from {serverUrl}; will retry.\n\nError: {error}\n\nEvent: {event}'**
@@ -831,7 +842,11 @@ abstract class ZulipLocalizations {
831
842
///
832
843
/// In en, this message translates to:
833
844
/// **'{url} is running Zulip Server {zulipVersion}, which is unsupported. The minimum supported version is Zulip Server {minSupportedZulipVersion}.'**
Stringget logOutConfirmationDialogMessage =>'To use this account in the future, you will have to re-enter the URL for your organization and your account information.';
47
+
Stringget logOutConfirmationDialogMessage =>
48
+
'To use this account in the future, you will have to re-enter the URL for your organization and your account information.';
Stringget experimentalFeatureSettingsWarning =>'These options enable features which are still under development and not ready. They may not work, and may cause issues in other areas of the app.\n\nThe purpose of these settings is for experimentation by people working on developing Zulip.';
687
+
Stringget experimentalFeatureSettingsWarning =>
688
+
'These options enable features which are still under development and not ready. They may not work, and may cause issues in other areas of the app.\n\nThe purpose of these settings is for experimentation by people working on developing Zulip.';
659
689
660
690
@override
661
691
Stringget errorNotificationOpenTitle =>'Failed to open notification';
662
692
663
693
@override
664
-
Stringget errorNotificationOpenAccountMissing =>'The account associated with this notification no longer exists.';
694
+
Stringget errorNotificationOpenAccountMissing =>
695
+
'The account associated with this notification no longer exists.';
0 commit comments