diff --git a/apps/web/public/locales/en.json b/apps/web/public/locales/en.json
index 7b77c42d5..e32c7e479 100644
--- a/apps/web/public/locales/en.json
+++ b/apps/web/public/locales/en.json
@@ -292,6 +292,7 @@
"Edit Menu": "Edit Menu",
"Edit Profile": "Edit Profile",
"Edit welcome message": "Edit welcome message",
+ "Edited": "Edited",
"Editing Group Menu": "Editing Group Menu",
"Email": "Email",
"Email address is not in a valid format": "Email address is not in a valid format",
@@ -655,6 +656,7 @@
"Post from": "Post from",
"Post from child group": "Post from child group",
"Post in": "Post in",
+ "Posted": "Posted",
"Posted In:": "Posted In:",
"Posting...": "Posting...",
"Posts": "Posts",
@@ -1116,6 +1118,7 @@
"new comments on posts you're following?": "new comments on posts you're following?",
"new markets": "new markets",
"no more than {{maxTags}} allowed": "no more than {{maxTags}} allowed",
+ "now": "now",
"nutrient density": "nutrient density",
"of": "of",
"offer": "Offer",
diff --git a/apps/web/public/locales/es.json b/apps/web/public/locales/es.json
index 64aa4f4c7..872e1a262 100644
--- a/apps/web/public/locales/es.json
+++ b/apps/web/public/locales/es.json
@@ -291,6 +291,7 @@
"Edit Menu": "Editar menú",
"Edit Profile": "Editar perfil",
"Edit welcome message": "Editar mensaje de bienvenida",
+ "Edited": "Editado",
"Editing Group Menu": "Menú del grupo de edición",
"Email": "Correo electrónico",
"Email address is not in a valid format": "La dirección de correo electrónico no tiene un formato válido",
@@ -661,6 +662,7 @@
"Post from": "Publicacion de",
"Post from child group": "Publicacion de subgrupo",
"Post in": "Publica en",
+ "Posted": "Publicado",
"Posted In:": "Publicado en:",
"Posting...": "Publicando...",
"Posts": "Publicaciones",
@@ -822,7 +824,7 @@
"Start typing to add a topic": "Comienza a escribir para agregar un tema",
"Start typing to find/create a topic to add": "Comience a escribir para encontrar/crear un tema para agregar",
"Started: {{from}}": "Empezó desde: {{from}}",
- "Starts: {{from}}": "Comienza: {{desde}}",
+ "Starts: {{from}}": "Comienza desde: {{from}}",
"Stay connected, organized, and engaged with your group.": "Manténte conectado, organizado y comprometido con tu grupo.",
"Stream": "Flujo",
"Subgroups": "Subgrupos",
@@ -1116,6 +1118,7 @@
"new comments on posts you're following?": "¿nuevos comentarios en las publicaciones que estás siguiendo?",
"new markets": "nuevos mercados",
"no more than {{maxTags}} allowed": "no más de {{maxTags}} permitido",
+ "now": "ahora",
"nutrient density": "densidad de nutrientes",
"of": "de",
"offer": "Oferta",
diff --git a/apps/web/src/components/PostBigGridItem/PostBigGridItem.js b/apps/web/src/components/PostBigGridItem/PostBigGridItem.js
index 6311fa542..42aaf5974 100644
--- a/apps/web/src/components/PostBigGridItem/PostBigGridItem.js
+++ b/apps/web/src/components/PostBigGridItem/PostBigGridItem.js
@@ -24,10 +24,12 @@ export default function PostBigGridItem ({
expanded
}) {
const {
+ id,
title,
details,
creator,
- createdTimestamp,
+ createdTimestampForBigGrd,
+ exactCreatedTimestamp,
attachments
} = post
const { t } = useTranslation()
@@ -156,8 +158,8 @@ export default function PostBigGridItem ({
{creator.name}
-
- {createdTimestamp}
+
+ {createdTimestampForBigGrd}
@@ -171,6 +173,11 @@ export default function PostBigGridItem ({
+
)
}
diff --git a/apps/web/src/components/PostCard/ChatCard/ChatCard.js b/apps/web/src/components/PostCard/ChatCard/ChatCard.js
index cd9bcef2f..c1a10b347 100644
--- a/apps/web/src/components/PostCard/ChatCard/ChatCard.js
+++ b/apps/web/src/components/PostCard/ChatCard/ChatCard.js
@@ -9,6 +9,7 @@ import HyloHTML from 'components/HyloHTML'
import RoundImage from 'components/RoundImage'
import classes from './ChatCard.module.scss'
+import { getLocaleAsString } from 'components/Calendar/calendar-util'
export default function ChatCard ({
expanded,
@@ -32,7 +33,7 @@ export default function ChatCard ({
{!slug && in {firstGroup}}
- {DateTime.fromISO(post.createdAt).toFormat('yyyy t')}
+ {DateTime.fromISO(post.createdAt).setLocale(getLocaleAsString()).toFormat('yyyy t')}
diff --git a/apps/web/src/components/PostCard/EventDate/EventDate.js b/apps/web/src/components/PostCard/EventDate/EventDate.js
index 115d44606..48872282c 100644
--- a/apps/web/src/components/PostCard/EventDate/EventDate.js
+++ b/apps/web/src/components/PostCard/EventDate/EventDate.js
@@ -1,10 +1,11 @@
import React from 'react'
import { DateTime } from 'luxon'
import classes from './EventDate.module.scss'
+import { getLocaleAsString } from 'components/Calendar/calendar-util'
export default function EventDate ({ startTime }) {
if (!startTime) return null
- const start = DateTime.fromISO(startTime)
+ const start = DateTime.fromISO(startTime).setLocale(getLocaleAsString())
return (