Skip to content

Commit f9259c0

Browse files
authored
Merge pull request #253 from cloudinary/hotfix/feedback
Update feedback modal wording
2 parents ce5827f + 90d12a2 commit f9259c0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

php/class-deactivation.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -92,29 +92,29 @@ public function get_reasons() {
9292
return array(
9393
array(
9494
'id' => 'dont_understand_value',
95-
'text' => __( "I don't understand the value of the plugin.", 'cloudinary' ),
95+
'text' => __( 'I don’t get any value from the plugin.', 'cloudinary' ),
9696
),
9797
array(
9898
'id' => 'dont_know_how',
99-
'text' => __( "I don't know how to use the plugin.", 'cloudinary' ),
99+
'text' => __( 'I dont know how to use the plugin.', 'cloudinary' ),
100100
),
101101
array(
102102
'id' => 'temporary',
103-
'text' => __( "This is temporary. I'll use the plugin again soon.", 'cloudinary' ),
103+
'text' => __( 'This is temporary. Ill use the plugin again soon.', 'cloudinary' ),
104104
),
105105
array(
106106
'id' => 'technical_problems',
107-
'text' => __( 'I encountered technical problems while using it.', 'cloudinary' ),
107+
'text' => __( 'I encountered technical issues with the plugin.', 'cloudinary' ),
108108
'more' => true,
109109
),
110110
array(
111111
'id' => 'other_plugins',
112-
'text' => __( 'I use another plugin(s) that do(es) the job better.', 'cloudinary' ),
112+
'text' => __( 'I use another plugin that works better for me.', 'cloudinary' ),
113113
'more' => true,
114114
),
115115
array(
116116
'id' => 'other_reason',
117-
'text' => __( 'Other', 'cloudinary' ),
117+
'text' => __( 'Other.', 'cloudinary' ),
118118
'more' => true,
119119
),
120120
);
@@ -132,7 +132,7 @@ public function markup() {
132132
<div class="cloudinary-deactivation">
133133
<div class="modal-body">
134134
<p>
135-
<?php esc_html_e( 'We want to make it better for your next time!', 'cloudinary' ); ?>
135+
<?php esc_html_e( 'Please select a reason for deactivating so we can make our plugin better:', 'cloudinary' ); ?>
136136
</p>
137137
<ul>
138138
<?php foreach ( $this->get_reasons() as $reason ) : ?>
@@ -143,7 +143,7 @@ public function markup() {
143143
</label>
144144
<?php if ( ! empty( $reason['more'] ) ) : ?>
145145
<label for="more-<?php echo esc_attr( $reason['id'] ); ?>" class="more">
146-
<?php esc_html_e( 'Can you please add more details.', 'cloudinary' ); ?><br>
146+
<?php esc_html_e( 'Additional details:', 'cloudinary' ); ?><br>
147147
<textarea name="reason-more" id="more-<?php echo esc_attr( $reason['id'] ); ?>" cols="50" rows="5"></textarea>
148148
</label>
149149
<?php endif; ?>

0 commit comments

Comments
 (0)