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)}