diff --git a/CHANGELOG.md b/CHANGELOG.md index d8eaa00..7117c8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.6] - 2026-04-04 + +### Fixed +- Fix untranslated category names in tasks (group headers), budget (bar chart labels, transaction meta) - all displayed category strings now go through i18n mapping (#11) + ## [0.7.5] - 2026-04-04 ### Fixed diff --git a/package.json b/package.json index 412583b..4cece47 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "oikos", - "version": "0.7.5", + "version": "0.7.6", "description": "Self-hosted family planner - calendar, tasks, shopping, meal planning, budget and more. Private, open-source, no subscription.", "main": "server/index.js", "type": "module", diff --git a/public/pages/budget.js b/public/pages/budget.js index 17e4cbb..636b8e2 100644 --- a/public/pages/budget.js +++ b/public/pages/budget.js @@ -254,7 +254,7 @@ function renderCategoryBars(byCategory) { return `
-
${esc(c.category)}
+
${esc(CATEGORY_LABELS()[c.category] ?? c.category)}
@@ -291,7 +291,7 @@ function renderEntries() {
${esc(e.title)}
- +
${sign}${formatAmount(e.amount)}