Changeset 3425640
- Timestamp:
- 12/22/2025 08:13:27 PM (7 days ago)
- Location:
- simple-feature-requests/trunk
- Files:
-
- 5 edited
-
inc/class-ajax.php (modified) (4 diffs)
-
languages/simple-feature-requests.pot (modified) (5 diffs)
-
plugin-data.json (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
simple-feature-requests.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-feature-requests/trunk/inc/class-ajax.php
r3418487 r3425640 50 50 51 51 if ( ! $check_nonce ) { 52 $response['message'] = __( ' Nonce check failed.', 'simple-feature-requests' );52 $response['message'] = __( 'Your session has expired, please log in again.', 'simple-feature-requests' ); 53 53 wp_send_json( $response ); 54 54 } … … 104 104 105 105 if ( ! $check_nonce ) { 106 $response['message'] = __( ' Nonce check failed.', 'simple-feature-requests' );106 $response['message'] = __( 'Your session has expired, please log in again.', 'simple-feature-requests' ); 107 107 wp_send_json( $response ); 108 108 } … … 162 162 163 163 if ( ! $nonce ) { 164 $response['message'] = __( ' Nonce check failed.', 'simple-feature-requests' );164 $response['message'] = __( 'Your session has expired, please log in again.', 'simple-feature-requests' ); 165 165 wp_send_json( $response ); 166 166 } … … 226 226 227 227 if ( ! $nonce ) { 228 $response['message'] = __( ' Nonce check failed.', 'simple-feature-requests' );228 $response['message'] = __( 'Your session has expired, please log in again.', 'simple-feature-requests' ); 229 229 wp_send_json( $response ); 230 230 } -
simple-feature-requests/trunk/languages/simple-feature-requests.pot
r3418487 r3425640 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Simple Feature Requests Pro 2.4.9 \n"5 "Project-Id-Version: Simple Feature Requests Pro 2.4.9.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/simple-feature-requests\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-12- 05T18:57:30+00:00\n"12 "POT-Creation-Date: 2025-12-22T18:45:47+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.12.0\n" … … 76 76 msgstr "" 77 77 78 #: inc/class-ajax.php:5 179 #: inc/class-ajax.php:10 480 #: inc/class-ajax.php:16 281 #: inc/class-ajax.php:22 682 msgid " Nonce check failed."83 msgstr "" 84 85 #: inc/class-ajax.php: 5978 #: inc/class-ajax.php:52 79 #: inc/class-ajax.php:106 80 #: inc/class-ajax.php:164 81 #: inc/class-ajax.php:228 82 msgid "Your session has expired, please log in again." 83 msgstr "" 84 85 #: inc/class-ajax.php:60 86 86 msgid "Simple Feature Requests: No post ID sent to AJAX." 87 87 msgstr "" 88 88 89 #: inc/class-ajax.php:6 689 #: inc/class-ajax.php:67 90 90 #, php-format 91 91 msgid "Simple Feature Requests: No post found for ID %d" 92 92 msgstr "" 93 93 94 #: inc/class-ajax.php:8 194 #: inc/class-ajax.php:82 95 95 #: inc/class-template-methods.php:165 96 96 msgid "vote" … … 99 99 msgstr[1] "" 100 100 101 #: inc/class-ajax.php:1 69101 #: inc/class-ajax.php:171 102 102 msgid "No attachments found." 103 103 msgstr "" 104 104 105 #: inc/class-ajax.php:23 6105 #: inc/class-ajax.php:238 106 106 msgid "No attachment IDs provided." 107 107 msgstr "" … … 1112 1112 msgstr "" 1113 1113 1114 #: simple-feature-requests.php:3 121114 #: simple-feature-requests.php:327 1115 1115 msgid "Available in Pro" 1116 1116 msgstr "" -
simple-feature-requests/trunk/plugin-data.json
r3418487 r3425640 1 1 { 2 "version": "2.4.9 ",2 "version": "2.4.9.1", 3 3 "wp": "6.8.2", 4 4 "wp_requires": "6.0", -
simple-feature-requests/trunk/readme.txt
r3418490 r3425640 5 5 Requires at least: 6.0 6 6 Tested up to: 6.9 7 Stable tag: 2.4.9 7 Stable tag: 2.4.9.1 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 151 151 152 152 == Changelog == 153 **v2.4.9.1 (2025-12-22)** 154 Enhancement: Improved language to be more culturally sensitive 155 153 156 **v2.4.9 (2025-12-12)** 154 157 Enhancement: Added support for WordPress 6.9 -
simple-feature-requests/trunk/simple-feature-requests.php
r3418487 r3425640 5 5 * Plugin URI: https://simplefeaturerequests.com 6 6 * Description: Collect and manage user feedback using your existing WordPress website. Prioritize the product features important to you and your customers. 7 * Version: 2.4.9 7 * Version: 2.4.9.1 8 8 * Author: Mindsize 9 9 * Author URI: https://mindsize.com … … 24 24 * @var string 25 25 */ 26 public static $version = '2.4.9 ';26 public static $version = '2.4.9.1'; 27 27 28 28 /**
Note: See TracChangeset
for help on using the changeset viewer.