Skip to content

Commit

Permalink
Sync branch [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
pirate-bot authored Apr 16, 2024
2 parents 6715dfd + d4545f9 commit bc9a1f4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
##### [Version 3.3.19](https://github.com/Codeinwp/themeisle-sdk/compare/v3.3.18...v3.3.19) (2024-04-15)

Add full translation support

##### [Version 3.3.18](https://github.com/Codeinwp/themeisle-sdk/compare/v3.3.17...v3.3.18) (2024-04-05)

### Big Fixes
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"homepage": "https://themeisle.com"
}
],
"version": "3.3.18",
"version": "3.3.19",
"require-dev": {
"codeinwp/phpcs-ruleset": "dev-main"
},
Expand Down
2 changes: 1 addition & 1 deletion load.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
return;
}
// Current SDK version and path.
$themeisle_sdk_version = '3.3.18';
$themeisle_sdk_version = '3.3.19';
$themeisle_sdk_path = dirname( __FILE__ );

global $themeisle_sdk_max_version;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "themeisle-sdk",
"description": "Themeisle SDK",
"version": "3.3.18",
"version": "3.3.19",
"scripts": {
"dev": "npm run start",
"start:promos": "wp-scripts start assets/js/src/index.js --output-path=assets/js/build/promos",
Expand Down
4 changes: 2 additions & 2 deletions src/Modules/Licenser.php
Original file line number Diff line number Diff line change
Expand Up @@ -379,8 +379,8 @@ public function show_notice() {

$status = $this->get_license_status( true );
$no_activations_string = apply_filters( $this->product->get_key() . '_lc_no_activations_string', Loader::$labels['licenser']['no_activations'] );
$no_valid_string = apply_filters( $this->product->get_key() . '_lc_no_valid_string', sprintf( Loader::$labels['licenser']['inactive'], '<a href="%s" target="_blank">', '</a>', '<a href="%s">', '</a>' ) );
$expired_license_string = apply_filters( $this->product->get_key() . '_lc_expired_string', sprintf( Loader::$labels['licenser']['expired'], '<a href="%s" target="_blank">', '</a>' ) );
$no_valid_string = apply_filters( $this->product->get_key() . '_lc_no_valid_string', sprintf( Loader::$labels['licenser']['inactive'], '%s', '<a href="%s" target="_blank">', '</a>', '<a href="%s">', '</a>' ) );
$expired_license_string = apply_filters( $this->product->get_key() . '_lc_expired_string', sprintf( Loader::$labels['licenser']['expired'], '%s', '<a href="%s" target="_blank">', '</a>' ) );
// No activations left for this license.
if ( 'valid' != $status && $this->check_activation() ) {
?>
Expand Down

0 comments on commit bc9a1f4

Please sign in to comment.