From f3c64de1b8eb66e73d059e97e6ee5f96cc853911 Mon Sep 17 00:00:00 2001 From: "baris.alis" Date: Mon, 6 Jul 2026 17:30:05 +0200 Subject: [PATCH 1/2] * Update welcome and help message --- .../polls/services/UserCommunicationService.kt | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/main/kotlin/com/wire/apps/polls/services/UserCommunicationService.kt b/src/main/kotlin/com/wire/apps/polls/services/UserCommunicationService.kt index 4296e77..0405677 100644 --- a/src/main/kotlin/com/wire/apps/polls/services/UserCommunicationService.kt +++ b/src/main/kotlin/com/wire/apps/polls/services/UserCommunicationService.kt @@ -25,11 +25,17 @@ class UserCommunicationService( private companion object { private const val WELCOME_TEXT = - "πŸ‘‹ Hi, I'm the Poll App. Thanks for adding me to the conversation.\n" + - "You can use me to create polls directly in Wire.\n" + - "I'm here to help make everyday work a little easier.\n" - const val USAGE = "To create poll please text: " + - "`/poll \"Question\" \"Option 1\" \"Option 2\"`. To display usage write `/poll help`" + "Hi there,\n" + + "I'm the Poll app. Let me help you make decisions and get feedback " + + "from your team.\n\n" + + "Here’s how it works:\n" + + "πŸ—³οΈ Your votes are always anonymous\n" + + "πŸ“Š People can view the current vote count at any time.\n" + + "πŸ” Get a reminder how to start a poll by entering `/poll help`\n\n" + + private const val USAGE = + "To start a poll use this command:\n" + + "`/poll \"What do you want for lunch?\" \"Pizza\" \"Sushi\" \"Burgers\"`" const val WELCOME_MESSAGE = WELCOME_TEXT + USAGE } From 8aa20f21403239e67b8678c1648fdf94f82b7a04 Mon Sep 17 00:00:00 2001 From: "baris.alis" Date: Mon, 6 Jul 2026 17:46:11 +0200 Subject: [PATCH 2/2] * remove dot from second sentence. * Use same apostrophes for both case. --- .../com/wire/apps/polls/services/UserCommunicationService.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/com/wire/apps/polls/services/UserCommunicationService.kt b/src/main/kotlin/com/wire/apps/polls/services/UserCommunicationService.kt index 0405677..460e155 100644 --- a/src/main/kotlin/com/wire/apps/polls/services/UserCommunicationService.kt +++ b/src/main/kotlin/com/wire/apps/polls/services/UserCommunicationService.kt @@ -28,9 +28,9 @@ class UserCommunicationService( "Hi there,\n" + "I'm the Poll app. Let me help you make decisions and get feedback " + "from your team.\n\n" + - "Here’s how it works:\n" + + "Here's how it works:\n" + "πŸ—³οΈ Your votes are always anonymous\n" + - "πŸ“Š People can view the current vote count at any time.\n" + + "πŸ“Š People can view the current vote count at any time\n" + "πŸ” Get a reminder how to start a poll by entering `/poll help`\n\n" private const val USAGE =