Version Description
- Fix translations in block editor.
Download this release
Release Info
Developer | ethitter |
Plugin | WP Revisions Control |
Version | 1.4.3 |
Comparing to | |
See all releases |
Code changes from version 1.4.2 to 1.4.3
- inc/class-block-editor.php +6 -0
- languages/wp-revisions-control.pot +2 -2
- readme.txt +9 -1
- wp-revisions-control.php +1 -1
inc/class-block-editor.php
CHANGED
@@ -175,5 +175,11 @@ class Block_Editor {
|
|
175 |
'metaKey' => WP_REVISIONS_CONTROL_LIMIT_META_KEY,
|
176 |
)
|
177 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
}
|
179 |
}
|
175 |
'metaKey' => WP_REVISIONS_CONTROL_LIMIT_META_KEY,
|
176 |
)
|
177 |
);
|
178 |
+
|
179 |
+
wp_set_script_translations(
|
180 |
+
$handle,
|
181 |
+
'wp-revisions-control',
|
182 |
+
dirname( __DIR__ ) . '/languages'
|
183 |
+
);
|
184 |
}
|
185 |
}
|
languages/wp-revisions-control.pot
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
# This file is distributed under the same license as the WP Revisions Control package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WP Revisions Control 1.4.
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/wp-revisions-control\n"
|
8 |
-
"POT-Creation-Date: 2022-06-
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
2 |
# This file is distributed under the same license as the WP Revisions Control package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WP Revisions Control 1.4.3\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/wp-revisions-control\n"
|
8 |
+
"POT-Creation-Date: 2022-06-25 15:40:24+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
readme.txt
CHANGED
@@ -4,7 +4,8 @@ Donate link: https://ethitter.com/donate/
|
|
4 |
Tags: revision, revisions, admin
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 6.0
|
7 |
-
Stable tag: 1.4.
|
|
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -35,6 +36,9 @@ Navigate to **Settings > Writing** in your WordPress Dashboard, and look for the
|
|
35 |
|
36 |
== Changelog ==
|
37 |
|
|
|
|
|
|
|
38 |
= 1.4.2 =
|
39 |
* Fix notice appearing on Widgets Block Editor.
|
40 |
|
@@ -61,6 +65,10 @@ Navigate to **Settings > Writing** in your WordPress Dashboard, and look for the
|
|
61 |
|
62 |
== Upgrade Notice ==
|
63 |
|
|
|
|
|
|
|
|
|
64 |
= 1.4.2 =
|
65 |
Fixes notice appearing on Widgets Block Editor.
|
66 |
|
4 |
Tags: revision, revisions, admin
|
5 |
Requires at least: 3.6
|
6 |
Tested up to: 6.0
|
7 |
+
Stable tag: 1.4.3
|
8 |
+
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
36 |
|
37 |
== Changelog ==
|
38 |
|
39 |
+
= 1.4.3 =
|
40 |
+
* Fix translations in block editor.
|
41 |
+
|
42 |
= 1.4.2 =
|
43 |
* Fix notice appearing on Widgets Block Editor.
|
44 |
|
65 |
|
66 |
== Upgrade Notice ==
|
67 |
|
68 |
+
= 1.4.3 =
|
69 |
+
|
70 |
+
Fixes translations in block editor.
|
71 |
+
|
72 |
= 1.4.2 =
|
73 |
Fixes notice appearing on Widgets Block Editor.
|
74 |
|
wp-revisions-control.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://ethitter.com/plugins/wp-revisions-control/
|
5 |
* Description: Control how many revisions are stored for each post type
|
6 |
* Author: Erick Hitter
|
7 |
-
* Version: 1.4.
|
8 |
* Author URI: https://ethitter.com/
|
9 |
* Text Domain: wp-revisions-control
|
10 |
* Domain Path: /languages/
|
4 |
* Plugin URI: https://ethitter.com/plugins/wp-revisions-control/
|
5 |
* Description: Control how many revisions are stored for each post type
|
6 |
* Author: Erick Hitter
|
7 |
+
* Version: 1.4.3
|
8 |
* Author URI: https://ethitter.com/
|
9 |
* Text Domain: wp-revisions-control
|
10 |
* Domain Path: /languages/
|