Explorar el Código

feat(locales): add new release note for PWA availability in English and French locales
feat(notes.ts): include new release note entry for the Progressive Web App launch on June 19, 2025

Mathias hace 1 mes
padre
commit
b0a74de07e
Se han modificado 3 ficheros con 15 adiciones y 0 borrados
  1. 5 0
      locales/en.ts
  2. 5 0
      locales/fr.ts
  3. 5 0
      src/features/release-notes/model/notes.ts

+ 5 - 0
locales/en.ts

@@ -60,6 +60,11 @@ export default {
     title: "What's New",
     release_notes: "Release Notes",
     notes: {
+      note_2025_06_19: {
+        title: "📱 Now Available as a PWA!",
+        content:
+          "Workout.cool v1.2 is now a Progressive Web App! Install it on your phone for a native app experience with offline access. 🚀",
+      },
       note_2025_06_18: {
         title: "🚀 Featured #1 on Hacker News!",
         content:

+ 5 - 0
locales/fr.ts

@@ -60,6 +60,11 @@ export default {
     title: "Nouveautés",
     release_notes: "Notes",
     notes: {
+      note_2025_06_19: {
+        title: "📱 Maintenant disponible en PWA !",
+        content:
+          "Workout.cool v1.2 est maintenant une Progressive Web App ! Installez-la sur votre téléphone pour une expérience d'application native avec accès hors ligne. 🚀",
+      },
       note_2025_06_18: {
         title: "🚀 Mis en avant #1 sur Hacker News !",
         content:

+ 5 - 0
src/features/release-notes/model/notes.ts

@@ -5,6 +5,11 @@ export interface ReleaseNote {
 }
 
 export const releaseNotes: ReleaseNote[] = [
+  {
+    date: "2025-06-19",
+    titleKey: "release_notes.notes.note_2025_06_19.title",
+    contentKey: "release_notes.notes.note_2025_06_19.content",
+  },
   {
     date: "2025-06-18",
     titleKey: "release_notes.notes.note_2025_06_18.title",