Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
'fields' => array(
'cloudinary_folder' => array(
'label' => __( 'Cloudinary folder path', 'cloudinary' ),
'placeholder' => __( 'e.g.: wordpress_assets/', 'cloudinary' ),
'description' => __( 'Specify the folder in your Cloudinary account where WordPress assets are uploaded to. All assets uploaded to WordPress from this point on will be synced to the specified folder in Cloudinary. Leave blank to use the root of your Cloudinary library.', 'cloudinary' ),
'sanitize_callback' => array( '\Cloudinary\Media', 'sanitize_cloudinary_folder' ),
'suffix' => '<button type="submit" class="button button-primary">' . __( 'Save folder settings', 'cloudinary' ) . '</button>',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@
<?php if ( ! empty( $this->plugin->config['connect'] ) ) : ?>
<div class="settings-tab-section-card">
<div class="settings-tab-section-fields-dashboard-success">
<?php esc_html_e( 'Auto Sync is on', 'cloudinary' ); ?>
<?php esc_html_e( 'Auto Sync', 'cloudinary' ); ?>
<p class="description">
<?php esc_html_e( 'WordPress Media Library assets are synced with Cloudinary automatically when you connect your account.', 'cloudinary' ); ?><br>
<?php esc_html_e( 'If you had existing assets in your WordPress Media Library you may need to perform a Bulk-Sync below.', 'cloudinary' ); ?>
<?php esc_html_e( 'All of your assets will be kept in-sync with Cloudinary automatically when you connect your account. Existing WordPress assets will be uploaded to the Cloudinary folder specified below and any assets that exist in the Cloudinary folder will sync back to local storage on WordPress. Auto-syncing allows all assets to be available for delivery from your WordPress Media Library in-case the plugin is disabled.', 'cloudinary' ); ?><br>
</p>
</div>
</div>
Expand Down