Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions php/class-deactivation.php
Original file line number Diff line number Diff line change
Expand Up @@ -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 dont 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. Ill 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,
),
);
Expand All @@ -132,7 +132,7 @@ public function markup() {
<div class="cloudinary-deactivation">
<div class="modal-body">
<p>
<?php esc_html_e( 'We want to make it better for your next time!', 'cloudinary' ); ?>
<?php esc_html_e( 'Please select a reason for deactivating so we can make our plugin better:', 'cloudinary' ); ?>
</p>
<ul>
<?php foreach ( $this->get_reasons() as $reason ) : ?>
Expand All @@ -143,7 +143,7 @@ public function markup() {
</label>
<?php if ( ! empty( $reason['more'] ) ) : ?>
<label for="more-<?php echo esc_attr( $reason['id'] ); ?>" class="more">
<?php esc_html_e( 'Can you please add more details.', 'cloudinary' ); ?><br>
<?php esc_html_e( 'Additional details:', 'cloudinary' ); ?><br>
<textarea name="reason-more" id="more-<?php echo esc_attr( $reason['id'] ); ?>" cols="50" rows="5"></textarea>
</label>
<?php endif; ?>
Expand Down