mirror of
https://github.com/discourse/discourse.git
synced 2025-06-01 17:40:43 +08:00
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:
@ -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(
|
||||
|
@ -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."
|
||||
|
Reference in New Issue
Block a user