Skip to content

Commit 59a57d8

Browse files
chore: tweaks
1 parent 0620fcb commit 59a57d8

15 files changed

+67
-73
lines changed

.github/workflows/create-build-url.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build and publish the ZIP build file
22

33
on:
44
pull_request:
5-
types: [ opened, synchronize, ready_for_review ]
5+
types: [opened, synchronize, ready_for_review]
66
branches-ignore:
77
- "update_dependencies"
88
jobs:
@@ -31,6 +31,8 @@ jobs:
3131
run: composer install --no-dev --prefer-dist --no-progress --no-suggest
3232
- name: Install npm deps
3333
run: npm ci
34+
- name: Set version to Stable Tag
35+
run: npm run grunt:version
3436
- name: Build files
3537
run: npm run build
3638
- name: Create zip

.github/workflows/deploy-stagging.yml

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
run: composer install --no-dev --prefer-dist --no-progress --no-suggest
3434
- name: Install npm deps
3535
run: npm ci
36+
- name: Set version to Stable Tag
37+
run: npm run grunt:version
3638
- name: Build files
3739
run: npm run build
3840
- name: Zip files

.github/workflows/deploy.yml

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
run: composer install --no-dev --prefer-dist --no-progress --no-suggest
2222
- name: Install npm deps
2323
run: npm ci
24+
- name: Set version to Stable Tag
25+
run: npm run grunt:version
2426
- name: Build files
2527
run: npm run build
2628
- name: Build zip

Gruntfile.js

+12-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,18 @@ module.exports = function( grunt ) {
8585
flags: ''
8686
},
8787
src: [ 'plugins/otter-pro/otter-pro.php' ]
88-
}
88+
},
89+
readmetxt: {
90+
options: {
91+
prefix: 'Stable tag:\\s*'
92+
},
93+
src: [
94+
'readme.txt',
95+
'plugins/blocks-animation/readme.txt',
96+
'plugins/blocks-css/readme.txt',
97+
'plugins/blocks-export-import/readme.txt',
98+
]
99+
},
89100
},
90101
wp_readme_to_markdown: {
91102
plugin: {

bin/dist.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,14 @@ else
2222
DIST_FOLDER=$BUILD_NAME
2323
fi
2424

25+
2526
# Take all the files, filter the dev ones (e.g. node_modules, src), and save the result to './dist'
2627
rsync -rc --exclude-from ".distignore" "./" "dist/$DIST_FOLDER"
2728

2829
# Change the individual sub-text-domain for the included sub-plugins in the main one.
29-
composer run format-dist -- "dist/$DIST_FOLDER"
30+
composer install --prefer-dist --no-progress --no-suggest
31+
composer run format-dist -- "./dist/$DIST_FOLDER"
32+
composer install --no-dev --prefer-dist --no-progress --no-suggest
3033

3134
cd dist
3235

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"format": "phpcbf",
4040
"phpunit": "phpunit",
4141
"phpstan": "phpstan analyse --memory-limit 2G",
42-
"format-dist": "phpcbf --standard=phpcs.export.xml $1"
42+
"format-dist": "phpcbf --standard=phpcs.export.xml"
4343
},
4444
"prefer-stable": true,
4545
"config": {

inc/class-blocks-animation.php

+10-21
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ public function init() {
4444
if ( ! defined( 'BLOCKS_ANIMATION_URL' ) ) {
4545
define( 'BLOCKS_ANIMATION_URL', OTTER_BLOCKS_URL );
4646
define( 'BLOCKS_ANIMATION_PATH', OTTER_BLOCKS_PATH );
47+
define( 'BLOCKS_ANIMATION_OTTER', true );
4748
}
4849

4950
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_editor_assets' ) );
@@ -63,7 +64,8 @@ public function init() {
6364
* @access public
6465
*/
6566
public function enqueue_editor_assets() {
66-
$asset_file = include BLOCKS_ANIMATION_PATH . '/build/animation/index.asset.php';
67+
$asset_file = include BLOCKS_ANIMATION_PATH . '/build/animation/index.asset.php';
68+
$is_using_otter_files = defined( 'BLOCKS_ANIMATION_OTTER' );
6769

6870
wp_enqueue_style(
6971
'otter-animation',
@@ -92,11 +94,7 @@ public function enqueue_editor_assets() {
9294
)
9395
);
9496

95-
if ( ! defined( 'BLOCKS_ANIMATION_URL' ) ) {
96-
wp_set_script_translations( 'otter-animation', 'otter-blocks' );
97-
} else {
98-
wp_set_script_translations( 'otter-animation', 'blocks-animation' );
99-
}
97+
wp_set_script_translations( 'otter-animation', $is_using_otter_files ? 'otter-blocks' : 'blocks-animation' );
10098

10199
$asset_file = include BLOCKS_ANIMATION_PATH . '/build/animation/anim-count.asset.php';
102100
wp_enqueue_script(
@@ -109,11 +107,7 @@ public function enqueue_editor_assets() {
109107

110108
wp_script_add_data( 'otter-count', 'defer', true );
111109

112-
if ( ! defined( 'BLOCKS_ANIMATION_URL' ) ) {
113-
wp_set_script_translations( 'otter-count', 'otter-blocks' );
114-
} else {
115-
wp_set_script_translations( 'otter-count', 'blocks-animation' );
116-
}
110+
wp_set_script_translations( 'otter-count', $is_using_otter_files ? 'otter-blocks' : 'blocks-animation' );
117111

118112
wp_enqueue_script(
119113
'otter-typing',
@@ -125,11 +119,7 @@ public function enqueue_editor_assets() {
125119

126120
wp_script_add_data( 'otter-typing', 'defer', true );
127121

128-
if ( ! defined( 'BLOCKS_ANIMATION_URL' ) ) {
129-
wp_set_script_translations( 'otter-typing', 'otter-blocks' );
130-
} else {
131-
wp_set_script_translations( 'otter-typing', 'blocks-animation' );
132-
}
122+
wp_set_script_translations( 'otter-typing', $is_using_otter_files ? 'otter-blocks' : 'blocks-animation' );
133123
}
134124

135125
/**
@@ -267,11 +257,10 @@ public function render_welcome_notice() {
267257
true
268258
);
269259

270-
if ( ! defined( 'BLOCKS_ANIMATION_URL' ) ) {
271-
wp_set_script_translations( 'otter-animation-welcome-notice-scripts', 'otter-blocks' );
272-
} else {
273-
wp_set_script_translations( 'otter-animation-welcome-notice-scripts', 'blocks-animation' );
274-
}
260+
wp_set_script_translations(
261+
'otter-animation-welcome-notice-scripts',
262+
defined( 'BLOCKS_ANIMATION_OTTER' ) ? 'otter-blocks' : 'blocks-animation'
263+
);
275264

276265
wp_localize_script(
277266
'otter-animation-welcome-notice-scripts',

inc/class-blocks-css.php

+2-5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ public function init() {
2626
if ( ! defined( 'BLOCKS_CSS_URL' ) ) {
2727
define( 'BLOCKS_CSS_URL', OTTER_BLOCKS_URL );
2828
define( 'BLOCKS_CSS_PATH', OTTER_BLOCKS_PATH );
29+
define( 'BLOCKS_CSS_OTTER', true );
2930
}
3031

3132
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_editor_assets' ), 1 );
@@ -86,11 +87,7 @@ public function enqueue_editor_assets() {
8687
)
8788
);
8889

89-
if ( ! defined( 'BLOCKS_CSS_URL' ) ) {
90-
wp_set_script_translations( 'otter-css', 'otter-blocks' );
91-
} else {
92-
wp_set_script_translations( 'otter-css', 'blocks-css' );
93-
}
90+
wp_set_script_translations( 'otter-css', defined( 'BLOCKS_CSS_OTTER' ) ? 'otter-blocks' : 'blocks-css' );
9491

9592
wp_enqueue_style(
9693
'otter-css',

inc/class-blocks-export-import.php

+2-5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ public function init() {
2626
if ( ! defined( 'BLOCKS_EXPORT_IMPORT_URL' ) ) {
2727
define( 'BLOCKS_EXPORT_IMPORT_URL', OTTER_BLOCKS_URL );
2828
define( 'BLOCKS_EXPORT_IMPORT_PATH', OTTER_BLOCKS_PATH );
29+
define( 'BLOCKS_EXPORT_OTTER', true );
2930
}
3031

3132
add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_editor_assets' ), 1 );
@@ -48,11 +49,7 @@ public function enqueue_editor_assets() {
4849
true
4950
);
5051

51-
if ( ! defined( 'BLOCKS_EXPORT_IMPORT_URL' ) ) {
52-
wp_set_script_translations( 'blocks-export-import', 'otter-blocks' );
53-
} else {
54-
wp_set_script_translations( 'blocks-export-import', 'blocks-export-import' );
55-
}
52+
wp_set_script_translations( 'blocks-export-import', defined( 'BLOCKS_EXPORT_OTTER' ) ? 'otter-blocks' : 'blocks-export-import' );
5653
}
5754

5855
/**

inc/class-main.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ public function about_page() {
582582
'logo' => esc_url_raw( OTTER_BLOCKS_URL . 'assets/images/logo-alt.png' ),
583583
'has_upgrade_menu' => ! DEFINED( 'OTTER_PRO_VERSION' ),
584584
'upgrade_link' => tsdk_translate_link( tsdk_utmify( Pro::get_url(), 'editor', Pro::get_reference() ) ),
585-
'upgrade_text' => __( 'Get Otter Pro', 'blocks-animation' ),
585+
'upgrade_text' => __( 'Get Otter Pro', 'otter-blocks' ),
586586
);
587587
}
588588

inc/class-pro.php

+16-16
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ public function should_show_dashboard_upsell() {
207207
public function register_metabox( $post_type ) {
208208
add_meta_box(
209209
'otter_woo_builder',
210-
__( 'WooCommerce Builder by Otter', 'otter-pro' ),
210+
__( 'WooCommerce Builder by Otter', 'otter-blocks' ),
211211
array( $this, 'render_metabox_upsell' ),
212212
'product',
213213
'side',
@@ -241,17 +241,17 @@ public function render_metabox_upsell( $post_type ) {
241241
}
242242
</style>
243243
<div class="clear o-upsell">
244-
<p><?php _e( 'Unlock the full power of WooCommerce Builder with Otter Pro:', 'otter-pro' ); ?></p>
244+
<p><?php _e( 'Unlock the full power of WooCommerce Builder with Otter Pro:', 'otter-blocks' ); ?></p>
245245

246246
<ul>
247-
<li><?php _e( 'WooCommerce Block Builder', 'otter-pro' ); ?></li>
248-
<li><?php _e( 'Add to Cart Block', 'otter-pro' ); ?></li>
249-
<li><?php _e( 'Review Comparison Block', 'otter-pro' ); ?></li>
250-
<li><?php _e( 'Priority Support', 'otter-pro' ); ?></li>
247+
<li><?php _e( 'WooCommerce Block Builder', 'otter-blocks' ); ?></li>
248+
<li><?php _e( 'Add to Cart Block', 'otter-blocks' ); ?></li>
249+
<li><?php _e( 'Review Comparison Block', 'otter-blocks' ); ?></li>
250+
<li><?php _e( 'Priority Support', 'otter-blocks' ); ?></li>
251251
</ul>
252252

253253
<a href="<?php echo esc_url_raw( tsdk_translate_link( tsdk_utmify( self::get_url(), 'woobuilder', 'wooproducteditor' ) ) ); ?>" target="_blank" class="button button-primary">
254-
<?php _e( 'Discover Otter Pro', 'otter-pro' ); ?>
254+
<?php _e( 'Discover Otter Pro', 'otter-blocks' ); ?>
255255
</a>
256256
</div>
257257
<?php
@@ -260,10 +260,10 @@ public function render_metabox_upsell( $post_type ) {
260260

261261
?>
262262
<div class="clear">
263-
<p><?php _e( 'Unlock the full power of WooCommerce Builder by activating Otter Pro license.', 'otter-pro' ); ?></p>
263+
<p><?php _e( 'Unlock the full power of WooCommerce Builder by activating Otter Pro license.', 'otter-blocks' ); ?></p>
264264

265265
<a href="<?php echo esc_url( admin_url( 'admin.php?page=otter' ) ); ?>" target="_blank" class="button button-primary">
266-
<?php _e( 'Activate License', 'otter-pro' ); ?>
266+
<?php _e( 'Activate License', 'otter-blocks' ); ?>
267267
</a>
268268
</div>
269269
<?php
@@ -276,15 +276,15 @@ public function render_metabox_upsell( $post_type ) {
276276
* @access public
277277
*/
278278
public function old_neve_notice() {
279-
$plugin_name = __( 'Block Editor Booster', 'otter-pro' );
280-
$message = __( 'You need to make sure Neve & Neve Pro Addons are updated to the latest version to continue using Block Editor Booster.', 'otter-pro' );
279+
$plugin_name = __( 'Block Editor Booster', 'otter-blocks' );
280+
$message = __( 'You need to make sure Neve & Neve Pro Addons are updated to the latest version to continue using Block Editor Booster.', 'otter-blocks' );
281281

282282
printf(
283283
'<div class="error"><p><b>%1$s</b> %2$s <a href="%3$s">%4$s</a></p></div>',
284284
esc_html( $plugin_name ),
285285
esc_html( $message ),
286286
esc_url( admin_url( 'update-core.php' ) ),
287-
esc_html__( 'Update', 'otter-pro' )
287+
esc_html__( 'Update', 'otter-blocks' )
288288
);
289289
}
290290

@@ -320,8 +320,8 @@ public function dashboard_upsell_notice() {
320320
jQuery( document ).ready( () => disableNotice( jQuery ) );
321321
</script>
322322
<?php
323-
$prefix = __( 'You\'re using Otter!', 'otter-pro' );
324-
$message = __( 'Enhance your WordPress site building with Otter Pro.', 'otter-pro' );
323+
$prefix = __( 'You\'re using Otter!', 'otter-blocks' );
324+
$message = __( 'Enhance your WordPress site building with Otter Pro.', 'otter-blocks' );
325325
$notice = printf(
326326
'<div class="o-notice notice notice-info is-dismissible">
327327
<svg style="float: left; margin: .5em 0; padding: 2px; padding-right: 10px;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 29 32" width="20" height="20" class"otter-icon"><path d="M19.831 7.877c0.001-0.003 0.001-0.005 0.001-0.009s-0-0.006-0.001-0.009l0 0c-0.047-0.081-0.092-0.164-0.132-0.247l-0.057-0.115c-0.277-0.498-0.381-0.99-1.033-1.064h-0.045c-0.001 0-0.002 0-0.003 0-0.486 0-0.883 0.382-0.908 0.862l-0 0.002c0.674 0.126 1.252 0.278 1.813 0.468l-0.092-0.027 0.283 0.096 0.147 0.053s0.028 0 0.028-0.011z" /><path d="M23.982 13.574c-0.008-2.41-0.14-4.778-0.39-7.112l0.026 0.299 0.070-0.019c0.459-0.139 0.787-0.558 0.787-1.053 0-0.479-0.307-0.887-0.735-1.037l-0.008-0.002h-0.026c-0.479-0.164-0.874-0.468-1.149-0.861l-0.005-0.007c-2.7-3.96-8.252-3.781-8.252-3.781s-5.55-0.179-8.25 3.781c-0.28 0.401-0.676 0.704-1.14 0.862l-0.016 0.005c-0.441 0.148-0.754 0.557-0.754 1.040 0 0.009 0 0.017 0 0.026l-0-0.001c-0 0.010-0.001 0.022-0.001 0.034 0 0.493 0.335 0.907 0.789 1.029l0.007 0.002 0.045 0.011c-0.224 2.034-0.356 4.403-0.364 6.801l-0 0.012s-9.493 13.012-1.277 17.515c4.733 2.431 6.881-0.769 6.881-0.769s1.397-1.661-1.784-3.355v-4.609c0.006-0.344 0.282-0.621 0.625-0.628h1.212v-0.59c0-0.275 0.223-0.498 0.498-0.498v0h1.665c0.274 0.001 0.496 0.224 0.496 0.498 0 0 0 0 0 0v0 0.59h2.721v-0.59c0-0.275 0.223-0.498 0.498-0.498v0h1.665c0.271 0.005 0.49 0.226 0.49 0.498 0 0 0 0 0 0v0 0.59h1.209c0 0 0 0 0 0 0.349 0 0.633 0.28 0.639 0.627v4.584c-3.193 1.703-1.784 3.355-1.784 3.355s2.148 3.193 6.879 0.769c8.222-4.503-1.269-17.515-1.269-17.515zM22.586 10.261c-0.097 1.461-0.67 2.772-1.563 3.797l0.007-0.008c-1.703 2.010-4.407 3.249-6.721 4.432v0c-2.325-1.177-5.026-2.416-6.736-4.432-0.883-1.019-1.455-2.329-1.555-3.769l-0.001-0.020c-0.126-2.22 0.583-5.929 3.044-6.74 2.416-0.788 3.947 1.288 4.494 2.227 0.152 0.258 0.429 0.428 0.745 0.428s0.593-0.17 0.743-0.424l0.002-0.004c0.551-0.932 2.080-3.008 4.494-2.22 2.474 0.805 3.174 4.513 3.046 6.734z" /><path d="M19.463 10.087h-0.028c-0.192 0.026-0.121 0.251-0.047 0.356 0.254 0.349 0.407 0.787 0.407 1.26 0 0.006-0 0.012-0 0.018v-0.001c-0.001 0.469-0.255 0.878-0.633 1.1l-0.006 0.003c-0.739 0.426-1.377-0.145-2.054-0.398-0.72-0.269-1.552-0.434-2.42-0.455l-0.009-0v-1.033c1.020-0.233 1.894-0.76 2.551-1.486l0.004-0.004c0.151-0.163 0.244-0.383 0.244-0.623 0-0.316-0.159-0.595-0.402-0.76l-0.003-0.002c-0.768-0.551-1.728-0.881-2.764-0.881-1.054 0-2.029 0.341-2.819 0.92l0.013-0.009c-0.224 0.166-0.367 0.429-0.367 0.726 0 0.226 0.083 0.433 0.221 0.591l-0.001-0.001c0.665 0.751 1.55 1.295 2.553 1.53l0.033 0.007v1.050c-0.742 0.021-1.448 0.14-2.118 0.343l0.057-0.015c-0.341 0.103-0.631 0.219-0.908 0.358l0.033-0.015c-0.519 0.26-1.037 0.436-1.58 0.121-0.371-0.213-0.617-0.607-0.617-1.058 0-0.002 0-0.004 0-0.007v0c0-0.002 0-0.004 0-0.007 0-0.47 0.153-0.905 0.411-1.257l-0.004 0.006c0.047-0.068 0.089-0.17 0.026-0.241s-0.189 0-0.27 0.030c-0.189 0.099-0.348 0.227-0.479 0.381l-0.002 0.002c-0.245 0.296-0.394 0.679-0.394 1.097 0 0.004 0 0.007 0 0.011v-0.001c0.008 0.706 0.393 1.321 0.964 1.651l0.009 0.005c0.296 0.178 0.654 0.283 1.036 0.283 0.364 0 0.706-0.095 1.001-0.263l-0.010 0.005c0.877-0.461 1.917-0.731 3.019-0.731 0.069 0 0.137 0.001 0.206 0.003l-0.010-0h0.030c1.277 0 2.382 0.266 3.266 0.775 0.27 0.159 0.594 0.253 0.94 0.253 0.001 0 0.002 0 0.003 0h-0c0.355-0.002 0.688-0.098 0.974-0.265l-0.009 0.005c0.606-0.357 1.007-1.007 1.007-1.75 0-0.001 0-0.003 0-0.004v0c0.001-0.026 0.002-0.056 0.002-0.086 0-0.625-0.34-1.171-0.846-1.462l-0.008-0.004c-0.056-0.040-0.125-0.065-0.199-0.070l-0.001-0zM13.101 8.831c-0.238 0.213-0.468 0.581-0.832 0.345-0.061-0.041-0.114-0.086-0.161-0.136l-0-0c-0.063-0.063-0.101-0.15-0.101-0.247 0-0.133 0.074-0.248 0.182-0.308l0.002-0.001c0.594-0.309 1.203-0.543 1.884-0.49-0.324 0.281-0.649 0.56-0.973 0.837z" /><path d="M15.89 13.578c-0.367 0.483-0.941 0.792-1.588 0.792s-1.221-0.309-1.585-0.787l-0.004-0.005c-0.064-0.103-0.177-0.171-0.306-0.171-0.199 0-0.36 0.161-0.36 0.36 0 0.091 0.034 0.174 0.090 0.238l-0-0c0.499 0.659 1.283 1.080 2.164 1.080s1.665-0.421 2.159-1.073l0.005-0.007c0.043-0.059 0.068-0.132 0.068-0.212 0-0.116-0.055-0.22-0.14-0.286l-0.001-0.001c-0.059-0.045-0.134-0.072-0.215-0.072-0.117 0-0.221 0.056-0.286 0.143l-0.001 0.001z" /><path d="M18.507 11.707c0 0.194-0.157 0.351-0.351 0.351s-0.351-0.157-0.351-0.351c0-0.194 0.157-0.351 0.351-0.351s0.351 0.157 0.351 0.351z" /><path d="M17.389 11.049c0 0.194-0.157 0.351-0.351 0.351s-0.351-0.157-0.351-0.351c0-0.194 0.157-0.351 0.351-0.351s0.351 0.157 0.351 0.351z" /><path d="M10.798 11.707c0 0.194-0.157 0.351-0.351 0.351s-0.351-0.157-0.351-0.351c0-0.194 0.157-0.351 0.351-0.351s0.351 0.157 0.351 0.351z" /><path d="M11.918 11.049c0 0.194-0.157 0.351-0.351 0.351s-0.351-0.157-0.351-0.351c0-0.194 0.157-0.351 0.351-0.351s0.351 0.157 0.351 0.351z" /><path d="M8.773 7.877c-0.001-0.003-0.002-0.005-0.002-0.009s0.001-0.006 0.002-0.009l-0 0c0.047-0.081 0.089-0.164 0.132-0.247 0.019-0.038 0.036-0.079 0.057-0.115 0.275-0.498 0.379-0.99 1.033-1.064h0.045c0 0 0.001 0 0.001 0 0.487 0 0.884 0.382 0.91 0.862l0 0.002c-0.678 0.124-1.261 0.277-1.827 0.468l0.092-0.027-0.275 0.096-0.1 0.036-0.045 0.017s-0.023 0-0.023-0.011z" /></svg>
@@ -369,7 +369,7 @@ public function dismiss_dashboard_notice() {
369369
public function add_cron_schedules( $schedules = array() ) {
370370
// Adds once monthly to the existing schedules.
371371
$schedules['monthly'] = array(
372-
'display' => __( 'Monthly', 'otter-pro' ),
372+
'display' => __( 'Monthly', 'otter-blocks' ),
373373
'interval' => 2635200,
374374
);
375375

@@ -420,7 +420,7 @@ public function add_pro_link( $links ) {
420420
$links[] = sprintf(
421421
'<a href="%s" target="_blank" style="color:#ed6f57;font-weight:bold;">%s</a>',
422422
esc_url_raw( tsdk_utmify( self::get_url(), 'pluginspage', 'action' ) ),
423-
__( 'Get Otter Pro', 'otter-pro' )
423+
__( 'Get Otter Pro', 'otter-blocks' )
424424
);
425425

426426
return $links;

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"prod:lite": "wp-scripts build --config webpack.config.js",
88
"prod:pro": "wp-scripts build --config webpack.config.pro.js",
99
"prod:grunt": "grunt build",
10+
"grunt:version": "grunt version",
1011
"start": "rm -rf build && npm-run-all --parallel dev:*",
1112
"dev:lite": "wp-scripts start --config webpack.config.js",
1213
"dev:pro": "wp-scripts start --config webpack.config.pro.js",

phpcs.export.xml

+4-17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0"?>
22
<ruleset name="">
33
<description>ThemeIsle ruleset</description>
4+
45
<rule ref="WordPress-VIP-Go" />
56

67
<rule ref="WordPress-Core" />
@@ -16,6 +17,7 @@
1617
<config name="testVersion" value="5.6-" />
1718

1819
<rule ref="PHPCompatibility" />
20+
1921
<rule ref="WordPress.WP.I18n">
2022
<properties>
2123
<property name="text_domain" type="array">
@@ -26,27 +28,12 @@
2628

2729
<rule ref="WordPress.Utils.I18nTextDomainFixer">
2830
<properties>
29-
<property name="old_text_domain" type="array">
30-
<element value="blocks-animation" />
31-
<element value="blocks-import-export" />
32-
<element value="otter-pro" />
33-
<element value="blocks-css" />
34-
</property>
31+
<property name="old_text_domain"
32+
value="blocks-animation,blocks-import-export,otter-pro,blocks-css" />
3533
<property name="new_text_domain" value="otter-blocks" />
3634
</properties>
3735
</rule>
3836

39-
40-
<arg name="extensions" value="php" />
41-
<arg value="s" />
42-
43-
<file>.</file>
44-
<exclude-pattern>node_modules/*</exclude-pattern>
4537
<exclude-pattern>vendor/*</exclude-pattern>
4638
<exclude-pattern>build/*</exclude-pattern>
47-
<exclude-pattern>tests/*</exclude-pattern>
48-
<exclude-pattern>Gruntfile.js</exclude-pattern>
49-
<exclude-pattern>cypress</exclude-pattern>
50-
<exclude-pattern>artifact/*</exclude-pattern>
51-
<exclude-pattern>assets/*</exclude-pattern>
5239
</ruleset>

src/animation/editor.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ function AnimationControls({
457457
>
458458
<img
459459
src={ typingPlaceholder }
460-
alt={ _( 'Using Count Animation in the Block Editor', 'blocks-animation' ) }
460+
alt={ __( 'Using Count Animation in the Block Editor', 'blocks-animation' ) }
461461
className="otter-animations-count-image"
462462
/>
463463

@@ -470,7 +470,7 @@ function AnimationControls({
470470
>
471471
<img
472472
src={ countPlaceholder }
473-
alt={ _( 'Using Typing Animation in the Block Editor', 'blocks-animation' ) }
473+
alt={ __( 'Using Typing Animation in the Block Editor', 'blocks-animation' ) }
474474
className="otter-animations-count-image"
475475
/>
476476

src/pro/blocks/review-comparison/placeholder.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,11 @@ const BlockPlaceholder = ({
5454

5555
<Button
5656

57-
/* translators: %s Label */
58-
label={ sprintf( __( 'Remove %s', 'otter-pro' ), label ) }
57+
label={ sprintf(
58+
// translators: %s label.
59+
__( 'Remove %s', 'otter-pro' ),
60+
label
61+
) }
5962
icon="dismiss"
6063
onClick={ () => toggleReview( value ) }
6164
/>

0 commit comments

Comments
 (0)