@@ -817,16 +817,16 @@ class _TypingStatusWidgetState extends State<TypingStatusWidget> with PerAccount
817
817
if (narrow is ! SendableNarrow ) return const SizedBox ();
818
818
819
819
final store = PerAccountStoreWidget .of (context);
820
- final localizations = ZulipLocalizations .of (context);
820
+ final zulipLocalizations = ZulipLocalizations .of (context);
821
821
final typistIds = model! .typistIdsInNarrow (narrow);
822
822
if (typistIds.isEmpty) return const SizedBox ();
823
823
final text = switch (typistIds.length) {
824
- 1 => localizations .onePersonTyping (
824
+ 1 => zulipLocalizations .onePersonTyping (
825
825
store.userDisplayName (typistIds.first)),
826
- 2 => localizations .twoPeopleTyping (
826
+ 2 => zulipLocalizations .twoPeopleTyping (
827
827
store.userDisplayName (typistIds.first),
828
828
store.userDisplayName (typistIds.last)),
829
- _ => localizations .manyPeopleTyping,
829
+ _ => zulipLocalizations .manyPeopleTyping,
830
830
};
831
831
832
832
return Padding (
@@ -1452,13 +1452,13 @@ class MessageWithPossibleSender extends StatelessWidget {
1452
1452
final designVariables = DesignVariables .of (context);
1453
1453
final message = item.message;
1454
1454
1455
- final localizations = ZulipLocalizations .of (context);
1455
+ final zulipLocalizations = ZulipLocalizations .of (context);
1456
1456
String ? editStateText;
1457
1457
switch (message.editState) {
1458
1458
case MessageEditState .edited:
1459
- editStateText = localizations .messageIsEditedLabel;
1459
+ editStateText = zulipLocalizations .messageIsEditedLabel;
1460
1460
case MessageEditState .moved:
1461
- editStateText = localizations .messageIsMovedLabel;
1461
+ editStateText = zulipLocalizations .messageIsMovedLabel;
1462
1462
case MessageEditState .none:
1463
1463
}
1464
1464
0 commit comments