added month localizations
This commit is contained in:
@@ -97,7 +97,7 @@ class ContentListTile extends StatelessWidget {
|
||||
? Padding(
|
||||
padding: const EdgeInsets.only(bottom: 8),
|
||||
child: Text(
|
||||
Tools.buildTimeString(startDate, endDate),
|
||||
Tools.buildTimeString(startDate, endDate, context),
|
||||
style: Theme.of(context).textTheme.labelSmall!.copyWith(
|
||||
color: Theme.of(context).colorScheme.secondary,
|
||||
),
|
||||
@@ -106,7 +106,7 @@ class ContentListTile extends StatelessWidget {
|
||||
: null,
|
||||
trailing: Breakpoints.sm < screenWidth
|
||||
? Text(
|
||||
Tools.buildTimeString(startDate, endDate),
|
||||
Tools.buildTimeString(startDate, endDate, context),
|
||||
style:
|
||||
TextStyle(color: Theme.of(context).colorScheme.secondary),
|
||||
)
|
||||
@@ -149,7 +149,7 @@ class ContentListTile extends StatelessWidget {
|
||||
Padding(
|
||||
padding: const EdgeInsets.only(bottom: 8),
|
||||
child: Text(
|
||||
Tools.buildTimeString(startDate, endDate),
|
||||
Tools.buildTimeString(startDate, endDate, context),
|
||||
style: Theme.of(context).textTheme.labelSmall!.copyWith(
|
||||
color: Theme.of(context).colorScheme.secondary,
|
||||
),
|
||||
@@ -160,7 +160,7 @@ class ContentListTile extends StatelessWidget {
|
||||
),
|
||||
trailing: Breakpoints.sm < screenWidth
|
||||
? Text(
|
||||
Tools.buildTimeString(startDate, endDate),
|
||||
Tools.buildTimeString(startDate, endDate, context),
|
||||
style:
|
||||
TextStyle(color: Theme.of(context).colorScheme.secondary),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user