From 90d12a2fb4811b35e8498595c39a11667affb523 Mon Sep 17 00:00:00 2001 From: Marco Pereirinha Date: Mon, 2 Nov 2020 14:46:59 +0000 Subject: [PATCH] Update feedback modal wording --- php/class-deactivation.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/php/class-deactivation.php b/php/class-deactivation.php index cce130846..746c3b391 100644 --- a/php/class-deactivation.php +++ b/php/class-deactivation.php @@ -92,29 +92,29 @@ public function get_reasons() { return array( array( 'id' => 'dont_understand_value', - 'text' => __( "I don't understand the value of the plugin.", 'cloudinary' ), + 'text' => __( 'I don’t get any value from the plugin.', 'cloudinary' ), ), array( 'id' => 'dont_know_how', - 'text' => __( "I don't know how to use the plugin.", 'cloudinary' ), + 'text' => __( 'I don’t know how to use the plugin.', 'cloudinary' ), ), array( 'id' => 'temporary', - 'text' => __( "This is temporary. I'll use the plugin again soon.", 'cloudinary' ), + 'text' => __( 'This is temporary. I’ll use the plugin again soon.', 'cloudinary' ), ), array( 'id' => 'technical_problems', - 'text' => __( 'I encountered technical problems while using it.', 'cloudinary' ), + 'text' => __( 'I encountered technical issues with the plugin.', 'cloudinary' ), 'more' => true, ), array( 'id' => 'other_plugins', - 'text' => __( 'I use another plugin(s) that do(es) the job better.', 'cloudinary' ), + 'text' => __( 'I use another plugin that works better for me.', 'cloudinary' ), 'more' => true, ), array( 'id' => 'other_reason', - 'text' => __( 'Other', 'cloudinary' ), + 'text' => __( 'Other.', 'cloudinary' ), 'more' => true, ), ); @@ -132,7 +132,7 @@ public function markup() {