From a268031b342b6d0288f1e892939a0d0cb1a24efb Mon Sep 17 00:00:00 2001 From: Richard Bergsma Date: Sat, 7 Jun 2025 13:25:33 +0200 Subject: [PATCH] Update translations and development page for consistency and clarity - Changed the title in translations.ts to '365DevNet Ecosystem: Development Overview' for better alignment with the page content. - Updated the heading style in development.astro for improved responsiveness and visual hierarchy. - Adjusted padding and layout in mobile commit info area for enhanced user experience. --- src/i18n/translations.ts | 2 +- src/pages/[lang]/development.astro | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/i18n/translations.ts b/src/i18n/translations.ts index c76d725..ba02076 100644 --- a/src/i18n/translations.ts +++ b/src/i18n/translations.ts @@ -166,7 +166,7 @@ export const translations: Record = { menu: 'Development', pageTitle: '365DevNet Ecosystem: Development Overview', pageDescription: 'See the latest development activity, code contributions, and commit history across all repositories in the 365DevNet ecosystem.', - title: 'Dev Dashboard', + title: '365DevNet Ecosystem: Development Overview', latestCommits: 'Latest Commits', intro: 'This page provides a transparent overview of ongoing development activity across all repositories in the 365DevNet ecosystem. The contribution calendar below visually represents code contributions (commits) made over the past year, with more intense squares indicating more active days. Below the calendar, you\'ll find a list of the most recent commits from all repositories, including details about each change. This helps users, contributors, and stakeholders track progress and stay up to date with the latest updates across the entire codebase.' }, diff --git a/src/pages/[lang]/development.astro b/src/pages/[lang]/development.astro index 518859d..2fcb1aa 100644 --- a/src/pages/[lang]/development.astro +++ b/src/pages/[lang]/development.astro @@ -112,7 +112,7 @@ const formatDate = (dateString) => {
-

{t.development.title || 'Development Progress'}

+

{t.development.title || 'Development Progress'}

{/* Collapsible Intro */} {/* Contribution Calendar */} @@ -173,14 +173,14 @@ const formatDate = (dateString) => { )}
{/* Mobile commit info area, visually separated and two rows with left/right alignment */} -
-
+
+
{commit.date ? formatDate(commit.date) : ''} {commit.author && ( {commit.author === 'becarta' ? 'Richard Bergsma' : commit.author} )}
-
+
{commit.repo && ( {commit.repo} @@ -189,7 +189,7 @@ const formatDate = (dateString) => { {commit.sha && ( Commit: - + {commit.sha.slice(0, 7)}