Skip to content

Commit

Permalink
change live now to live
Browse files Browse the repository at this point in the history
  • Loading branch information
GravityDarkLab committed Feb 2, 2024
1 parent b0a5026 commit 66833ef
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/l10n/app_de.arb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
"my_courses": "Meine Kurse",
"public_courses": "Öffentliche Kurse",
"live_now": "Jetzt Live",
"live_now": "Live",
"pinned_courses": "Angeheftete Kurse",
"pinned_empty": "Sie haben keine angehefteten Kurse.",
"pin": "Anheften",
Expand Down
2 changes: 1 addition & 1 deletion lib/l10n/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
"my_courses": "My Courses",
"public_courses": "Public Courses",
"live_now": "Live Now",
"live_now": "Live",
"pinned_courses": "Pinned Courses",
"pinned_empty": "You have no pinned courses.",
"pin": "Pin",
Expand Down
2 changes: 1 addition & 1 deletion lib/l10n/app_es.arb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
"my_courses": "Mis Cursos",
"public_courses": "Cursos Públicos",
"live_now": "En Vivo Ahora",
"live_now": "En Vivo",
"pinned_courses": "Cursos Anclados",
"pinned_empty": "No tienes cursos anclados.",
"pin": "Anclar",
Expand Down
3 changes: 2 additions & 1 deletion lib/views/course_view/components/stream_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ class StreamCardState extends ConsumerState<StreamCard> {
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
_buildHeader(
title: widget.stream.name,
title: widget.stream.name != '' ? widget.stream.name : 'Lecture: ${DateFormat('EEEE. dd', Localizations.localeOf(context).toString())
.format(widget.stream.start.toDateTime())}',
subtitle: widget.stream.description,
length: widget.stream.duration,
themeData: themeData,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ class CourseDetailState extends ConsumerState<CourseDetail> {
final streamWithThumb = streamsWithThumb[index];
final stream = streamWithThumb.item1;
final thumbnail = _getThumbnailUrl(streamWithThumb.item2);

return Padding(
padding: const EdgeInsets.symmetric(vertical: 8.0),
child: StreamCard(
Expand Down

0 comments on commit 66833ef

Please sign in to comment.