diff --git a/README.md b/README.md index e3c285b0692da97c357b6e6e07c73f2927e9733d..3f92957a098c22cc1971f641d7ff9f5ad9443131 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ **Tags:** print, template, printer, printable **Requires at least:** 3.1 **Tested up to:** 6.8 -**Stable tag:** 0.6.3 +**Stable tag:** 0.6.4 **License:** GPLv2 or later **License URI:** http://www.gnu.org/licenses/gpl-2.0.html @@ -59,6 +59,9 @@ This plugin is known to conflict with certain plugins, many pertaining to SEO an ## Changelog ## +### 0.6.4 ### +* Fix translation support. + ### 0.6.3 ### * Fix translation support. @@ -157,6 +160,9 @@ This plugin is known to conflict with certain plugins, many pertaining to SEO an ## Upgrade Notice ## +### 0.6.4 ### +Fixes translation support. + ### 0.6.3 ### Fixes translation support. diff --git a/languages/wp-print-friendly.pot b/languages/wp-print-friendly.pot index 35b81ab89f0343550d3b8c2381e75e3ed26d364f..ecf6f0a403b47993f2c76252b7a61a671a22ba98 100644 --- a/languages/wp-print-friendly.pot +++ b/languages/wp-print-friendly.pot @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: WP Print Friendly 0.6.3\n" "Report-Msgid-Bugs-To: " "https://wordpress.org/support/plugin/wp-print-friendly\n" -"POT-Creation-Date: 2025-05-19 04:07:13+00:00\n" +"POT-Creation-Date: 2025-05-19 04:17:33+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/readme.txt b/readme.txt index 22a2e3fafbc66feecff99481fdee5130cd288114..00647be34b6ad257cb18f27d416514420d6af816 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: http://www.thinkoomph.com/plugins-modules/wp-print-friendly/ Tags: print, template, printer, printable Requires at least: 3.1 Tested up to: 6.8 -Stable tag: 0.6.3 +Stable tag: 0.6.4 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -59,6 +59,9 @@ This plugin is known to conflict with certain plugins, many pertaining to SEO an == Changelog == += 0.6.4 = +* Fix translation support. + = 0.6.3 = * Fix translation support. @@ -157,6 +160,9 @@ This plugin is known to conflict with certain plugins, many pertaining to SEO an == Upgrade Notice == += 0.6.4 = +Fixes translation support. + = 0.6.3 = Fixes translation support. diff --git a/wp-print-friendly.php b/wp-print-friendly.php index 7952553385d43c5dde4728f1f1259c1f2b2a6e64..d413628a57928fd268b5fb3691bfce1bdc76166c 100644 --- a/wp-print-friendly.php +++ b/wp-print-friendly.php @@ -85,7 +85,7 @@ class wp_print_friendly { */ private function setup() { register_deactivation_hook( __FILE__, array( $this, 'deactivation_hook' ) ); - add_action( 'plugins_loaded', array( $this, 'action_plugins_loaded' ) ); + add_action( 'init', array( $this, 'action_plugins_loaded' ) ); } /**