Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TF-2890 Remove calendar event reply description text #2891

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,17 +99,6 @@ extension CalendarEventExtension on CalendarEvent {
}
}

String getSubTitleEventAction(BuildContext context) {
switch(method) {
case EventMethod.refresh:
return AppLocalizations.of(context).subMessageEventActionBannerUpdated;
case EventMethod.cancel:
return AppLocalizations.of(context).subMessageEventActionBannerCanceled;
default:
return '';
}
}

String getUserNameEventAction({
required BuildContext context,
required ImagePaths imagePaths,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

import 'package:core/presentation/extensions/color_extension.dart';
import 'package:core/presentation/resources/image_paths.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter_svg/flutter_svg.dart';
Expand Down Expand Up @@ -73,15 +72,6 @@ class CalendarEventActionBannerWidget extends StatelessWidget {
]
)
),
if (calendarEvent.getSubTitleEventAction(context).isNotEmpty)
Text(
calendarEvent.getSubTitleEventAction(context),
style: const TextStyle(
color: AppColor.colorSubTitleEventActionText,
fontSize: CalendarEventActionBannerStyles.subTileTextSize,
dab246 marked this conversation as resolved.
Show resolved Hide resolved
fontWeight: FontWeight.w400
),
)
]
))
]
Expand Down
12 changes: 0 additions & 12 deletions lib/l10n/intl_messages.arb
Original file line number Diff line number Diff line change
Expand Up @@ -2930,18 +2930,6 @@
"placeholders_order": [],
"placeholders": {}
},
"subMessageEventActionBannerUpdated": "\"The time has been updated to better suit all of you\"",
"@subMessageEventActionBannerUpdated": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
},
"subMessageEventActionBannerCanceled": "\"We are canceling the event due to bad weather.\"",
"@subMessageEventActionBannerCanceled": {
"type": "text",
"placeholders_order": [],
"placeholders": {}
},
dab246 marked this conversation as resolved.
Show resolved Hide resolved
"anAttendee": "An attendee",
"@anAttendee": {
"type": "text",
Expand Down
12 changes: 0 additions & 12 deletions lib/main/localizations/app_localizations.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3028,18 +3028,6 @@ class AppLocalizations {
name: 'messageEventActionBannerOrganizerCanceled');
}

String get subMessageEventActionBannerUpdated {
return Intl.message(
'"The time has been updated to better suit all of you"',
name: 'subMessageEventActionBannerUpdated');
}

String get subMessageEventActionBannerCanceled {
return Intl.message(
'"We are canceling the event due to bad weather."',
name: 'subMessageEventActionBannerCanceled');
}

String get anAttendee {
return Intl.message(
'An attendee',
Expand Down
Loading