Changeset 3390105
- Timestamp:
- 11/05/2025 02:48:22 AM (3 weeks ago)
- Location:
- publishpress-statuses
- Files:
-
- 10 edited
- 1 copied
-
tags/1.1.13 (copied) (copied from publishpress-statuses/trunk)
-
tags/1.1.13/Admin.php (modified) (1 diff)
-
tags/1.1.13/CHANGELOG.md (modified) (1 diff)
-
tags/1.1.13/languages/publishpress-statuses.pot (modified) (6 diffs)
-
tags/1.1.13/publishpress-statuses.php (modified) (2 diffs)
-
tags/1.1.13/readme.txt (modified) (1 diff)
-
trunk/Admin.php (modified) (1 diff)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/languages/publishpress-statuses.pot (modified) (6 diffs)
-
trunk/publishpress-statuses.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
publishpress-statuses/tags/1.1.13/Admin.php
r3389850 r3390105 429 429 'dashicons-format-status', 430 430 70 431 ); 432 433 add_submenu_page( 434 'publishpress-statuses', 435 esc_html__('Add New', 'publishpress-statuses'), 436 esc_html__('Add New', 'publishpress-statuses'), 437 $check_cap, 438 'publishpress-statuses-add-new', 439 [$this, 'render_admin_page'] 431 440 ); 432 441 -
publishpress-statuses/tags/1.1.13/CHANGELOG.md
r3389850 r3390105 1 1 The format is based on [Keep a Changelog](http://keepachangelog.com/) 2 2 and this project adheres to [Semantic Versioning](http://semver.org/). 3 4 = [1.1.13] - 4 Nov 2025 = 5 * Fixed : Add Status screen could not be loaded 3 6 4 7 = [1.1.12] - 4 Nov 2025 = -
publishpress-statuses/tags/1.1.13/languages/publishpress-statuses.pot
r3389850 r3390105 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: PublishPress Statuses 1.1.1 2\n"5 "Project-Id-Version: PublishPress Statuses 1.1.13\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-11-0 4T17:14:23+00:00\n"12 "POT-Creation-Date: 2025-11-05T02:39:44+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" … … 66 66 msgstr "" 67 67 68 #: Admin.php:513 68 #: Admin.php:435 69 #: Admin.php:436 70 #: StatusesUI.php:832 71 msgid "Add New" 72 msgstr "" 73 74 #: Admin.php:522 69 75 #: PublishPress_Statuses.php:794 70 76 msgid "Approve" 71 77 msgstr "" 72 78 73 #: Admin.php:5 1579 #: Admin.php:524 74 80 #: PublishPress_Statuses.php:766 75 81 msgid "Assign" 76 82 msgstr "" 77 83 78 #: Admin.php:5 1784 #: Admin.php:526 79 85 #: PublishPress_Statuses.php:780 80 86 msgid "Mark In Progress" … … 82 88 83 89 #. translators: %s is the status label 84 #: Admin.php:53 090 #: Admin.php:539 85 91 msgid "Set to %s" 86 92 msgstr "" 87 93 88 94 #. translators: %s is the status label 89 #: Admin.php:5 3995 #: Admin.php:548 90 96 #: PostEditGutenberg.php:77 91 97 msgid "Save as %s" … … 93 99 94 100 #. translators: %s is the name of a custom public status 95 #: Admin.php:5 51101 #: Admin.php:560 96 102 msgid "Public (%s)" 97 103 msgstr "" 98 104 99 #: Admin.php:6 22105 #: Admin.php:631 100 106 #: PostEditClassic.php:179 101 107 #: PostEditGutenberg.php:74 … … 835 841 msgstr "" 836 842 837 #: StatusesUI.php:832838 msgid "Add New"839 msgstr ""840 841 843 #. translators: %1$s and %2$s is link markup 842 844 #: StatusesUI.php:849 -
publishpress-statuses/tags/1.1.13/publishpress-statuses.php
r3389850 r3390105 4 4 * Plugin URI: https://publishpress.com/statuses 5 5 * Description: Manage and create post statuses to customize your editorial workflow 6 * Version: 1.1.1 26 * Version: 1.1.13 7 7 * Author: PublishPress 8 8 * Author URI: https://publishpress.com/ … … 228 228 229 229 if (empty($interrupt_load)) { 230 define('PUBLISHPRESS_STATUSES_VERSION', '1.1.1 2');230 define('PUBLISHPRESS_STATUSES_VERSION', '1.1.13'); 231 231 232 232 define('PUBLISHPRESS_STATUSES_URL', trailingslashit(plugins_url('', __FILE__))); // @todo: vendor lib -
publishpress-statuses/tags/1.1.13/readme.txt
r3389850 r3390105 7 7 Requires PHP: 7.2.5 8 8 Tested up to: 6.8 9 Stable tag: 1.1.1 29 Stable tag: 1.1.13 10 10 License: GPLv3 11 11 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
publishpress-statuses/trunk/Admin.php
r3389850 r3390105 429 429 'dashicons-format-status', 430 430 70 431 ); 432 433 add_submenu_page( 434 'publishpress-statuses', 435 esc_html__('Add New', 'publishpress-statuses'), 436 esc_html__('Add New', 'publishpress-statuses'), 437 $check_cap, 438 'publishpress-statuses-add-new', 439 [$this, 'render_admin_page'] 431 440 ); 432 441 -
publishpress-statuses/trunk/CHANGELOG.md
r3389850 r3390105 1 1 The format is based on [Keep a Changelog](http://keepachangelog.com/) 2 2 and this project adheres to [Semantic Versioning](http://semver.org/). 3 4 = [1.1.13] - 4 Nov 2025 = 5 * Fixed : Add Status screen could not be loaded 3 6 4 7 = [1.1.12] - 4 Nov 2025 = -
publishpress-statuses/trunk/languages/publishpress-statuses.pot
r3389850 r3390105 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: PublishPress Statuses 1.1.1 2\n"5 "Project-Id-Version: PublishPress Statuses 1.1.13\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-11-0 4T17:14:23+00:00\n"12 "POT-Creation-Date: 2025-11-05T02:39:44+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" … … 66 66 msgstr "" 67 67 68 #: Admin.php:513 68 #: Admin.php:435 69 #: Admin.php:436 70 #: StatusesUI.php:832 71 msgid "Add New" 72 msgstr "" 73 74 #: Admin.php:522 69 75 #: PublishPress_Statuses.php:794 70 76 msgid "Approve" 71 77 msgstr "" 72 78 73 #: Admin.php:5 1579 #: Admin.php:524 74 80 #: PublishPress_Statuses.php:766 75 81 msgid "Assign" 76 82 msgstr "" 77 83 78 #: Admin.php:5 1784 #: Admin.php:526 79 85 #: PublishPress_Statuses.php:780 80 86 msgid "Mark In Progress" … … 82 88 83 89 #. translators: %s is the status label 84 #: Admin.php:53 090 #: Admin.php:539 85 91 msgid "Set to %s" 86 92 msgstr "" 87 93 88 94 #. translators: %s is the status label 89 #: Admin.php:5 3995 #: Admin.php:548 90 96 #: PostEditGutenberg.php:77 91 97 msgid "Save as %s" … … 93 99 94 100 #. translators: %s is the name of a custom public status 95 #: Admin.php:5 51101 #: Admin.php:560 96 102 msgid "Public (%s)" 97 103 msgstr "" 98 104 99 #: Admin.php:6 22105 #: Admin.php:631 100 106 #: PostEditClassic.php:179 101 107 #: PostEditGutenberg.php:74 … … 835 841 msgstr "" 836 842 837 #: StatusesUI.php:832838 msgid "Add New"839 msgstr ""840 841 843 #. translators: %1$s and %2$s is link markup 842 844 #: StatusesUI.php:849 -
publishpress-statuses/trunk/publishpress-statuses.php
r3389850 r3390105 4 4 * Plugin URI: https://publishpress.com/statuses 5 5 * Description: Manage and create post statuses to customize your editorial workflow 6 * Version: 1.1.1 26 * Version: 1.1.13 7 7 * Author: PublishPress 8 8 * Author URI: https://publishpress.com/ … … 228 228 229 229 if (empty($interrupt_load)) { 230 define('PUBLISHPRESS_STATUSES_VERSION', '1.1.1 2');230 define('PUBLISHPRESS_STATUSES_VERSION', '1.1.13'); 231 231 232 232 define('PUBLISHPRESS_STATUSES_URL', trailingslashit(plugins_url('', __FILE__))); // @todo: vendor lib -
publishpress-statuses/trunk/readme.txt
r3389850 r3390105 7 7 Requires PHP: 7.2.5 8 8 Tested up to: 6.8 9 Stable tag: 1.1.1 29 Stable tag: 1.1.13 10 10 License: GPLv3 11 11 License URI: https://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset
for help on using the changeset viewer.