@@ -921,14 +921,14 @@ export function Summary({
value={currentYear}
onValueChange={(value) => updateYear(value)}
>
-
+
{availableYears.map((year, index) => (
- Rok: {year}
+ {year}
))}
@@ -942,14 +942,16 @@ export function Summary({
setCurrentMonth(value);
}}
>
-
+
{years[currentYear].map((month, index) => (
- Miesiąc: {month}.{currentYear}
+ {DateTime.fromFormat(month, "LL")
+ .setLocale("pl")
+ .toFormat("LLLL")}
))}