From 21b62f789426878bafb6c3a04f5d67ac3dcdbb75 Mon Sep 17 00:00:00 2001 From: ScottMastro Date: Sun, 7 Jul 2024 20:42:31 -0400 Subject: [PATCH] FIX: typo in poll "closed" (#27748) Reference to string poll.results.close.title should be "closed" instead of "close" --- .../poll/assets/javascripts/discourse/components/poll-info.gjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/poll/assets/javascripts/discourse/components/poll-info.gjs b/plugins/poll/assets/javascripts/discourse/components/poll-info.gjs index e412ba3dc32..34bdb7ed928 100644 --- a/plugins/poll/assets/javascripts/discourse/components/poll-info.gjs +++ b/plugins/poll/assets/javascripts/discourse/components/poll-info.gjs @@ -118,7 +118,7 @@ export default class PollInfoComponent extends Component { } get resultsOnCloseTitle() { - return htmlSafe(I18n.t("poll.results.close.title")); + return htmlSafe(I18n.t("poll.results.closed.title")); } get resultsStaffOnly() {