dart-lang / i18n

A general mono-repo for Dart i18n and l10n packages.
BSD 3-Clause "New" or "Revised" License
58 stars 34 forks source link

A DateFormat that generates names with the first letter capitalized #814

Open blondie63 opened 3 months ago

blondie63 commented 3 months ago

Now when i use for example this code:

var now = DateTime(2023, 3, 25);
var formatter = DateFormat("EEEE d MMMM", "it_IT");

i have: lunedì 25 marzo

but i'd like and it's correct this: Lunedì 25 Marzo

Is it possible ?