DEV: move chat time formats to core locales (#29236)

This change moves the date/time formats to core locales, so that they can be used outside of the plugin.
This commit is contained in:
David Battersby 2024-10-16 20:10:40 +04:00 committed by GitHub
parent 67b6997306
commit 6e6dbde898
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -25,6 +25,8 @@ en:
# Use Moment.js format string: https://momentjs.com/docs/#/displaying/format/
time: "h:mm a"
# Use Moment.js format string: https://momentjs.com/docs/#/displaying/format/
time_short: "h:mm"
# Use Moment.js format string: https://momentjs.com/docs/#/displaying/format/
time_with_zone: "hh:mm a (z)"
# Use Moment.js format string: https://momentjs.com/docs/#/displaying/format/
time_short_day: "ddd, h:mm a"

View File

@ -11,8 +11,8 @@ export default function formatChatDate(message, options = {}) {
const title = date.format(I18n.t("dates.long_with_year"));
const display =
options.mode === "tiny"
? date.format(I18n.t("chat.dates.time_tiny"))
: date.format(I18n.t("chat.dates.time"));
? date.format(I18n.t("dates.time_short"))
: date.format(I18n.t("dates.time"));
if (message.staged) {
return htmlSafe(

View File

@ -45,8 +45,6 @@ en:
deleted_chat_username: deleted
dates:
yesterday: "Yesterday"
time: "h:mm a"
time_tiny: "h:mm"
all_loaded: "Showing all messages"
already_enabled: "Chat is already enabled on this topic. Please refresh."
disabled_for_topic: "Chat is disabled on this topic."