From 8988dd4c4a1a9e7c4965eb0d31ef7293c25d558e Mon Sep 17 00:00:00 2001 From: Lucas Neves Pereira <44783073+lucasnevespereira@users.noreply.github.com> Date: Mon, 18 Aug 2025 14:06:55 +0200 Subject: [PATCH] feat: update release notes (#179) --- locales/en.ts | 5 +++++ locales/es.ts | 5 +++++ locales/fr.ts | 5 +++++ locales/pt.ts | 5 +++++ locales/ru.ts | 5 +++++ locales/zh-CN.ts | 5 +++++ src/features/release-notes/model/notes.ts | 5 +++++ 7 files changed, 35 insertions(+) diff --git a/locales/en.ts b/locales/en.ts index 618df23..853d930 100644 --- a/locales/en.ts +++ b/locales/en.ts @@ -1397,6 +1397,11 @@ export default { title: "What's New", release_notes: "Release Notes", notes: { + note_2025_08_18: { + title: "🏆 New Leaderboard Feature!", + content: + "
  • New leaderboard to compete with other workout champions
  • View rankings by all-time, monthly, and weekly periods
  • Track your position among the top performers
  • Motivate yourself to climb the rankings! 🚀
  • ", + }, note_2025_07_09: { title: "🎯 Exercise Selection, Favorites & New Tools", content: diff --git a/locales/es.ts b/locales/es.ts index c69d32f..011d333 100644 --- a/locales/es.ts +++ b/locales/es.ts @@ -528,6 +528,11 @@ export default { title: "Novedades", release_notes: "Notas", notes: { + note_2025_08_18: { + title: "🏆 ¡Nueva Funcionalidad de Clasificación!", + content: + "
  • Nueva clasificación para competir con otros campeones de entrenamiento
  • Ver rankings por períodos todos los tiempos, mensual y semanal
  • Rastrea tu posición entre los mejores performers
  • ¡Motívate para subir en la clasificación! 🚀
  • ", + }, note_2025_07_09: { title: "🎯 Selección de Ejercicios, Favoritos y Nuevas Herramientas", content: diff --git a/locales/fr.ts b/locales/fr.ts index 650a971..94276fd 100644 --- a/locales/fr.ts +++ b/locales/fr.ts @@ -1422,6 +1422,11 @@ export default { title: "Nouveautés", release_notes: "Notes", notes: { + note_2025_08_18: { + title: "🏆 Nouvelle Fonctionnalité Classement !", + content: + "
  • Nouveau classement pour concourir avec les autres champions d'entraînement
  • Voir les classements par périodes tous temps, mensuel et hebdomadaire
  • Suivez votre position parmi les meilleurs performers
  • Motivez-vous pour gravir le classement ! 🚀
  • ", + }, note_2025_07_09: { title: "🎯 Sélection d'exercices, Favoris & Nouveaux Outils", content: diff --git a/locales/pt.ts b/locales/pt.ts index 1be9c93..3303e65 100644 --- a/locales/pt.ts +++ b/locales/pt.ts @@ -1401,6 +1401,11 @@ export default { title: "Novidades", release_notes: "Notas de Lançamento", notes: { + note_2025_08_18: { + title: "🏆 Nova Funcionalidade de Classificação!", + content: + "
  • Nova classificação para competir com outros campeões de treino
  • Ver rankings por períodos global, mensal e semanal
  • Acompanhe a sua posição entre os melhores performers
  • Motive-se para subir na classificação! 🚀
  • ", + }, note_2025_07_09: { title: "🎯 Seleção de Exercícios, Favoritos e Novas Ferramentas", content: diff --git a/locales/ru.ts b/locales/ru.ts index ef255d5..e072b40 100644 --- a/locales/ru.ts +++ b/locales/ru.ts @@ -1388,6 +1388,11 @@ export default { title: "Что нового", release_notes: "Заметки о выпуске", notes: { + note_2025_08_18: { + title: "🏆 Новая Функция Таблицы Лидеров!", + content: + "
  • Новая таблица лидеров для соревнования с другими чемпионами тренировок
  • Просмотр рейтингов по периодам все время, месячный и недельный
  • Отслеживайте свою позицию среди лучших исполнителей
  • Мотивируйте себя подняться в рейтинге! 🚀
  • ", + }, note_2025_07_09: { title: "🎯 Выбор Упражнений, Избранное и Новые Инструменты", content: diff --git a/locales/zh-CN.ts b/locales/zh-CN.ts index 1497be8..ebd6c37 100644 --- a/locales/zh-CN.ts +++ b/locales/zh-CN.ts @@ -530,6 +530,11 @@ export default { title: "新功能", release_notes: "更新日志", notes: { + note_2025_08_18: { + title: "🏆 新排行榜功能!", + content: + "
  • 新的排行榜功能,与其他训练冠军竞争
  • 历史总榜、月榜和周榜查看排名
  • 跟踪您在顶级表现者中的位置
  • 激励自己攀登排行榜!🚀
  • ", + }, note_2025_07_09: { title: "🎯 运动选择、收藏和新工具", content: diff --git a/src/features/release-notes/model/notes.ts b/src/features/release-notes/model/notes.ts index 24fad4e..92da16a 100644 --- a/src/features/release-notes/model/notes.ts +++ b/src/features/release-notes/model/notes.ts @@ -5,6 +5,11 @@ export interface ReleaseNote { } export const releaseNotes: ReleaseNote[] = [ + { + date: "2025-08-18", + titleKey: "release_notes.notes.note_2025_08_18.title", + contentKey: "release_notes.notes.note_2025_08_18.content", + }, { date: "2025-07-09", titleKey: "release_notes.notes.note_2025_07_09.title",