update 24-48hrs -> within a week to give more realistic estimate (#6886)

This commit is contained in:
Prospector
2026-07-26 12:06:31 -07:00
committed by GitHub
parent 158de019a6
commit 24240d514a
2 changed files with 14 additions and 3 deletions
+4 -1
View File
@@ -3804,7 +3804,10 @@
"message": "You can still modify your project, it won't affect your position in the queue." "message": "You can still modify your project, it won't affect your position in the queue."
}, },
"project.moderation.admonition.under-review.body.4": { "project.moderation.admonition.under-review.body.4": {
"message": "We aim to review submissions in 24-48 hours, but some projects may face delays. This does not reflect an issue with your submission." "message": "We aim to review submissions in 2448 hours, but some projects may face delays. This does not reflect an issue with your submission."
},
"project.moderation.admonition.under-review.body.4.alt-week": {
"message": "We aim to review submissions within a week, but some projects may face delays. This does not reflect an issue with your submission."
}, },
"project.moderation.admonition.under-review.body.5": { "project.moderation.admonition.under-review.body.5": {
"message": "<emphasis>We appreciate your patience while our moderators work hard to keep Modrinth safe, and look forward to helping you share your content! 💚</emphasis>" "message": "<emphasis>We appreciate your patience while our moderators work hard to keep Modrinth safe, and look forward to helping you share your content! 💚</emphasis>"
@@ -333,10 +333,11 @@ const moderationAdmonition = computed<{
defaultMessage: defaultMessage:
"You can still modify your project, it won't affect your position in the queue.", "You can still modify your project, it won't affect your position in the queue.",
}), }),
// temp moved 24-48 hr below to keep old translation for future
defineMessage({ defineMessage({
id: 'project.moderation.admonition.under-review.body.4', id: 'project.moderation.admonition.under-review.body.4.alt-week',
defaultMessage: defaultMessage:
'We aim to review submissions in 24-48 hours, but some projects may face delays. This does not reflect an issue with your submission.', 'We aim to review submissions within a week, but some projects may face delays. This does not reflect an issue with your submission.',
}), }),
], ],
}, },
@@ -403,6 +404,13 @@ const moderationAdmonition = computed<{
return null return null
}) })
// unused 24-48hr message still defined here for later
defineMessage({
id: 'project.moderation.admonition.under-review.body.4',
defaultMessage:
'We aim to review submissions in 2448 hours, but some projects may face delays. This does not reflect an issue with your submission.',
})
const moderatorSeeUserUi = computed<boolean>({ const moderatorSeeUserUi = computed<boolean>({
get() { get() {
return flags.value.showModeratorProjectMemberUi return flags.value.showModeratorProjectMemberUi