diff --git a/prosody-modules/mod_muc_poll/README.md b/prosody-modules/mod_muc_poll/README.md index 40ec5a4f..4dda4fe7 100644 --- a/prosody-modules/mod_muc_poll/README.md +++ b/prosody-modules/mod_muc_poll/README.md @@ -30,4 +30,4 @@ Here are the existing strings and default values: * poll_string_over: This poll is now over. * poll_string_vote_instructions: Send a message with an exclamation mark followed by your choice number to vote. Example: !1 * poll_string_invalid_choice: This choice is not valid. -* poll_string_anonymous_vote_ok: You vote is taken into account. Votes are anonymous, it will not be shown to other participants. +* poll_string_anonymous_vote_ok: Your vote is taken into account. Votes are anonymous, it will not be shown to other participants. diff --git a/prosody-modules/mod_muc_poll/poll.lib.lua b/prosody-modules/mod_muc_poll/poll.lib.lua index 973b02b7..a546ffd1 100644 --- a/prosody-modules/mod_muc_poll/poll.lib.lua +++ b/prosody-modules/mod_muc_poll/poll.lib.lua @@ -12,7 +12,7 @@ local poll_end_message = module:require("message").poll_end_message; local schedule_poll_update_message = module:require("message").schedule_poll_update_message; local string_poll_invalid_choice = module:get_option_string("poll_string_invalid_choice") or "This choice is not valid."; -local string_poll_anonymous_vote_ok = module:get_option_string("poll_string_anonymous_vote_ok") or "You vote is taken into account. Votes are anonymous, it will not be shown to other participants."; +local string_poll_anonymous_vote_ok = module:get_option_string("poll_string_anonymous_vote_ok") or "Your vote is taken into account. Votes are anonymous, it will not be shown to other participants."; local string_poll_over = module:get_option_string("poll_string_over") or "This poll is now over."; local scheduled_end = {};