Skip to content

Commit f413037

Browse files
authored
Merge pull request #973 from cloudinary/fix/3.2.0-build-1
Update previous build
2 parents 9a2e27d + 8ec6e71 commit f413037

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.0-build-1
1+
3.2.0-build-2

css/cloudinary.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

php/class-special-offer.php

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function filtered_settings( $settings ) {
5252
array(
5353
'type' => 'tag',
5454
'element' => 'div',
55-
'content' => __( 'Special Offer', 'cloudinary' ),
55+
'content' => __( 'Special Offer!', 'cloudinary' ),
5656
'attributes' => array(
5757
'class' => array(
5858
'cld-special-offer',
@@ -62,11 +62,9 @@ public function filtered_settings( $settings ) {
6262
array(
6363
'type' => 'panel',
6464
'title' => __( 'Get a small $29 plan', 'cloudinary' ),
65-
'description' => __( 'Contact us', 'cloudinary' ),
6665
'collapsible' => 'closed',
6766
array(
68-
'type' => 'tag',
69-
'element' => 'div',
67+
'type' => 'div',
7068
'content' => $this->get_special_offer_content(),
7169
),
7270
array(
@@ -75,7 +73,7 @@ public function filtered_settings( $settings ) {
7573
'url' => static function () {
7674
$args = array(
7775
'tf_360017815680' => 'help_with_plans',
78-
'tf_subject' => esc_attr( __( 'Request to Purchase the Small Plan', 'cloudinary' ) ),
76+
'tf_subject' => esc_attr( __( 'Request to Purchase the WordPress Small Plan', 'cloudinary' ) ),
7977
'tf_description' => esc_attr( __( "Hello,<br><br>I'm interested in purchasing the Small plan for $29. Could you please provide me with the next steps to complete the purchase?<br><br>Thank you!", 'cloudinary' ) ),
8078
);
8179
return Utils::get_support_link( $args );

php/sync/class-sync-queue.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ public function get_total_synced_media() {
412412
'error_count' => $errors_count,
413413
// translators: placeholders are the number of errors.
414414
'error_count_hr' => 0 === $errors_count ? '' : sprintf( _n( '%s error with assets', '%s errors with assets', $errors_count, 'cloudinary' ), number_format_i18n( $errors_count ) ),
415-
'error_clean_up' => 0 === $errors_count ? '' : __( 'Retry errored unsynced items', 'cloudinary' ),
415+
'error_clean_up' => 0 === $errors_count ? '' : __( 'Fix Sync Errors', 'cloudinary' ),
416416

417417
// Number of assets.
418418
'total_assets' => $total_assets, // This is a count of the assets in _cloudinary_relationships.

src/css/_variables.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ $color-cld-grey-blue: #c6d1db;
1616
$color-cld-light-grey: #eaecfa;
1717
$color-cld-description: rgba(0, 0, 1, 0.5);
1818
$color-cld-dark-description: rgba(0, 0, 1, 0.75);
19+
$color-cld-coral: #ff5050;
1920
$color-grey-background: #f1f1f1;
2021

2122
/** Sizes */

src/css/components/ui/_ui-components.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,12 @@
111111
}
112112

113113
&-special-offer {
114-
background-color: $color-cld-blue;
114+
background-color: $color-cld-coral;
115115
color: #fff;
116116
text-decoration: none;
117117
padding: 5px 14px;
118118
border-radius: 4px 4px 0 0;
119119
font-weight: bold;
120-
font-size: $size-button;
120+
font-size: $size-sidebar-title;
121121
margin: 2em 0 0;
122122
}

0 commit comments

Comments
 (0)