properly translate month names in history
Robert Malikowski committed
Jul 1, 2026 at 17:24 UTC
ddd66b08eab342c73e8978d8948a1c21b812df38
1 file changed
+1
-1
lib/new-ui/widgets/coins_page/assets_history/history_section.dart
+1
-1
@@ -143,7 +143,7 @@ class HistorySection extends StatelessWidget {
143
} else if (item is DateSectionItem) {
144
return Padding(
145
padding: EdgeInsets.only(left: 8.0, bottom: 8.0, top: topPadding),
146
- child: Text(DateFormat("MMMM yyyy").format(item.date),
146
+ child: Text(DateFormat("MMMM yyyy", localeName).format(item.date),
147
style: TextStyle(
148
color: Theme.of(context).colorScheme.onSurfaceVariant)));
149
} else if (item is OrderListItem) {