diff --git a/README.md b/README.md index c5668a3db0d8f150bef90a10ce341db3a88d1383..3f92957a098c22cc1971f641d7ff9f5ad9443131 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,8 @@ **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.0 -**Stable tag:** 0.6.3 +**Tested up to:** 6.8 +**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 fc1d0e8799443aba10511fa2e8ed2b6c0f9ad98c..ecf6f0a403b47993f2c76252b7a61a671a22ba98 100644 --- a/languages/wp-print-friendly.pot +++ b/languages/wp-print-friendly.pot @@ -1,15 +1,15 @@ -# Copyright (C) 2022 Erick Hitter, Steven K Word, and Oomph, Inc. +# Copyright (C) 2025 Erick Hitter, Steven K Word, and Oomph, Inc. # This file is distributed under the same license as the WP Print Friendly package. msgid "" 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: 2022-06-25 21:01:31+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" -"PO-Revision-Date: 2022-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2025-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" "Language: en\n" diff --git a/readme.txt b/readme.txt index 1a5a3be6989ff1332e4cc9e85b2d40cce802eec2..00647be34b6ad257cb18f27d416514420d6af816 100644 --- a/readme.txt +++ b/readme.txt @@ -3,8 +3,8 @@ Contributors: ethitter, stevenkword, thinkoomph 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.0 -Stable tag: 0.6.3 +Tested up to: 6.8 +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' ) ); } /**