diff --git a/accessibility-checker.php b/accessibility-checker.php index b196d02f5..ad10b7083 100755 --- a/accessibility-checker.php +++ b/accessibility-checker.php @@ -10,7 +10,7 @@ * Plugin Name: Accessibility Checker * Plugin URI: https://a11ychecker.com * Description: Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance. - * Version: 1.31.0 + * Version: 1.31.1 * Requires PHP: 7.4 * Author: Equalize Digital * Author URI: https://equalizedigital.com @@ -36,7 +36,7 @@ // Current plugin version. if ( ! defined( 'EDAC_VERSION' ) ) { - define( 'EDAC_VERSION', '1.31.0' ); + define( 'EDAC_VERSION', '1.31.1' ); } // Current database version. diff --git a/admin/class-ajax.php b/admin/class-ajax.php index b1ab06748..ed946a045 100644 --- a/admin/class-ajax.php +++ b/admin/class-ajax.php @@ -47,28 +47,26 @@ public function init_hooks() { * - '-1' means that nonce could not be varified * - '-2' means that the post ID was not specified * - '-3' means that there isn't any summary data to return + * - '-5' means that the user does not have permission to view this information for this post */ public function summary() { // nonce security. if ( ! isset( $_REQUEST['nonce'] ) || ! wp_verify_nonce( sanitize_key( wp_unslash( $_REQUEST['nonce'] ) ), 'ajax-nonce' ) ) { - - $error = new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + wp_send_json_error( new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ) ); } if ( ! isset( $_REQUEST['post_id'] ) ) { + wp_send_json_error( new \WP_Error( '-2', __( 'The post ID was not set', 'accessibility-checker' ) ) ); + } - $error = new \WP_Error( '-2', __( 'The post ID was not set', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + if ( ! current_user_can( 'edit_post', (int) $_REQUEST['post_id'] ) ) { + wp_send_json_error( new \WP_Error( '-5', __( 'You do not have permission to view this information for this post.', 'accessibility-checker' ) ) ); } $html = []; $html['content'] = ''; - $post_id = (int) $_REQUEST['post_id']; $summary = ( new Summary_Generator( $post_id ) )->generate_summary(); $simplified_summary_text = ''; @@ -126,25 +124,25 @@ public function summary() { 'edac-summary-errors', $summary['errors'], /* translators: %s: Number of errors */ - sprintf( _n( '%s Error', '%s Errors', $summary['errors'], 'accessibility-checker' ), $summary['errors'] ) + sprintf( _n( '%s Error', '%s Errors', $summary['errors'], 'accessibility-checker' ), $summary['errors'] ) ) . ' ' . edac_generate_summary_stat( 'edac-summary-contrast', $summary['contrast_errors'], /* translators: %s: Number of contrast errors */ - sprintf( _n( '%s Contrast Error', '%s Contrast Errors', $summary['contrast_errors'], 'accessibility-checker' ), $summary['contrast_errors'] ) + sprintf( _n( '%s Contrast Error', '%s Contrast Errors', $summary['contrast_errors'], 'accessibility-checker' ), $summary['contrast_errors'] ) ) . ' ' . edac_generate_summary_stat( 'edac-summary-warnings', $summary['warnings'], /* translators: %s: Number of warnings */ - sprintf( _n( '%s Warning', '%s Warnings', $summary['warnings'], 'accessibility-checker' ), $summary['warnings'] ) + sprintf( _n( '%s Warning', '%s Warnings', $summary['warnings'], 'accessibility-checker' ), $summary['warnings'] ) ) . ' ' . edac_generate_summary_stat( 'edac-summary-ignored', $summary['ignored'], /* translators: %s: Number of ignored items */ - sprintf( _n( '%s Ignored Item', '%s Ignored Items', $summary['ignored'], 'accessibility-checker' ), $summary['ignored'] ) + sprintf( _n( '%s Ignored Item', '%s Ignored Items', $summary['ignored'], 'accessibility-checker' ), $summary['ignored'] ) ) . ' @@ -181,10 +179,7 @@ public function summary() { $html['content'] .= '' . PHP_EOL; if ( ! $html ) { - - $error = new \WP_Error( '-3', __( 'No summary to return', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + wp_send_json_error( new \WP_Error( '-3', __( 'No summary to return', 'accessibility-checker' ) ) ); } wp_send_json_success( wp_json_encode( $html ) ); @@ -199,22 +194,20 @@ public function summary() { * - '-2' means that the post ID was not specified * - '-3' means that the table name is not valid * - '-4' means that there isn't any details to return + * - '-5' means that the user does not have permission to view this information for this post */ public function details() { - // nonce security. if ( ! isset( $_REQUEST['nonce'] ) || ! wp_verify_nonce( sanitize_key( wp_unslash( $_REQUEST['nonce'] ) ), 'ajax-nonce' ) ) { - - $error = new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + wp_send_json_error( new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ) ); } if ( ! isset( $_REQUEST['post_id'] ) ) { + wp_send_json_error( new \WP_Error( '-2', __( 'The post ID was not set', 'accessibility-checker' ) ) ); + } - $error = new \WP_Error( '-2', __( 'The post ID was not set', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + if ( ! current_user_can( 'edit_post', (int) $_REQUEST['post_id'] ) ) { + wp_send_json_error( new \WP_Error( '-5', __( 'You do not have permission to view this information for this post.', 'accessibility-checker' ) ) ); } $html = ''; @@ -225,10 +218,7 @@ public function details() { // Send error if table name is not valid. if ( ! $table_name ) { - - $error = new \WP_Error( '-3', __( 'Invalid table name', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + wp_send_json_error( new \WP_Error( '-3', __( 'Invalid table name', 'accessibility-checker' ) ) ); } $rules = edac_register_rules(); @@ -567,10 +557,7 @@ function ( $a, $b ) { } if ( ! $html ) { - - $error = new \WP_Error( '-4', __( 'No details to return', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + wp_send_json_error( new \WP_Error( '-4', __( 'No details to return', 'accessibility-checker' ) ) ); } wp_send_json_success( wp_json_encode( $html ) ); @@ -584,22 +571,20 @@ function ( $a, $b ) { * - '-1' means that nonce could not be varified * - '-2' means that the post ID was not specified * - '-3' means that there isn't any readability data to return + * - '-5' means that the user does not have permission to view this information for this post */ public function readability() { - // nonce security. if ( ! isset( $_REQUEST['nonce'] ) || ! wp_verify_nonce( sanitize_key( wp_unslash( $_REQUEST['nonce'] ) ), 'ajax-nonce' ) ) { - - $error = new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + wp_send_json_error( new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ) ); } if ( ! isset( $_REQUEST['post_id'] ) ) { + wp_send_json_error( new \WP_Error( '-2', __( 'The post ID was not set', 'accessibility-checker' ) ) ); + } - $error = new \WP_Error( '-2', __( 'The post ID was not set', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + if ( ! current_user_can( 'edit_post', (int) $_REQUEST['post_id'] ) ) { + wp_send_json_error( new \WP_Error( '-5', __( 'You do not have permission to view this information for this post.', 'accessibility-checker' ) ) ); } $post_id = (int) $_REQUEST['post_id']; @@ -706,10 +691,7 @@ public function readability() { $html .= 'Learn more about improving readability and simplified summary requirements'; if ( ! $html ) { - - $error = new \WP_Error( '-3', __( 'No readability data to return', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + wp_send_json_error( new \WP_Error( '-3', __( 'No readability data to return', 'accessibility-checker' ) ) ); } wp_send_json_success( wp_json_encode( $html ) ); @@ -727,32 +709,29 @@ public function add_ignore() { // nonce security. if ( ! isset( $_REQUEST['nonce'] ) || ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_REQUEST['nonce'] ) ), 'ajax-nonce' ) ) { - - $error = new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + wp_send_json_error( new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ) ); } global $wpdb; - $table_name = $wpdb->prefix . 'accessibility_checker'; - $raw_ids = isset( $_REQUEST['ids'] ) ? (array) wp_unslash( $_REQUEST['ids'] ) : []; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- Sanitization handled below. - $ids = array_map( + $table_name = $wpdb->prefix . 'accessibility_checker'; + $raw_ids = isset( $_REQUEST['ids'] ) ? (array) wp_unslash( $_REQUEST['ids'] ) : []; // phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized -- Sanitization handled below. + $ids = array_map( function ( $value ) { return (int) $value; }, $raw_ids ); // Sanitizing array elements to integers. - $action = isset( $_REQUEST['ignore_action'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['ignore_action'] ) ) : ''; - $type = isset( $_REQUEST['ignore_type'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['ignore_type'] ) ) : ''; - $siteid = get_current_blog_id(); - $ignre = ( 'enable' === $action ) ? 1 : 0; - $ignre_user = ( 'enable' === $action ) ? get_current_user_id() : null; - $ignre_user_info = ( 'enable' === $action ) ? get_userdata( $ignre_user ) : ''; - $ignre_username = ( 'enable' === $action ) ? $ignre_user_info->user_login : ''; - $ignre_date = ( 'enable' === $action ) ? gmdate( 'Y-m-d H:i:s' ) : null; - $ignre_date_formatted = ( 'enable' === $action ) ? gmdate( 'F j, Y g:i a', strtotime( $ignre_date ) ) : ''; - $ignre_comment = ( 'enable' === $action && isset( $_REQUEST['comment'] ) ) ? sanitize_textarea_field( wp_unslash( $_REQUEST['comment'] ) ) : null; - $ignore_global = ( 'enable' === $action && isset( $_REQUEST['ignore_global'] ) ) ? sanitize_textarea_field( wp_unslash( $_REQUEST['ignore_global'] ) ) : 0; + $action = isset( $_REQUEST['ignore_action'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['ignore_action'] ) ) : ''; + $type = isset( $_REQUEST['ignore_type'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['ignore_type'] ) ) : ''; + $siteid = get_current_blog_id(); + $ignre = ( 'enable' === $action ) ? 1 : 0; + $ignre_user = ( 'enable' === $action ) ? get_current_user_id() : null; + $ignre_user_info = ( 'enable' === $action ) ? get_userdata( $ignre_user ) : ''; + $ignre_username = ( 'enable' === $action ) ? $ignre_user_info->user_login : ''; + $ignre_date = ( 'enable' === $action ) ? gmdate( 'Y-m-d H:i:s' ) : null; + $ignre_date_formatted = ( 'enable' === $action ) ? gmdate( 'F j, Y g:i a', strtotime( $ignre_date ) ) : ''; + $ignre_comment = ( 'enable' === $action && isset( $_REQUEST['comment'] ) ) ? sanitize_textarea_field( wp_unslash( $_REQUEST['comment'] ) ) : null; + $ignore_global = ( 'enable' === $action && isset( $_REQUEST['ignore_global'] ) ) ? sanitize_textarea_field( wp_unslash( $_REQUEST['ignore_global'] ) ) : 0; // If largeBatch is set and 'true', we need to perform an update using the 'object' // instead of IDs. It is a much less efficient query than by IDs - but many IDs run @@ -764,8 +743,7 @@ function ( $value ) { $object = $wpdb->get_var( $wpdb->prepare( 'SELECT object FROM %i WHERE id = %d', $table_name, $first_id ) ); if ( ! $object ) { - $error = new \WP_Error( '-2', __( 'No ignore data to return', 'accessibility-checker' ) ); - wp_send_json_error( $error ); + wp_send_json_error( new \WP_Error( '-2', __( 'No ignore data to return', 'accessibility-checker' ) ) ); } // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Safe variable used for table name, caching not required for one time operation. $wpdb->query( $wpdb->prepare( 'UPDATE %i SET ignre = %d, ignre_user = %d, ignre_date = %s, ignre_comment = %s, ignre_global = %d WHERE siteid = %d and object = %s', $table_name, $ignre, $ignre_user, $ignre_date, $ignre_comment, $ignore_global, $siteid, $object ) ); @@ -786,10 +764,7 @@ function ( $value ) { ]; if ( ! $data ) { - - $error = new \WP_Error( '-2', __( 'No ignore data to return', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + wp_send_json_error( new \WP_Error( '-2', __( 'No ignore data to return', 'accessibility-checker' ) ) ); } wp_send_json_success( wp_json_encode( $data ) ); } @@ -802,37 +777,33 @@ function ( $value ) { * - '-1' means that nonce could not be varified * - '-2' means that the post ID was not specified * - '-3' means that the summary was not specified + * - '-5' means that the user does not have permission to view this information for this post */ public function simplified_summary() { // nonce security. if ( ! isset( $_REQUEST['nonce'] ) || ! wp_verify_nonce( sanitize_key( wp_unslash( $_REQUEST['nonce'] ) ), 'ajax-nonce' ) ) { - - $error = new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + wp_send_json_error( new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ) ); } if ( ! isset( $_REQUEST['post_id'] ) ) { - - $error = new \WP_Error( '-2', __( 'The post ID was not set', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + wp_send_json_error( new \WP_Error( '-2', __( 'The post ID was not set', 'accessibility-checker' ) ) ); } if ( ! isset( $_REQUEST['summary'] ) ) { + wp_send_json_error( new \WP_Error( '-3', __( 'The summary was not set', 'accessibility-checker' ) ) ); + } - $error = new \WP_Error( '-3', __( 'The summary was not set', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + if ( ! current_user_can( 'edit_post', (int) $_REQUEST['post_id'] ) ) { + wp_send_json_error( new \WP_Error( '-5', __( 'You do not have permission to edit this post.', 'accessibility-checker' ) ) ); } - $post_id = (int) $_REQUEST['post_id']; - update_post_meta( - $post_id, - '_edac_simplified_summary', - sanitize_text_field( wp_unslash( $_REQUEST['summary'] ) ) - ); + $post_id = (int) $_REQUEST['post_id']; + update_post_meta( + $post_id, + '_edac_simplified_summary', + sanitize_text_field( wp_unslash( $_REQUEST['summary'] ) ) + ); $edac_simplified_summary = get_post_meta( $post_id, '_edac_simplified_summary', $single = true ); $simplified_summary = $edac_simplified_summary ? $edac_simplified_summary : ''; diff --git a/admin/class-frontend-highlight.php b/admin/class-frontend-highlight.php index fed18ead0..d85e26fcd 100644 --- a/admin/class-frontend-highlight.php +++ b/admin/class-frontend-highlight.php @@ -74,9 +74,8 @@ public function get_issues( $post_id ) { */ public function ajax() { - if ( ! check_ajax_referer( 'ajax-nonce', 'nonce', false ) ) { - $error = new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ); - wp_send_json_error( $error ); + if ( ! check_ajax_referer( 'frontend-highlighter', 'nonce', false ) ) { + wp_send_json_error( new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ) ); } if ( ! isset( $_REQUEST['post_id'] ) ) { @@ -85,11 +84,31 @@ public function ajax() { } $post_id = isset( $_REQUEST['post_id'] ) ? (int) $_REQUEST['post_id'] : 0; + $post = get_post( $post_id ); + if ( ! $post ) { + wp_send_json_error( new \WP_Error( '-4', __( 'Post not found', 'accessibility-checker' ) ) ); + } + + // Check if the user has permission to view this post. + if ( is_user_logged_in() ) { + // For authenticated users, use read_post capability. + if ( ! current_user_can( 'read_post', $post_id ) ) { + wp_send_json_error( new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ) ); + } + } elseif ( apply_filters( 'edac_filter_frontend_highlighter_visibility', false ) ) { + // For unauthenticated users, only allow access to publicly viewable posts. + if ( ! is_post_publicly_viewable( $post ) ) { + wp_send_json_error( new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ) ); + } + } else { + // Shouldn't ever reach this point but error just in case. + wp_send_json_error( new \WP_Error( '-1', __( 'Permission Denied', 'accessibility-checker' ) ) ); + } + $results = $this->get_issues( $post_id ); if ( ! $results ) { - $error = new \WP_Error( '-3', __( 'Issue query returned no results', 'accessibility-checker' ) ); - wp_send_json_error( $error ); + wp_send_json_error( new \WP_Error( '-3', __( 'Issue query returned no results', 'accessibility-checker' ) ) ); } $rules = edac_register_rules(); @@ -133,10 +152,7 @@ public function ajax() { } if ( ! $issues ) { - - $error = new \WP_Error( '-5', __( 'Object query returned no results', 'accessibility-checker' ) ); - wp_send_json_error( $error ); - + wp_send_json_error( new \WP_Error( '-5', __( 'Object query returned no results', 'accessibility-checker' ) ) ); } // if we have fixes then create fields for each of the groups. diff --git a/admin/opt-in/class-email-opt-in.php b/admin/opt-in/class-email-opt-in.php index 6a9f927b5..3712467b5 100644 --- a/admin/opt-in/class-email-opt-in.php +++ b/admin/opt-in/class-email-opt-in.php @@ -146,6 +146,16 @@ public static function render_form(): void {
+ + ', + '' + ); + ?> + diff --git a/includes/classes/class-enqueue-frontend.php b/includes/classes/class-enqueue-frontend.php index 78862b1fd..d1035c93d 100644 --- a/includes/classes/class-enqueue-frontend.php +++ b/includes/classes/class-enqueue-frontend.php @@ -100,8 +100,8 @@ public static function maybe_enqueue_frontend_highlighter() { 'edacFrontendHighlighterApp', [ 'postID' => $post_id, - 'nonce' => wp_create_nonce( 'ajax-nonce' ), - 'restNonce' => wp_create_nonce( 'wp_rest' ), + 'nonce' => wp_create_nonce( 'frontend-highlighter' ), + 'restNonce' => is_user_logged_in() ? wp_create_nonce( 'wp_rest' ) : '', 'userCanFix' => current_user_can( apply_filters( 'edac_filter_settings_capability', 'manage_options' ) ), 'userCanEdit' => current_user_can( 'edit_post', $post_id ), 'edacUrl' => esc_url_raw( get_site_url() ), diff --git a/includes/classes/class-rest-api.php b/includes/classes/class-rest-api.php index e47a7b3e7..72d812e1c 100644 --- a/includes/classes/class-rest-api.php +++ b/includes/classes/class-rest-api.php @@ -86,7 +86,8 @@ function () use ( $ns, $version ) { ], ], 'permission_callback' => function ( $request ) { - return $this->user_can_edit_passed_post_id( $request ); + $post_id = (int) $request['id']; + return current_user_can( 'edit_post', $post_id ); // able to edit the post. }, ] ); @@ -180,7 +181,8 @@ function () use ( $ns, $version ) { ], ], 'permission_callback' => function ( $request ) { - return $this->user_can_edit_passed_post_id( $request ); + $post_id = (int) $request['id']; + return current_user_can( 'edit_post', $post_id ); // able to edit the post. }, ] ); @@ -206,25 +208,6 @@ function () use ( $ns, $version ) { ); } - /** - * Check if the user can edit a post. - * - * This is a permission callback to replace several places where we check if the user can edit a post. - * - * @since 1.30.1 - * - * @param \WP_REST_Request $request The request object passed from the REST call. This should contain the 'id' of the post to check permissions for. - * - * @return bool|\WP_Error - */ - public function user_can_edit_passed_post_id( $request ) { - if ( ! isset( $request['id'] ) ) { - return new \WP_Error( 'rest_post_invalid_id', __( 'A required parameter is missing.', 'accessibility-checker' ), [ 'status' => 400 ] ); - } - $post_id = (int) $request['id']; - return current_user_can( 'edit_post', $post_id ); // able to edit the post. - } - /** * REST handler to clear issues results for a given post ID. * diff --git a/languages/accessibility-checker-ar.mo b/languages/accessibility-checker-ar.mo index 7ac94fa15..8c475d7a0 100644 Binary files a/languages/accessibility-checker-ar.mo and b/languages/accessibility-checker-ar.mo differ diff --git a/languages/accessibility-checker-ar.po b/languages/accessibility-checker-ar.po index 9fe8f747b..7d963062f 100644 --- a/languages/accessibility-checker-ar.po +++ b/languages/accessibility-checker-ar.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "احصل على النسخة الاحترافية" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "يفتح في نافذة جديدة." @@ -188,11 +188,14 @@ msgstr "قم بالترقية الآن" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "تم رفض الإذن" @@ -230,31 +233,37 @@ msgstr "لا تسأل مرة أخرى" msgid "The review action value was not set" msgstr "لم يتم تعيين قيمة إجراء المراجعة" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "لم يتم تعيين معرف المنشور" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "ليس لديك إذن لعرض هذه المعلومات لهذا المنشور." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "لم يتم إدراج ملخص مبسط لهذا المحتوى." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "محتواك يتمتع بمستوى قراءة في الصف التاسع أو أقل ولا يتطلب ملخصًا مبسطًا." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "مستوى القراءة للملخص المبسط مرتفع جدًا." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "تم إدراج ملخص مبسط لهذا المحتوى." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -264,7 +273,7 @@ msgstr[2] "%s Errors" msgstr[3] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -274,7 +283,7 @@ msgstr[2] "%s Contrast Errors" msgstr[3] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -284,7 +293,7 @@ msgstr[2] "%s Warnings" msgstr[3] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" @@ -293,79 +302,87 @@ msgstr[1] "%s Ignored Items" msgstr[2] "%s Ignored Items" msgstr[3] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "لا يوجد ملخص للإرجاع" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "اسم الجدول غير صالح" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "تمكّن هذه الإعدادات الإصلاحات العامة في جميع أنحاء موقعك." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "قد تحتاج الصفحات إلى إعادة حفظ أو إجراء فحص كامل للموقع لرؤية الإصلاحات المنعكسة في التقارير." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "حفظ" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "الكود المتأثر" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "عرض المشكلة ذات المعرف %d على الموقع، يفتح في نافذة جديدة" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "عرض في الصفحة" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "إصلاح: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "إصلاح" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "حساب المستخدم الخاص بك لا يملك صلاحية تجاهل هذه المشكلة." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "لا توجد تفاصيل للإرجاع" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "لا توجد بيانات قابلية القراءة للإرجاع" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "لا توجد بيانات تجاهل للإرجاع" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "لم يتم تعيين الملخص" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "ليس لديك إذن لتحرير هذا المنشور." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "لم يتم تعيين قيمة المعرف" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "لم يتم العثور على المنشور" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "استعلام المشكلة لم يرجع أي نتائج" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "استعلام الكائن لم يرجع أي نتائج" @@ -652,6 +669,12 @@ msgstr "الاسم الأول" msgid "Type your first name" msgstr "اكتب اسمك الأول" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "بالاشتراك، فإنك توافق على تلقي رسائل البريد الإلكتروني وفقًا لـ %1$sسياسة الخصوصية%2$s الخاصة بنا." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — سجل التدقيق" @@ -895,10 +918,6 @@ msgstr "احصل على Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "احصل على Accessibility Checker Pro (يفتح في نافذة جديدة)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "معلمة مطلوبة مفقودة." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-bg.mo b/languages/accessibility-checker-bg.mo index ed95f0e75..b9544f713 100644 Binary files a/languages/accessibility-checker-bg.mo and b/languages/accessibility-checker-bg.mo differ diff --git a/languages/accessibility-checker-bg.po b/languages/accessibility-checker-bg.po index ba54b8a1f..a6451d16f 100644 --- a/languages/accessibility-checker-bg.po +++ b/languages/accessibility-checker-bg.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Преминете към Pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Отваря се в нов прозорец." @@ -188,11 +188,14 @@ msgstr "Надградете сега" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Отказан достъп" @@ -230,31 +233,37 @@ msgstr "Никога повече не питай" msgid "The review action value was not set" msgstr "Стойността на действието за рецензия не беше зададена" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "ID на публикацията не е зададено" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Нямате разрешение да преглеждате тази информация за тази публикация." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Не е включено опростено резюме за това съдържание." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Вашето съдържание има ниво на четене равно или под 9-ти клас и не изисква опростено резюме." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Нивото на четене на опростеното резюме е твърде високо." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Включено е опростено резюме за това съдържание." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Няма резюме за връщане" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Невалидно име на таблица" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Тези настройки активират глобални корекции в целия ви сайт." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Може да се наложи страниците да бъдат запазени отново или да се извърши пълно сканиране на сайта, за да се видят корекциите, отразени в отчетите." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Запази" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Засегнат код" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Прегледайте проблем с ID %d на уебсайта, отваря се в нов прозорец" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Преглед на страницата" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Корекция: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Корекция" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Вашият потребителски акаунт няма разрешение да игнорира този проблем." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Няма подробности за връщане" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Няма данни за четимост за връщане" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Няма данни за игнориране за връщане" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Резюмето не е зададено" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Нямате разрешение да редактирате тази публикация." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Стойността на ID не е зададена" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Публикацията не е намерена" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Заявката за проблем не върна резултати" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Заявката за обект не върна резултати" @@ -636,6 +653,12 @@ msgstr "Име" msgid "Type your first name" msgstr "Въведете вашето име" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "С абонирането си давате съгласие да получавате имейли в съответствие с нашата %1$sПолитика за поверителност%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — История на одитите" @@ -875,10 +898,6 @@ msgstr "Вземете Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Вземете Accessibility Checker Pro (отваря се в нов прозорец)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Липсва задължителен параметър." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-cs.mo b/languages/accessibility-checker-cs.mo index a2eb66d71..c6af61f62 100644 Binary files a/languages/accessibility-checker-cs.mo and b/languages/accessibility-checker-cs.mo differ diff --git a/languages/accessibility-checker-cs.po b/languages/accessibility-checker-cs.po index cac079ec5..eebcd425a 100644 --- a/languages/accessibility-checker-cs.po +++ b/languages/accessibility-checker-cs.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Získat Pro verzi" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Otevře se v novém okně." @@ -188,11 +188,14 @@ msgstr "Upgradovat nyní" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Přístup odepřen" @@ -230,31 +233,37 @@ msgstr "Už se nikdy neptat" msgid "The review action value was not set" msgstr "Hodnota akce pro recenzi nebyla nastavena" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "ID příspěvku nebylo nastaveno" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Nemáte oprávnění zobrazit tyto informace pro tento příspěvek." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Pro tento obsah nebylo zahrnuto zjednodušené shrnutí." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Váš obsah má úroveň čtení na úrovni 9. třídy nebo nižší a nevyžaduje zjednodušené shrnutí." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Úroveň čtení zjednodušeného shrnutí je příliš vysoká." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Pro tento obsah bylo zahrnuto zjednodušené shrnutí." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "%s Errors" msgstr[1] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "%s Contrast Errors" msgstr[1] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "%s Warnings" msgstr[1] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" msgstr[1] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Žádné shrnutí k dispozici" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Neplatný název tabulky" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Tato nastavení umožňují globální opravy napříč celým vaším webem." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Může být nutné znovu uložit stránky nebo spustit kompletní skenování webu, aby se opravy projevily v reportech." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Uložit" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Ovlivněný kód" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Zobrazit problém ID %d na webu, otevře se v novém okně" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Zobrazit na stránce" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Oprava: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Opravit" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Váš uživatelský účet nemá oprávnění ignorovat tento problém." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Žádné podrobnosti k dispozici" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Žádná data o čitelnosti k dispozici" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Žádná data o ignorování k dispozici" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Shrnutí nebylo nastaveno" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Nemáte oprávnění upravit tento příspěvek." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Hodnota ID nebyla nastavena" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Příspěvek nebyl nalezen" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Dotaz na problém nevrátil žádné výsledky" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Dotaz na objekt nevrátil žádné výsledky" @@ -636,6 +653,12 @@ msgstr "Jméno" msgid "Type your first name" msgstr "Zadejte své jméno" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Přihlášením k odběru souhlasíte s přijímáním e-mailů v souladu s našimi %1$sZásadami ochrany osobních údajů%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Historie auditů" @@ -875,10 +898,6 @@ msgstr "Získat Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Získejte Accessibility Checker Pro (otevře se v novém okně)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Chybí povinný parametr." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-da.mo b/languages/accessibility-checker-da.mo index af63f846e..340331563 100644 Binary files a/languages/accessibility-checker-da.mo and b/languages/accessibility-checker-da.mo differ diff --git a/languages/accessibility-checker-da.po b/languages/accessibility-checker-da.po index ab217637e..48203bd0a 100644 --- a/languages/accessibility-checker-da.po +++ b/languages/accessibility-checker-da.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Få Pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Åbnes i et nyt vindue." @@ -188,11 +188,14 @@ msgstr "Opgrader nu" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Adgang nægtet" @@ -230,31 +233,37 @@ msgstr "Spørg aldrig igen" msgid "The review action value was not set" msgstr "Anmeldelseshandlingsværdien blev ikke indstillet" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "Post-ID'et blev ikke indstillet" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Du har ikke tilladelse til at se disse oplysninger for dette indlæg." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Der er ikke inkluderet et forenklet resumé for dette indhold." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Dit indhold har et læseniveau på eller under 9. klasse og kræver ikke et forenklet resumé." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Læseniveauet for det forenklede resumé er for højt." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Der er inkluderet et forenklet resumé for dette indhold." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Intet resumé at returnere" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Ugyldigt tabelnavn" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Disse indstillinger aktiverer globale rettelser på tværs af hele din hjemmeside." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Sider skal muligvis gemmes igen, eller en fuld hjemmesidescanning skal køres for at se rettelser afspejlet i rapporter." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Gem" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Berørt kode" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Se Problem-ID %d på hjemmesiden, åbner et nyt vindue" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Se på siden" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Ret: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Ret" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Din brugerkonto har ikke tilladelse til at ignorere dette problem." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Ingen detaljer at returnere" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Ingen læsbarhedsdata at returnere" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Ingen ignorer-data at returnere" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Resuméet blev ikke indstillet" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Du har ikke tilladelse til at redigere dette indlæg." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "ID-værdien blev ikke indstillet" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Indlæg ikke fundet" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Problemforespørgsel returnerede ingen resultater" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Objektforespørgsel returnerede ingen resultater" @@ -636,6 +653,12 @@ msgstr "Fornavn" msgid "Type your first name" msgstr "Skriv dit fornavn" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Ved at abonnere giver du samtykke til at modtage e-mails i overensstemmelse med vores %1$sPrivatlivspolitik%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Revisionshistorik" @@ -875,10 +898,6 @@ msgstr "Få Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Få Accessibility Checker Pro (åbner i et nyt vindue)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "En påkrævet parameter mangler." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-de.mo b/languages/accessibility-checker-de.mo index 8753e7ce2..968343f2d 100644 Binary files a/languages/accessibility-checker-de.mo and b/languages/accessibility-checker-de.mo differ diff --git a/languages/accessibility-checker-de.po b/languages/accessibility-checker-de.po index 0f5c035b8..5125add40 100644 --- a/languages/accessibility-checker-de.po +++ b/languages/accessibility-checker-de.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Pro-Version erwerben" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Öffnet sich in einem neuen Fenster." @@ -188,11 +188,14 @@ msgstr "Jetzt upgraden" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Zugriff verweigert" @@ -230,31 +233,37 @@ msgstr "Nie wieder fragen" msgid "The review action value was not set" msgstr "Der Bewertungsaktionswert wurde nicht gesetzt" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "Die Beitrags-ID wurde nicht festgelegt" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Sie haben keine Berechtigung, diese Informationen für diesen Beitrag anzusehen." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Für diesen Inhalt wurde keine vereinfachte Zusammenfassung hinzugefügt." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Ihr Inhalt hat ein Leseniveau auf oder unter der 9. Klasse und erfordert keine vereinfachte Zusammenfassung." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Das Leseniveau der vereinfachten Zusammenfassung ist zu hoch." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Für diesen Inhalt wurde eine vereinfachte Zusammenfassung hinzugefügt." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Keine Zusammenfassung verfügbar" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Ungültiger Tabellenname" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Diese Einstellungen aktivieren globale Korrekturen für Ihre gesamte Website." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Seiten müssen möglicherweise neu gespeichert oder ein vollständiger Website-Scan durchgeführt werden, damit die Korrekturen in den Berichten sichtbar werden." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Speichern" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Betroffener Code" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Problem-ID %d auf der Website anzeigen, öffnet ein neues Fenster" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Auf Seite anzeigen" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Korrektur: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Korrektur" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Ihr Benutzerkonto hat keine Berechtigung, dieses Problem zu ignorieren." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Keine Details verfügbar" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Keine Lesbarkeitsdetails verfügbar" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Keine Ignorier-Daten verfügbar" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Die Zusammenfassung wurde nicht festgelegt" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Sie haben keine Berechtigung, diesen Beitrag zu bearbeiten." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Der ID-Wert wurde nicht festgelegt" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Beitrag nicht gefunden" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Problemabfrage ergab keine Ergebnisse" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Objektabfrage ergab keine Ergebnisse" @@ -636,6 +653,12 @@ msgstr "Vorname" msgid "Type your first name" msgstr "Geben Sie Ihren Vornamen ein" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Durch das Abonnieren stimmen Sie zu, E-Mails gemäß unserer %1$sDatenschutzrichtlinie%2$s zu erhalten." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Prüfverlauf" @@ -875,10 +898,6 @@ msgstr "Holen Sie sich Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Accessibility Checker Pro beziehen (öffnet in neuem Fenster)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Ein erforderlicher Parameter fehlt." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-el.mo b/languages/accessibility-checker-el.mo index bd25e339a..32fda7bf5 100644 Binary files a/languages/accessibility-checker-el.mo and b/languages/accessibility-checker-el.mo differ diff --git a/languages/accessibility-checker-el.po b/languages/accessibility-checker-el.po index 345941123..4239efd45 100644 --- a/languages/accessibility-checker-el.po +++ b/languages/accessibility-checker-el.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Αποκτήστε pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Ανοίγει σε νέο παράθυρο." @@ -188,11 +188,14 @@ msgstr "Αναβαθμίστε τώρα" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Άρνηση πρόσβασης" @@ -230,31 +233,37 @@ msgstr "Μην ξαναρωτήσετε" msgid "The review action value was not set" msgstr "Η τιμή της ενέργειας κριτικής δεν ορίστηκε" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "Το αναγνωριστικό της δημοσίευσης δεν ορίστηκε" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Δεν έχετε άδεια να δείτε αυτές τις πληροφορίες για αυτή την ανάρτηση." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Δεν έχει συμπεριληφθεί απλοποιημένη περίληψη για αυτό το περιεχόμενο." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Το περιεχόμενό σας έχει επίπεδο ανάγνωσης στο ή κάτω από το επίπεδο της 9ης τάξης και δεν απαιτεί απλοποιημένη περίληψη." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Το επίπεδο ανάγνωσης της απλοποιημένης περίληψης είναι πολύ υψηλό." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Έχει συμπεριληφθεί μια απλοποιημένη περίληψη για αυτό το περιεχόμενο." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Δεν υπάρχει περίληψη για επιστροφή" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Μη έγκυρο όνομα πίνακα" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Αυτές οι ρυθμίσεις ενεργοποιούν καθολικές διορθώσεις σε ολόκληρο τον ιστότοπό σας." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Ενδέχεται να χρειαστεί να αποθηκευτούν ξανά οι σελίδες ή να εκτελεστεί πλήρης σάρωση του ιστότοπου για να εμφανιστούν οι διορθώσεις στις αναφορές." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Αποθήκευση" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Επηρεαζόμενος κώδικας" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Προβολή ζητήματος με ID %d στον ιστότοπο, ανοίγει νέο παράθυρο" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Προβολή στη σελίδα" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Διόρθωση: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Διόρθωση" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Ο λογαριασμός χρήστη σας δεν έχει δικαίωμα να αγνοήσει αυτό το ζήτημα." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Δεν υπάρχουν λεπτομέρειες για επιστροφή" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Δεν υπάρχουν δεδομένα αναγνωσιμότητας για επιστροφή" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Δεν υπάρχουν δεδομένα αγνόησης για επιστροφή" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Η περίληψη δεν ορίστηκε" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Δεν έχετε άδεια να επεξεργαστείτε αυτή την ανάρτηση." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Η τιμή του αναγνωριστικού δεν ορίστηκε" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Η ανάρτηση δεν βρέθηκε" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Το ερώτημα για το ζήτημα δεν επέστρεψε αποτελέσματα" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Το ερώτημα για το αντικείμενο δεν επέστρεψε αποτελέσματα" @@ -636,6 +653,12 @@ msgstr "Όνομα" msgid "Type your first name" msgstr "Πληκτρολογήστε το όνομά σας" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Με την εγγραφή σας, συναινείτε να λαμβάνετε emails σύμφωνα με την %1$sΠολιτική Απορρήτου%2$s μας." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Ιστορικό Ελέγχων" @@ -875,10 +898,6 @@ msgstr "Αποκτήστε το Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Αποκτήστε το Accessibility Checker Pro (ανοίγει σε νέο παράθυρο)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Λείπει μια απαιτούμενη παράμετρος." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-es.mo b/languages/accessibility-checker-es.mo index 0eed7acc8..97f6bc57a 100644 Binary files a/languages/accessibility-checker-es.mo and b/languages/accessibility-checker-es.mo differ diff --git a/languages/accessibility-checker-es.po b/languages/accessibility-checker-es.po index bea6376d6..3fe496e90 100644 --- a/languages/accessibility-checker-es.po +++ b/languages/accessibility-checker-es.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Obtener pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Se abre en una nueva ventana." @@ -188,11 +188,14 @@ msgstr "Actualizar ahora" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Permiso denegado" @@ -230,130 +233,144 @@ msgstr "No volver a preguntar" msgid "The review action value was not set" msgstr "El valor de acción de la reseña no se estableció" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "No se ha establecido el ID de la entrada" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "No tiene permiso para ver esta información para esta publicación." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "No se ha incluido un resumen simplificado para este contenido." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Tu contenido tiene un nivel de lectura igual o inferior al 9º grado y no requiere un resumen simplificado." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "El nivel de lectura del resumen simplificado es demasiado alto." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Se ha incluido un resumen simplificado para este contenido." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" msgstr[0] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" msgstr[0] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" msgstr[0] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "No hay resumen para devolver" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Nombre de tabla no válido" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Estas configuraciones habilitan correcciones globales en todo tu sitio." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Es posible que sea necesario volver a guardar las páginas o ejecutar un análisis completo del sitio para ver las correcciones reflejadas en los informes." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Guardar" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Código afectado" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Ver el problema ID %d en el sitio web, se abre en una nueva ventana" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Ver en la página" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Corrección: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Corregir" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Tu cuenta de usuario no tiene permisos para ignorar este problema." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "No hay detalles para devolver" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "No hay datos de legibilidad para devolver" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "No hay datos de ignorar para devolver" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "No se ha establecido el resumen" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "No tiene permiso para editar esta publicación." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "No se ha establecido el valor de ID" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Publicación no encontrada" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "La consulta de problemas no devolvió resultados" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "La consulta de objetos no devolvió resultados" @@ -628,6 +645,12 @@ msgstr "Nombre" msgid "Type your first name" msgstr "Escribe tu nombre" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Al suscribirse, consiente recibir correos electrónicos de acuerdo con nuestra %1$sPolítica de Privacidad%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Historial de auditorías" @@ -865,10 +888,6 @@ msgstr "Obtener Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Obtén Accessibility Checker Pro (se abre en una nueva ventana)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Falta un parámetro obligatorio." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-et.mo b/languages/accessibility-checker-et.mo index dc743258f..7f97ff6c9 100644 Binary files a/languages/accessibility-checker-et.mo and b/languages/accessibility-checker-et.mo differ diff --git a/languages/accessibility-checker-et.po b/languages/accessibility-checker-et.po index ac083abde..a374b03ea 100644 --- a/languages/accessibility-checker-et.po +++ b/languages/accessibility-checker-et.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Hangi Pro versioon" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Avaneb uues aknas." @@ -188,11 +188,14 @@ msgstr "Uuenda kohe" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Juurdepääs keelatud" @@ -230,31 +233,37 @@ msgstr "Ära enam kunagi küsi" msgid "The review action value was not set" msgstr "Arvustuse tegevuse väärtust ei määratud" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "Postituse ID-d ei määratud" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Teil pole luba selle postituse kohta teavet vaadata." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Selle sisu jaoks pole lihtsustatud kokkuvõtet lisatud." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Teie sisu lugemistase on 9. klassi või madalam ja ei vaja lihtsustatud kokkuvõtet." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Lihtsustatud kokkuvõtte lugemistase on liiga kõrge." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Selle sisu jaoks on lisatud lihtsustatud kokkuvõte." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Kokkuvõte puudub" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Vigane tabeli nimi" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Need seaded võimaldavad globaalseid parandusi üle kogu teie saidi." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Lehed võib olla vaja uuesti salvestada või läbi viia täielik saidi kontroll, et parandused raportites kajastuksid." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Salvesta" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Mõjutatud kood" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Vaata probleemi ID %d veebisaidil, avaneb uues aknas" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Vaata lehel" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Paranda: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Paranda" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Teie kasutajakontol pole õigust seda probleemi ignoreerida." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Üksikasju pole" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Loetavuse andmeid pole" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Ignoreerimise andmeid pole" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Kokkuvõtet ei määratud" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Teil pole luba seda postitust muuta." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "ID väärtust ei määratud" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Postitust ei leitud" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Probleemi päring ei andnud tulemusi" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Objekti päring ei andnud tulemusi" @@ -636,6 +653,12 @@ msgstr "Eesnimi" msgid "Type your first name" msgstr "Sisesta oma eesnimi" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Tellimisega nõustute saama e-kirju vastavalt meie %1$sprivaatsuspoliitikale%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Juurdepääsetavuse kontroll — auditiajalugu" @@ -875,10 +898,6 @@ msgstr "Hangi Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Hangi Accessibility Checker Pro (avaneb uues aknas)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Nõutav parameeter puudub." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-fi.mo b/languages/accessibility-checker-fi.mo index 3aed2ffac..fc1547eca 100644 Binary files a/languages/accessibility-checker-fi.mo and b/languages/accessibility-checker-fi.mo differ diff --git a/languages/accessibility-checker-fi.po b/languages/accessibility-checker-fi.po index 9f3e19aa0..b2a9020b5 100644 --- a/languages/accessibility-checker-fi.po +++ b/languages/accessibility-checker-fi.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Hanki pro-versio" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Avautuu uudessa ikkunassa." @@ -188,11 +188,14 @@ msgstr "Päivitä nyt" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Käyttöoikeus evätty" @@ -230,31 +233,37 @@ msgstr "Älä kysy enää koskaan" msgid "The review action value was not set" msgstr "Arvostelutoiminnon arvoa ei asetettu" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "Artikkelin tunnistetta ei ole asetettu" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Sinulla ei ole lupaa tarkastella tämän julkaisun tietoja." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Tähän sisältöön ei ole liitetty yksinkertaistettua yhteenvetoa." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Sisältösi luettavuustaso on 9. luokka tai alempi eikä vaadi yksinkertaistettua yhteenvetoa." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Yksinkertaistetun yhteenvedon luettavuustaso on liian korkea." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Tähän sisältöön on liitetty yksinkertaistettu yhteenveto." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Ei yhteenvetoa palautettavaksi" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Virheellinen taulukon nimi" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Nämä asetukset ottavat käyttöön globaalit korjaukset koko sivustollasi." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Sivut saattaa olla tarpeen tallentaa uudelleen tai suorittaa koko sivuston skannaus, jotta korjaukset näkyvät raporteissa." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Tallenna" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Vaikutuksen alainen koodi" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Näytä ongelma ID %d verkkosivustolla, avautuu uuteen ikkunaan" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Näytä sivulla" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Korjaus: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Korjaa" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Käyttäjätililläsi ei ole oikeuksia ohittaa tätä ongelmaa." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Ei yksityiskohtia palautettavaksi" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Ei luettavuustietoja palautettavaksi" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Ei ohitustietoja palautettavaksi" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Yhteenvetoa ei ole asetettu" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Sinulla ei ole lupaa muokata tätä julkaisua." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Tunnisteen arvoa ei ole asetettu" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Julkaisua ei löytynyt" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Ongelmakysely ei tuottanut tuloksia" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Objektikysely ei tuottanut tuloksia" @@ -636,6 +653,12 @@ msgstr "Etunimi" msgid "Type your first name" msgstr "Kirjoita etunimesi" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Tilaamalla hyväksyt sähköpostien vastaanottamisen %1$stietosuojakäytäntömme%2$s mukaisesti." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Tarkastushistoria" @@ -875,10 +898,6 @@ msgstr "Hanki Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Hanki Accessibility Checker Pro (avautuu uudessa ikkunassa)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Pakollinen parametri puuttuu." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-fr.mo b/languages/accessibility-checker-fr.mo index 91bbe87d2..2f35b681b 100644 Binary files a/languages/accessibility-checker-fr.mo and b/languages/accessibility-checker-fr.mo differ diff --git a/languages/accessibility-checker-fr.po b/languages/accessibility-checker-fr.po index 6618688e2..c508d1a85 100644 --- a/languages/accessibility-checker-fr.po +++ b/languages/accessibility-checker-fr.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Obtenir la version pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "S'ouvre dans une nouvelle fenêtre." @@ -188,11 +188,14 @@ msgstr "Mettre à niveau maintenant" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Permission refusée" @@ -230,130 +233,144 @@ msgstr "Ne plus jamais demander" msgid "The review action value was not set" msgstr "La valeur de l'action d'avis n'a pas été définie" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "L'ID de l'article n'a pas été défini" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Vous n'avez pas l'autorisation de consulter ces informations pour cette publication." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Un résumé simplifié n'a pas été inclus pour ce contenu." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Votre contenu a un niveau de lecture égal ou inférieur à la 3e (niveau collège) et ne nécessite pas de résumé simplifié." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Le niveau de lecture du résumé simplifié est trop élevé." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Un résumé simplifié a été inclus pour ce contenu." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" msgstr[0] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" msgstr[0] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" msgstr[0] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Aucun résumé à retourner" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Nom de table invalide" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Ces paramètres activent des corrections globales sur l'ensemble de votre site." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Il peut être nécessaire de réenregistrer les pages ou d'effectuer une analyse complète du site pour voir les corrections reflétées dans les rapports." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Enregistrer" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Code affecté" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Voir le problème ID %d sur le site web, ouvre une nouvelle fenêtre" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Voir sur la page" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Correction : " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Corriger" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Votre compte utilisateur n'a pas la permission d'ignorer ce problème." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Aucun détail à retourner" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Aucune donnée de lisibilité à retourner" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Aucune donnée d'ignorance à retourner" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Le résumé n'a pas été défini" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Vous n'avez pas l'autorisation de modifier cette publication." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "La valeur de l'ID n'a pas été définie" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Publication introuvable" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "La requête de problème n'a renvoyé aucun résultat" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "La requête d'objet n'a renvoyé aucun résultat" @@ -628,6 +645,12 @@ msgstr "Prénom" msgid "Type your first name" msgstr "Saisissez votre prénom" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "En vous abonnant, vous consentez à recevoir des e-mails conformément à notre %1$sPolitique de confidentialité%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Historique des audits" @@ -865,10 +888,6 @@ msgstr "Obtenez Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Obtenez Accessibility Checker Pro (s'ouvre dans une nouvelle fenêtre)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Un paramètre requis est manquant." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-he.mo b/languages/accessibility-checker-he.mo index 9d5fa455e..7f5ebb395 100644 Binary files a/languages/accessibility-checker-he.mo and b/languages/accessibility-checker-he.mo differ diff --git a/languages/accessibility-checker-he.po b/languages/accessibility-checker-he.po index 8b21f54bd..f74ca0f7e 100644 --- a/languages/accessibility-checker-he.po +++ b/languages/accessibility-checker-he.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "קבל גרסה מקצועית" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "נפתח בחלון חדש." @@ -188,11 +188,14 @@ msgstr "שדרג עכשיו" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "ההרשאה נדחתה" @@ -230,130 +233,144 @@ msgstr "אל תשאל יותר" msgid "The review action value was not set" msgstr "ערך פעולת הביקורת לא הוגדר" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "מזהה הפוסט לא הוגדר" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "אין לך הרשאה לצפות במידע זה עבור פוסט זה." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "לא נכלל סיכום מפושט עבור תוכן זה." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "לתוכן שלך יש רמת קריאה של כיתה ט' ומטה ואינו דורש סיכום מפושט." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "רמת הקריאה של הסיכום המפושט גבוהה מדי." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "נכלל סיכום מפושט עבור תוכן זה." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" msgstr[0] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" msgstr[0] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" msgstr[0] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "אין סיכום להחזרה" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "שם טבלה לא חוקי" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "הגדרות אלו מאפשרות תיקונים גלובליים בכל האתר שלך." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "ייתכן שיהיה צורך לשמור מחדש דפים או לבצע סריקה מלאה של האתר כדי לראות את התיקונים משתקפים בדוחות." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "שמור" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "קוד מושפע" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "צפה בבעיה מספר %d באתר, נפתח בחלון חדש" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "צפה בדף" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "תיקון: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "תקן" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "לחשבון המשתמש שלך אין הרשאה להתעלם מבעיה זו." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "אין פרטים להחזרה" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "אין נתוני קריאות להחזרה" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "אין נתוני התעלמות להחזרה" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "הסיכום לא הוגדר" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "אין לך הרשאה לערוך פוסט זה." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "ערך המזהה לא הוגדר" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "הפוסט לא נמצא" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "שאילתת הבעיה לא החזירה תוצאות" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "שאילתת האובייקט לא החזירה תוצאות" @@ -628,6 +645,12 @@ msgstr "שם פרטי" msgid "Type your first name" msgstr "הקלד את שמך הפרטי" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "על ידי הרשמה, אתה מסכים לקבל הודעות דוא\"ל בהתאם ל%1$sמדיניות הפרטיות%2$s שלנו." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — היסטוריית ביקורת" @@ -865,10 +888,6 @@ msgstr "קבל את Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "קבל Accessibility Checker Pro (נפתח בחלון חדש)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "פרמטר נדרש חסר." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-hu.mo b/languages/accessibility-checker-hu.mo index 4e321d866..12b674141 100644 Binary files a/languages/accessibility-checker-hu.mo and b/languages/accessibility-checker-hu.mo differ diff --git a/languages/accessibility-checker-hu.po b/languages/accessibility-checker-hu.po index 0bb45c171..9e5a860db 100644 --- a/languages/accessibility-checker-hu.po +++ b/languages/accessibility-checker-hu.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Pro verzió beszerzése" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Új ablakban nyílik meg." @@ -188,11 +188,14 @@ msgstr "Frissítés most" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Hozzáférés megtagadva" @@ -230,31 +233,37 @@ msgstr "Ne kérdezzen többé" msgid "The review action value was not set" msgstr "Az értékelési művelet értéke nem lett beállítva" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "A bejegyzés azonosítója nem volt beállítva" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Nincs jogosultsága megtekinteni ezt az információt ehhez a bejegyzéshez." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Ehhez a tartalomhoz nem tartozik egyszerűsített összefoglaló." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "A tartalom olvasási szintje 9. osztályos vagy az alatti, így nem igényel egyszerűsített összefoglalót." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Az egyszerűsített összefoglaló olvasási szintje túl magas." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Ehhez a tartalomhoz egyszerűsített összefoglaló tartozik." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Nincs visszaadható összefoglaló" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Érvénytelen táblanév" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Ezek a beállítások globális javításokat engedélyeznek az egész webhelyen." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Előfordulhat, hogy az oldalakat újra kell menteni, vagy teljes webhely-ellenőrzést kell futtatni ahhoz, hogy a javítások megjelenjenek a jelentésekben." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Mentés" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Érintett kód" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "%d Azonosítójú probléma megtekintése a weboldalon, új ablakban nyílik meg" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Megtekintés az oldalon" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Javítás: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Javítás" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "A felhasználói fiókjának nincs jogosultsága ennek a problémának a figyelmen kívül hagyására." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Nincsenek visszaadható részletek" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Nincsenek visszaadható olvashatósági adatok" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Nincsenek visszaadható figyelmen kívül hagyási adatok" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Az összefoglaló nem volt beállítva" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Nincs jogosultsága szerkeszteni ezt a bejegyzést." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Az azonosító érték nem volt beállítva" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "A bejegyzés nem található" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "A probléma lekérdezése nem adott eredményt" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Az objektum lekérdezése nem adott eredményt" @@ -636,6 +653,12 @@ msgstr "Keresztnév" msgid "Type your first name" msgstr "Írja be a keresztnevét" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "A feliratkozással Ön hozzájárul ahhoz, hogy e-maileket kapjon az %1$sAdatvédelmi szabályzatunknak%2$s megfelelően." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Ellenőrzési előzmények" @@ -875,10 +898,6 @@ msgstr "Szerezze be az Accessibility Checker Pro-t" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Szerezze be az Accessibility Checker Pro-t (új ablakban nyílik meg)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Egy kötelező paraméter hiányzik." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-id.mo b/languages/accessibility-checker-id.mo index d31cd003a..040da0d77 100644 Binary files a/languages/accessibility-checker-id.mo and b/languages/accessibility-checker-id.mo differ diff --git a/languages/accessibility-checker-id.po b/languages/accessibility-checker-id.po index 6187b7e9a..5758fb981 100644 --- a/languages/accessibility-checker-id.po +++ b/languages/accessibility-checker-id.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Dapatkan pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Terbuka di jendela baru." @@ -188,11 +188,14 @@ msgstr "Tingkatkan sekarang" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Izin ditolak" @@ -230,31 +233,37 @@ msgstr "Jangan tanyakan lagi" msgid "The review action value was not set" msgstr "Nilai tindakan ulasan tidak diatur" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "ID pos tidak diatur" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Anda tidak memiliki izin untuk melihat informasi ini untuk postingan ini." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Ringkasan sederhana belum disertakan untuk konten ini." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Konten Anda memiliki tingkat keterbacaan setara atau di bawah kelas 9 dan tidak memerlukan ringkasan sederhana." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Tingkat keterbacaan ringkasan sederhana terlalu tinggi." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Ringkasan sederhana telah disertakan untuk konten ini." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Tidak ada ringkasan untuk dikembalikan" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Nama tabel tidak valid" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Pengaturan ini mengaktifkan perbaikan global di seluruh situs Anda." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Halaman mungkin perlu disimpan ulang atau pemindaian situs penuh dijalankan untuk melihat perbaikan tercermin dalam laporan." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Simpan" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Kode yang terpengaruh" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Lihat Masalah ID %d di situs web, buka jendela baru" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Lihat di halaman" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Perbaikan: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Perbaiki" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Akun pengguna Anda tidak memiliki izin untuk mengabaikan masalah ini." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Tidak ada detail untuk dikembalikan" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Tidak ada data keterbacaan untuk dikembalikan" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Tidak ada data pengabaian untuk dikembalikan" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Ringkasan tidak diatur" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Anda tidak memiliki izin untuk mengedit postingan ini." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Nilai ID tidak diatur" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Postingan tidak ditemukan" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Kueri masalah tidak mengembalikan hasil" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Kueri objek tidak mengembalikan hasil" @@ -636,6 +653,12 @@ msgstr "Nama depan" msgid "Type your first name" msgstr "Ketik nama depan Anda" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Dengan berlangganan, Anda menyetujui untuk menerima email sesuai dengan %1$sKebijakan Privasi%2$s kami." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Riwayat Audit" @@ -875,10 +898,6 @@ msgstr "Dapatkan Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Dapatkan Accessibility Checker Pro (buka di jendela baru)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Parameter yang diperlukan tidak ada." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-it.mo b/languages/accessibility-checker-it.mo index aca742c7f..e615fe904 100644 Binary files a/languages/accessibility-checker-it.mo and b/languages/accessibility-checker-it.mo differ diff --git a/languages/accessibility-checker-it.po b/languages/accessibility-checker-it.po index 7870715b0..62eb027d0 100644 --- a/languages/accessibility-checker-it.po +++ b/languages/accessibility-checker-it.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Passa a Pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Si apre in una nuova finestra." @@ -188,11 +188,14 @@ msgstr "Aggiorna ora" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Permesso negato" @@ -230,130 +233,144 @@ msgstr "Non chiedere mai più" msgid "The review action value was not set" msgstr "Il valore dell'azione di recensione non è stato impostato" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "L'ID del post non è stato impostato" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Non hai il permesso di visualizzare queste informazioni per questo post." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Non è stato incluso un riassunto semplificato per questo contenuto." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Il tuo contenuto ha un livello di lettura pari o inferiore al 9° grado e non richiede un riassunto semplificato." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Il livello di lettura del riassunto semplificato è troppo elevato." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "È stato incluso un riassunto semplificato per questo contenuto." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" msgstr[0] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" msgstr[0] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" msgstr[0] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Nessun riassunto da restituire" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Nome della tabella non valido" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Queste impostazioni abilitano correzioni globali su tutto il sito." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Potrebbe essere necessario salvare nuovamente le pagine o eseguire una scansione completa del sito per vedere le correzioni riflesse nei rapporti." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Salva" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Codice interessato" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Visualizza il problema ID %d sul sito web, si apre in una nuova finestra" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Visualizza sulla pagina" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Correzione: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Correggi" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Il tuo account utente non ha i permessi per ignorare questo problema." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Nessun dettaglio da restituire" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Nessun dato di leggibilità da restituire" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Nessun dato di ignorazione da restituire" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Il riassunto non è stato impostato" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Non hai il permesso di modificare questo post." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Il valore ID non è stato impostato" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Post non trovato" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "La query del problema non ha restituito risultati" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "La query dell'oggetto non ha restituito risultati" @@ -628,6 +645,12 @@ msgstr "Nome" msgid "Type your first name" msgstr "Inserisci il tuo nome" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Iscrivendoti, acconsenti a ricevere email in conformità con la nostra %1$sPolitica sulla Privacy%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Cronologia degli audit" @@ -865,10 +888,6 @@ msgstr "Ottieni Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Ottieni Accessibility Checker Pro (si apre in una nuova finestra)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Manca un parametro obbligatorio." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-ja.mo b/languages/accessibility-checker-ja.mo index 7b3ba9918..85e39f294 100644 Binary files a/languages/accessibility-checker-ja.mo and b/languages/accessibility-checker-ja.mo differ diff --git a/languages/accessibility-checker-ja.po b/languages/accessibility-checker-ja.po index 17086efb6..0560d7f6e 100644 --- a/languages/accessibility-checker-ja.po +++ b/languages/accessibility-checker-ja.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Proを入手" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "新しいウィンドウで開きます。" @@ -188,11 +188,14 @@ msgstr "今すぐアップグレード" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "権限がありません" @@ -230,31 +233,37 @@ msgstr "二度と尋ねない" msgid "The review action value was not set" msgstr "レビューアクションの値が設定されていませんでした" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "投稿IDが設定されていません" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "この投稿に関する情報を閲覧する権限がありません。" + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "このコンテンツには簡略化された要約が含まれていません。" -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "あなたのコンテンツの読解レベルは中学3年生以下であり、簡略化された要約は必要ありません。" -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "簡略化された要約の読解レベルが高すぎます。" -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "このコンテンツには簡略化された要約が含まれています。" #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "返す要約がありません" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "無効なテーブル名" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "これらの設定は、サイト全体にわたるグローバルな修正を有効にします。" -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "レポートに修正が反映されるには、ページの再保存またはサイト全体のスキャンの実行が必要な場合があります。" -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "保存" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "影響を受けるコード" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "ウェブサイトで問題ID %dを表示する(新しいウィンドウで開きます)" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "ページで表示" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "修正: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "修正" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "あなたのユーザーアカウントには、この問題を無視する権限がありません。" -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "返す詳細がありません" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "返す読みやすさデータがありません" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "返す無視データがありません" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "要約が設定されていません" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "この投稿を編集する権限がありません。" + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "ID値が設定されていません" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "投稿が見つかりません" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "問題のクエリで結果が返されませんでした" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "オブジェクトのクエリで結果が返されませんでした" @@ -636,6 +653,12 @@ msgstr "名" msgid "Type your first name" msgstr "名を入力" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "購読することにより、%1$sプライバシーポリシー%2$sに従ってメールを受け取ることに同意したことになります。" + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker—監査履歴" @@ -875,10 +898,6 @@ msgstr "Accessibility Checker Proを入手" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Accessibility Checker Pro を入手する(新しいウィンドウで開きます)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "必須パラメータが不足しています。" - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-ko.mo b/languages/accessibility-checker-ko.mo index fe12cfc90..7ee4cd1f8 100644 Binary files a/languages/accessibility-checker-ko.mo and b/languages/accessibility-checker-ko.mo differ diff --git a/languages/accessibility-checker-ko.po b/languages/accessibility-checker-ko.po index f7798e490..d6fcf5d6c 100644 --- a/languages/accessibility-checker-ko.po +++ b/languages/accessibility-checker-ko.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Pro 버전 구매하기" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "새 창에서 열립니다." @@ -188,11 +188,14 @@ msgstr "지금 업그레이드하기" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "권한이 거부되었습니다" @@ -230,31 +233,37 @@ msgstr "다시 묻지 않기" msgid "The review action value was not set" msgstr "리뷰 작업 값이 설정되지 않았습니다" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "게시물 ID가 설정되지 않았습니다" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "이 게시물에 대한 이 정보를 볼 수 있는 권한이 없습니다." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "이 콘텐츠에 대한 간단한 요약이 포함되지 않았습니다." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "귀하의 콘텐츠는 9학년 이하의 읽기 수준이므로 간단한 요약이 필요하지 않습니다." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "간단한 요약의 읽기 수준이 너무 높습니다." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "이 콘텐츠에 대한 간단한 요약이 포함되어 있습니다." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "반환할 요약 없음" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "잘못된 테이블 이름" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "이 설정은 전체 사이트에 걸쳐 전역 수정을 활성화합니다." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "수정 사항이 보고서에 반영되려면 페이지를 다시 저장하거나 전체 사이트 스캔을 실행해야 할 수 있습니다." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "저장" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "영향을 받는 코드" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "웹사이트에서 문제 ID %d 보기, 새 창에서 열림" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "페이지에서 보기" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "수정: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "수정" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "사용자 계정에 이 문제를 무시할 수 있는 권한이 없습니다." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "반환할 세부 정보 없음" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "반환할 가독성 데이터 없음" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "반환할 무시 데이터 없음" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "요약이 설정되지 않았습니다" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "이 게시물을 편집할 권한이 없습니다." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "ID 값이 설정되지 않았습니다" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "게시물을 찾을 수 없습니다" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "문제 쿼리 결과 없음" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "객체 쿼리 결과 없음" @@ -636,6 +653,12 @@ msgstr "이름" msgid "Type your first name" msgstr "이름을 입력하세요" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "구독함으로써, 귀하는 %1$s개인정보 처리방침%2$s에 따라 이메일을 받는 것에 동의합니다." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — 감사 이력" @@ -875,10 +898,6 @@ msgstr "Accessibility Checker Pro 구매하기" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Accessibility Checker Pro 받기 (새 창에서 열림)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "필수 매개변수가 누락되었어." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-lt.mo b/languages/accessibility-checker-lt.mo index 50e526e86..e9c8acfff 100644 Binary files a/languages/accessibility-checker-lt.mo and b/languages/accessibility-checker-lt.mo differ diff --git a/languages/accessibility-checker-lt.po b/languages/accessibility-checker-lt.po index 3c4e8a59e..0718eb890 100644 --- a/languages/accessibility-checker-lt.po +++ b/languages/accessibility-checker-lt.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Gauti Pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Atsidaro naujame lange." @@ -188,11 +188,14 @@ msgstr "Atnaujinti dabar" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Prieiga uždrausta" @@ -230,31 +233,37 @@ msgstr "Daugiau niekada neklausti" msgid "The review action value was not set" msgstr "Apžvalgos veiksmo reikšmė nebuvo nustatyta" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "Įrašo ID nebuvo nustatytas" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Jūs neturite leidimo peržiūrėti šios informacijos apie šį įrašą." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Supaprastinta santrauka šiam turiniui nebuvo įtraukta." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Jūsų turinys yra 9 klasės ar žemesnio skaitymo lygio ir nereikalauja supaprastintos santraukos." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Supaprastintos santraukos skaitymo lygis yra per aukštas." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Šiam turiniui buvo įtraukta supaprastinta santrauka." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "%s Errors" msgstr[1] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "%s Contrast Errors" msgstr[1] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "%s Warnings" msgstr[1] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" msgstr[1] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Nėra santraukos grąžinimui" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Neteisingas lentelės pavadinimas" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Šie nustatymai įgalina globalius pataisymus visoje jūsų svetainėje." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Kad pataisymai atsispindėtų ataskaitose, gali reikėti iš naujo išsaugoti puslapius arba atlikti pilną svetainės skenavimą." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Išsaugoti" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Paveiktas kodas" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Peržiūrėti problemą ID %d svetainėje, atsidarys naujas langas" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Peržiūrėti puslapyje" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Pataisymas: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Pataisyti" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Jūsų naudotojo paskyra neturi leidimo ignoruoti šią problemą." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Nėra detalių grąžinimui" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Nėra skaitomumo duomenų grąžinimui" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Nėra ignoravimo duomenų grąžinimui" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Santrauka nebuvo nustatyta" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Jūs neturite leidimo redaguoti šį įrašą." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "ID reikšmė nebuvo nustatyta" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Įrašas nerastas" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Problemos užklausa negrąžino rezultatų" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Objekto užklausa negrąžino rezultatų" @@ -636,6 +653,12 @@ msgstr "Vardas" msgid "Type your first name" msgstr "Įveskite savo vardą" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Prenumeruodami sutinkate gauti el. laiškus pagal mūsų %1$sPrivatumo politiką%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Audito istorija" @@ -875,10 +898,6 @@ msgstr "Gauti Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Gauti Accessibility Checker Pro (atsidaro naujame lange)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Trūksta būtino parametro." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-lv.mo b/languages/accessibility-checker-lv.mo index 25da9f1b9..0d1b523e4 100644 Binary files a/languages/accessibility-checker-lv.mo and b/languages/accessibility-checker-lv.mo differ diff --git a/languages/accessibility-checker-lv.po b/languages/accessibility-checker-lv.po index b1e104a34..22d81038b 100644 --- a/languages/accessibility-checker-lv.po +++ b/languages/accessibility-checker-lv.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Iegūt pro versiju" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Atveras jaunā logā." @@ -188,11 +188,14 @@ msgstr "Jaunināt tagad" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Atļauja liegta" @@ -230,130 +233,144 @@ msgstr "Vairs nejautāt" msgid "The review action value was not set" msgstr "Atsauksmes darbības vērtība netika iestatīta" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "Ieraksta ID netika iestatīts" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Jums nav atļaujas skatīt šo informāciju par šo ierakstu." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Šim saturam nav pievienots vienkāršots kopsavilkums." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Jūsu saturam ir 9. klases vai zemāks lasīšanas līmenis, un tam nav nepieciešams vienkāršots kopsavilkums." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Vienkāršotā kopsavilkuma lasīšanas līmenis ir pārāk augsts." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Šim saturam ir pievienots vienkāršots kopsavilkums." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" msgstr[0] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" msgstr[0] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" msgstr[0] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Nav kopsavilkuma, ko atgriezt" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Nederīgs tabulas nosaukums" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Šie iestatījumi iespējo globālus labojumus visā jūsu vietnē." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Lai redzētu labojumus atspoguļotus pārskatos, var būt nepieciešams atkārtoti saglabāt lapas vai veikt pilnas vietnes pārbaudi." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Saglabāt" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Ietekmētais kods" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Skatīt problēmu ar ID %d vietnē, atveras jaunā logā" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Skatīt lapā" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Labojums: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Labot" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Jūsu lietotāja kontam nav atļaujas ignorēt šo problēmu." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Nav detaļu, ko atgriezt" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Nav lasāmības datu, ko atgriezt" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Nav ignorēšanas datu, ko atgriezt" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Kopsavilkums netika iestatīts" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Jums nav atļaujas rediģēt šo ierakstu." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "ID vērtība netika iestatīta" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Ieraksts nav atrasts" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Problēmas vaicājums neatgrieza rezultātus" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Objekta vaicājums neatgrieza rezultātus" @@ -628,6 +645,12 @@ msgstr "Vārds" msgid "Type your first name" msgstr "Ievadiet savu vārdu" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Abonējot jūs piekrītat saņemt e-pastus saskaņā ar mūsu %1$sPrivātuma politiku%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Audita vēsture" @@ -865,10 +888,6 @@ msgstr "Iegūstiet Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Iegūt Accessibility Checker Pro (atveras jaunā logā)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Trūkst obligātais parametrs." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-nb.mo b/languages/accessibility-checker-nb.mo index e413488b0..af024b355 100644 Binary files a/languages/accessibility-checker-nb.mo and b/languages/accessibility-checker-nb.mo differ diff --git a/languages/accessibility-checker-nb.po b/languages/accessibility-checker-nb.po index b2a886094..c5b2a2f25 100644 --- a/languages/accessibility-checker-nb.po +++ b/languages/accessibility-checker-nb.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Få pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Åpnes i et nytt vindu." @@ -188,11 +188,14 @@ msgstr "Oppgrader nå" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Tilgang nektet" @@ -230,31 +233,37 @@ msgstr "Spør aldri igjen" msgid "The review action value was not set" msgstr "Anmeldelseshandlingsverdien ble ikke satt" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "Innlegg-ID-en ble ikke satt" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Du har ikke tillatelse til å se denne informasjonen for dette innlegget." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Et forenklet sammendrag er ikke inkludert for dette innholdet." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Innholdet ditt har et lesenivå på eller under 9. klasse og krever ikke et forenklet sammendrag." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Lesenivået på det forenklede sammendraget er for høyt." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Et forenklet sammendrag er inkludert for dette innholdet." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Ingen sammendrag å returnere" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Ugyldig tabellnavn" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Disse innstillingene aktiverer globale rettelser på hele nettstedet ditt." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Sider må kanskje lagres på nytt eller en fullstendig nettstedsskanning må kjøres for at rettelsene skal vises i rapportene." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Lagre" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Berørt kode" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Vis problem-ID %d på nettstedet, åpnes i et nytt vindu" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Vis på siden" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Rettelse: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Rett" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Brukerkontoen din har ikke tillatelse til å ignorere dette problemet." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Ingen detaljer å returnere" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Ingen lesbarhetsdata å returnere" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Ingen ignorer-data å returnere" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Sammendraget ble ikke satt" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Du har ikke tillatelse til å redigere dette innlegget." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "ID-verdien ble ikke satt" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Innlegg ikke funnet" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Problemspørringen ga ingen resultater" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Objektspørringen ga ingen resultater" @@ -636,6 +653,12 @@ msgstr "Fornavn" msgid "Type your first name" msgstr "Skriv inn fornavnet ditt" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Ved å abonnere samtykker du til å motta e-poster i samsvar med vår %1$sPersonvernpolicy%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Revisjonshistorikk" @@ -875,10 +898,6 @@ msgstr "Få Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Få Accessibility Checker Pro (åpnes i nytt vindu)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "En påkrevd parameter mangler." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-nl.mo b/languages/accessibility-checker-nl.mo index 4b03ce162..041d95630 100644 Binary files a/languages/accessibility-checker-nl.mo and b/languages/accessibility-checker-nl.mo differ diff --git a/languages/accessibility-checker-nl.po b/languages/accessibility-checker-nl.po index cd14d761e..f2a057e17 100644 --- a/languages/accessibility-checker-nl.po +++ b/languages/accessibility-checker-nl.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Ga voor pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Opent in een nieuw venster." @@ -188,11 +188,14 @@ msgstr "Nu upgraden" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Toegang geweigerd" @@ -230,31 +233,37 @@ msgstr "Vraag nooit meer" msgid "The review action value was not set" msgstr "De recensie-actiewaarde was niet ingesteld" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "De post-ID was niet ingesteld" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "U heeft geen toestemming om deze informatie voor dit bericht te bekijken." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Er is geen vereenvoudigde samenvatting opgenomen voor deze inhoud." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Uw inhoud heeft een leesniveau van 9e klas of lager en vereist geen vereenvoudigde samenvatting." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Het leesniveau van de vereenvoudigde samenvatting is te hoog." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Er is een vereenvoudigde samenvatting opgenomen voor deze inhoud." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Geen samenvatting om terug te geven" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Ongeldige tabelnaam" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Deze instellingen activeren globale oplossingen voor uw hele website." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Pagina's moeten mogelijk opnieuw worden opgeslagen of er moet een volledige websitescan worden uitgevoerd om de oplossingen in de rapporten te zien." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Opslaan" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Getroffen code" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Bekijk probleem-ID %d op de website, opent een nieuw venster" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Bekijk op pagina" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Oplossing: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Oplossen" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Uw gebruikersaccount heeft geen toestemming om dit probleem te negeren." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Geen details om terug te geven" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Geen leesbaarheidsgegevens om terug te geven" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Geen negeergegevens om terug te geven" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "De samenvatting was niet ingesteld" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "U heeft geen toestemming om dit bericht te bewerken." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "De id-waarde was niet ingesteld" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Bericht niet gevonden" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Probleemzoekopdracht leverde geen resultaten op" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Objectzoekopdracht leverde geen resultaten op" @@ -636,6 +653,12 @@ msgstr "Voornaam" msgid "Type your first name" msgstr "Vul uw voornaam in" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Door u te abonneren, stemt u ermee in e-mails te ontvangen in overeenstemming met ons %1$sPrivacybeleid%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Auditgeschiedenis" @@ -875,10 +898,6 @@ msgstr "Krijg Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Accessibility Checker Pro ophalen (opent in nieuw venster)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Er ontbreekt een verplichte parameter." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-pl.mo b/languages/accessibility-checker-pl.mo index 329b54088..d5551d76f 100644 Binary files a/languages/accessibility-checker-pl.mo and b/languages/accessibility-checker-pl.mo differ diff --git a/languages/accessibility-checker-pl.po b/languages/accessibility-checker-pl.po index 590ffc41b..227572c66 100644 --- a/languages/accessibility-checker-pl.po +++ b/languages/accessibility-checker-pl.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Przejdź na wersję Pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Otwiera się w nowym oknie." @@ -188,11 +188,14 @@ msgstr "Kup teraz" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Odmowa dostępu" @@ -230,31 +233,37 @@ msgstr "Nigdy więcej nie pytaj" msgid "The review action value was not set" msgstr "Wartość akcji recenzji nie została ustawiona" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "Nie ustawiono ID wpisu" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Nie masz uprawnień do wyświetlania tych informacji dla tego wpisu." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Nie dołączono uproszczonego podsumowania dla tej treści." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Twoja treść ma poziom czytelności na poziomie 9 klasy lub niższym i nie wymaga uproszczonego podsumowania." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Poziom czytelności uproszczonego podsumowania jest zbyt wysoki." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Dołączono uproszczone podsumowanie dla tej treści." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "%s Errors" msgstr[1] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "%s Contrast Errors" msgstr[1] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "%s Warnings" msgstr[1] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" msgstr[1] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Brak podsumowania do zwrócenia" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Nieprawidłowa nazwa tabeli" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Te ustawienia umożliwiają globalne poprawki na całej Twojej stronie." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Może być konieczne ponowne zapisanie stron lub przeprowadzenie pełnego skanowania witryny, aby zobaczyć poprawki odzwierciedlone w raportach." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Zapisz" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Kod, którego dotyczy problem" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Zobacz problem o ID %d na stronie internetowej, otwiera nowe okno" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Zobacz na stronie" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Naprawa: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Napraw" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Twoje konto użytkownika nie ma uprawnień do zignorowania tego problemu." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Brak szczegółów do zwrócenia" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Brak danych o czytelności do zwrócenia" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Brak danych o ignorowaniu do zwrócenia" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Nie ustawiono podsumowania" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Nie masz uprawnień do edytowania tego wpisu." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Nie ustawiono wartości id" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Nie znaleziono wpisu" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Zapytanie o problem nie zwróciło wyników" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Zapytanie o obiekt nie zwróciło wyników" @@ -636,6 +653,12 @@ msgstr "Imię" msgid "Type your first name" msgstr "Wpisz swoje imię" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Subskrybując, wyrażasz zgodę na otrzymywanie wiadomości e-mail zgodnie z naszą %1$sPolityką Prywatności%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Historia audytów" @@ -875,10 +898,6 @@ msgstr "Zdobądź Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Pobierz Accessibility Checker Pro (otwiera się w nowym oknie)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Brakuje wymaganego parametru." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-pt-BR.mo b/languages/accessibility-checker-pt-BR.mo index 98c411081..3f720ea64 100644 Binary files a/languages/accessibility-checker-pt-BR.mo and b/languages/accessibility-checker-pt-BR.mo differ diff --git a/languages/accessibility-checker-pt-BR.po b/languages/accessibility-checker-pt-BR.po index 23d50be3a..b45e1c3fc 100644 --- a/languages/accessibility-checker-pt-BR.po +++ b/languages/accessibility-checker-pt-BR.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Obter pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Abre em uma nova janela." @@ -188,11 +188,14 @@ msgstr "Faça o upgrade agora" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Permissão negada" @@ -230,130 +233,144 @@ msgstr "Nunca perguntar novamente" msgid "The review action value was not set" msgstr "O valor da ação de avaliação não foi definido" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "O ID da postagem não foi definido" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Você não tem permissão para visualizar esta informação para esta postagem." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Não foi incluído um resumo simplificado para este conteúdo." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Seu conteúdo tem um nível de leitura igual ou inferior ao 9º ano e não requer um resumo simplificado." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "O nível de leitura do resumo simplificado está muito alto." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Um resumo simplificado foi incluído para este conteúdo." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" msgstr[0] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" msgstr[0] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" msgstr[0] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Nenhum resumo para retornar" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Nome da tabela inválido" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Estas configurações ativam correções globais em todo o seu site." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Pode ser necessário resalvar as páginas ou executar uma varredura completa do site para ver as correções refletidas nos relatórios." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Salvar" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Código afetado" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Ver problema ID %d no site, abre uma nova janela" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Ver na página" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Correção: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Corrigir" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Sua conta de usuário não tem permissão para ignorar este problema." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Nenhum detalhe para retornar" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Nenhum dado de legibilidade para retornar" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Nenhum dado de ignorar para retornar" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "O resumo não foi definido" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Você não tem permissão para editar esta postagem." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "O valor do ID não foi definido" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Postagem não encontrada" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "A consulta do problema não retornou resultados" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "A consulta do objeto não retornou resultados" @@ -628,6 +645,12 @@ msgstr "Primeiro nome" msgid "Type your first name" msgstr "Digite seu primeiro nome" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Ao se inscrever, você consente em receber emails de acordo com nossa %1$sPolítica de Privacidade%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Histórico de Auditoria" @@ -865,10 +888,6 @@ msgstr "Obter o Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Obter Accessibility Checker Pro (abre em nova janela)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Falta um parâmetro obrigatório." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-pt-PT.mo b/languages/accessibility-checker-pt-PT.mo index 7d6a12e69..c9bfa83f3 100644 Binary files a/languages/accessibility-checker-pt-PT.mo and b/languages/accessibility-checker-pt-PT.mo differ diff --git a/languages/accessibility-checker-pt-PT.po b/languages/accessibility-checker-pt-PT.po index c624a349c..676005ad9 100644 --- a/languages/accessibility-checker-pt-PT.po +++ b/languages/accessibility-checker-pt-PT.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Obter pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Abre numa nova janela." @@ -188,11 +188,14 @@ msgstr "Fazer upgrade agora" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Permissão negada" @@ -230,130 +233,144 @@ msgstr "Nunca mais perguntar" msgid "The review action value was not set" msgstr "O valor da ação de avaliação não foi definido" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "O ID da publicação não foi definido" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Não tem permissão para ver esta informação para esta publicação." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Não foi incluído um resumo simplificado para este conteúdo." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "O seu conteúdo tem um nível de leitura igual ou inferior ao 9º ano e não requer um resumo simplificado." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "O nível de leitura do resumo simplificado é demasiado elevado." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Foi incluído um resumo simplificado para este conteúdo." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" msgstr[0] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" msgstr[0] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" msgstr[0] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Nenhum resumo para devolver" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Nome de tabela inválido" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Estas definições ativam correções globais em todo o seu site." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Pode ser necessário gravar novamente as páginas ou executar uma análise completa do site para ver as correções refletidas nos relatórios." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Guardar" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Código afetado" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Ver Problema ID %d no website, abre uma nova janela" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Ver na página" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Correção: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Corrigir" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "A sua conta de utilizador não tem permissão para ignorar este problema." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Nenhum detalhe para devolver" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Nenhum dado de legibilidade para devolver" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Nenhum dado de ignorar para devolver" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "O resumo não foi definido" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Não tem permissão para editar esta publicação." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "O valor de ID não foi definido" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Publicação não encontrada" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "A consulta do problema não devolveu resultados" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "A consulta do objeto não devolveu resultados" @@ -628,6 +645,12 @@ msgstr "Primeiro nome" msgid "Type your first name" msgstr "Digite o seu primeiro nome" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Ao subscrever, consente em receber emails de acordo com a nossa %1$sPolítica de Privacidade%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Histórico de Auditorias" @@ -865,10 +888,6 @@ msgstr "Obter o Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Obter o Accessibility Checker Pro (abre numa nova janela)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Falta um parâmetro obrigatório." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-ro.mo b/languages/accessibility-checker-ro.mo index a1009bfbf..d836a3cde 100644 Binary files a/languages/accessibility-checker-ro.mo and b/languages/accessibility-checker-ro.mo differ diff --git a/languages/accessibility-checker-ro.po b/languages/accessibility-checker-ro.po index a84849ccb..f1f31ea56 100644 --- a/languages/accessibility-checker-ro.po +++ b/languages/accessibility-checker-ro.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Obțineți versiunea Pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Se deschide într-o fereastră nouă." @@ -188,11 +188,14 @@ msgstr "Faceți upgrade acum" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Permisiune refuzată" @@ -230,130 +233,144 @@ msgstr "Nu mă mai întreba niciodată" msgid "The review action value was not set" msgstr "Valoarea acțiunii de recenzie nu a fost setată" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "ID-ul postării nu a fost setat" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Nu aveți permisiunea de a vizualiza aceste informații pentru această postare." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Nu a fost inclus un rezumat simplificat pentru acest conținut." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Conținutul dvs. are un nivel de lectură de clasa a 9-a sau mai jos și nu necesită un rezumat simplificat." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Nivelul de lectură al rezumatului simplificat este prea ridicat." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "A fost inclus un rezumat simplificat pentru acest conținut." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" msgstr[0] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" msgstr[0] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" msgstr[0] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Niciun rezumat de returnat" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Nume de tabel invalid" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Aceste setări activează corecții globale pe întregul dvs. site." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Paginile ar putea necesita resalvare sau o scanare completă a site-ului pentru a vedea corecțiile reflectate în rapoarte." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Salvează" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Cod afectat" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Vizualizați problema cu ID-ul %d pe site, se deschide o fereastră nouă" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Vizualizați pe pagină" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Corecție: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Corectează" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Contul dvs. de utilizator nu are permisiunea de a ignora această problemă." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Nu există detalii de returnat" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Nu există date de lizibilitate de returnat" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Nu există date de ignorare de returnat" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Rezumatul nu a fost setat" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Nu aveți permisiunea de a edita această postare." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Valoarea ID-ului nu a fost setată" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Postare negăsită" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Interogarea problemei nu a returnat niciun rezultat" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Interogarea obiectului nu a returnat niciun rezultat" @@ -628,6 +645,12 @@ msgstr "Prenume" msgid "Type your first name" msgstr "Introduceți prenumele" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Prin abonare, sunteți de acord să primiți e-mailuri în conformitate cu %1$sPolitica de confidențialitate%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Istoric Audit" @@ -865,10 +888,6 @@ msgstr "Obține Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Obțineți Accessibility Checker Pro (se deschide într-o fereastră nouă)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Lipsește un parametru obligatoriu." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-ru.mo b/languages/accessibility-checker-ru.mo index edbb19fcb..513148122 100644 Binary files a/languages/accessibility-checker-ru.mo and b/languages/accessibility-checker-ru.mo differ diff --git a/languages/accessibility-checker-ru.po b/languages/accessibility-checker-ru.po index 5e8d220ce..71f0be6fa 100644 --- a/languages/accessibility-checker-ru.po +++ b/languages/accessibility-checker-ru.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Получите профи" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Открывается в новом окне." @@ -188,11 +188,14 @@ msgstr "Обновляйтесь прямо сейчас" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Разрешение отклонено" @@ -230,31 +233,37 @@ msgstr "Никогда больше не спрашивайте" msgid "The review action value was not set" msgstr "Значение действия обзора не было установлено" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "Идентификатор поста не был установлен" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "У вас нет разрешения на просмотр этой информации для данной записи." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Упрощенная аннотация не была включена в этот контент." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Ваш контент имеет уровень чтения на уровне 9-го класса или ниже и не требует упрощенного изложения." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Уровень чтения упрощенного резюме слишком высок." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Для этого материала включено упрощенное резюме." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "%s Errors" msgstr[1] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "%s Contrast Errors" msgstr[1] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "%s Warnings" msgstr[1] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" msgstr[1] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Нет резюме для возврата" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Недопустимое имя таблицы" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Эти настройки обеспечивают глобальные исправления для всего Вашего сайта." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Возможно, потребуется пересохранить страницы или провести полное сканирование сайта, чтобы увидеть исправления в отчетах." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Сохранить" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Затронутый код" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Просмотреть ID выпуска %d на сайте, откроется новое окно" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Просмотр на стр" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Исправьте: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Исправьте" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "У Вашей учетной записи нет разрешения игнорировать этот вопрос." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Нет деталей для возврата" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Нет данных о читаемости, которые можно было бы вернуть" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Нет данных игнорирования для возврата" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Резюме не было составлено" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "У вас нет разрешения на редактирование этой записи." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Значение id не было установлено" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Запись не найдена" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Запрос не дал никаких результатов" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Запрос объекта не дал результатов" @@ -636,6 +653,12 @@ msgstr "Фамилия" msgid "Type your first name" msgstr "Введите Ваше первое имя" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Подписываясь, вы соглашаетесь получать электронные письма в соответствии с нашей %1$sПолитикой конфиденциальности%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — История аудита" @@ -875,10 +898,6 @@ msgstr "Получить Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Получить Accessibility Checker Pro (откроется в новом окне)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Отсутствует обязательный параметр." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-sk.mo b/languages/accessibility-checker-sk.mo index 5e2f26801..1a14e93f6 100644 Binary files a/languages/accessibility-checker-sk.mo and b/languages/accessibility-checker-sk.mo differ diff --git a/languages/accessibility-checker-sk.po b/languages/accessibility-checker-sk.po index 8dd8fc01a..020c4b639 100644 --- a/languages/accessibility-checker-sk.po +++ b/languages/accessibility-checker-sk.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Získať pro verziu" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Otvára sa v novom okne." @@ -188,11 +188,14 @@ msgstr "Inovovať teraz" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Prístup zamietnutý" @@ -230,31 +233,37 @@ msgstr "Už sa nikdy nepýtať" msgid "The review action value was not set" msgstr "Hodnota akcie pre recenziu nebola nastavená" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "ID príspevku nebolo nastavené" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Nemáte povolenie na zobrazenie týchto informácií pre tento príspevok." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "K tomuto obsahu nebol pridaný zjednodušený súhrn." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Váš obsah má úroveň čítania na úrovni 9. ročníka alebo nižšej a nevyžaduje zjednodušený súhrn." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Úroveň čítania zjednodušeného súhrnu je príliš vysoká." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "K tomuto obsahu bol pridaný zjednodušený súhrn." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "%s Errors" msgstr[1] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "%s Contrast Errors" msgstr[1] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "%s Warnings" msgstr[1] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" msgstr[1] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Žiadny súhrn na vrátenie" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Neplatný názov tabuľky" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Tieto nastavenia umožňujú globálne opravy na celom vašom webe." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Stránky môže byť potrebné znovu uložiť alebo spustiť úplnú kontrolu webu, aby sa opravy prejavili v reportoch." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Uložiť" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Ovplyvnený kód" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Zobraziť problém s ID %d na webovej stránke, otvorí sa nové okno" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Zobraziť na stránke" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Oprava: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Opraviť" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Váš používateľský účet nemá povolenie ignorovať tento problém." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Žiadne podrobnosti na vrátenie" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Žiadne údaje o čitateľnosti na vrátenie" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Žiadne údaje o ignorovaní na vrátenie" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Súhrn nebol nastavený" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Nemáte povolenie na úpravu tohto príspevku." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Hodnota id nebola nastavená" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Príspevok sa nenašiel" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Dopyt na problém nevrátil žiadne výsledky" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Dopyt na objekt nevrátil žiadne výsledky" @@ -636,6 +653,12 @@ msgstr "Meno" msgid "Type your first name" msgstr "Zadajte svoje meno" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Prihlásením sa na odber súhlasíte s prijímaním e-mailov v súlade s našimi %1$sZásadami ochrany osobných údajov%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — História auditov" @@ -875,10 +898,6 @@ msgstr "Získajte Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Získať Accessibility Checker Pro (otvorí sa v novom okne)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Chýba povinný parameter." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-sl.mo b/languages/accessibility-checker-sl.mo index 464018c7f..61f4e3335 100644 Binary files a/languages/accessibility-checker-sl.mo and b/languages/accessibility-checker-sl.mo differ diff --git a/languages/accessibility-checker-sl.po b/languages/accessibility-checker-sl.po index 0e90ce0b8..df75ee7d2 100644 --- a/languages/accessibility-checker-sl.po +++ b/languages/accessibility-checker-sl.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Nadgradite na Pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Odpre se v novem oknu." @@ -188,11 +188,14 @@ msgstr "Nadgradite zdaj" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Dovoljenje zavrnjeno" @@ -230,31 +233,37 @@ msgstr "Nikoli več ne vprašaj" msgid "The review action value was not set" msgstr "Vrednost dejanja za oceno ni bila nastavljena" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "ID objave ni bil nastavljen" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Za ogled teh informacij za to objavo nimate dovoljenja." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Za to vsebino ni bila vključena poenostavljena povzetka." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Vaša vsebina ima raven branja na ravni 9. razreda ali nižje in ne potrebuje poenostavljenega povzetka." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Raven branja poenostavljenega povzetka je previsoka." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Za to vsebino je bil vključen poenostavljen povzetek." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "%s Errors" msgstr[1] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "%s Contrast Errors" msgstr[1] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "%s Warnings" msgstr[1] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" msgstr[1] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Ni povzetka za vrnitev" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Neveljavno ime tabele" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Te nastavitve omogočajo globalne popravke po celotnem spletnem mestu." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Morda bo treba strani ponovno shraniti ali izvesti celoten pregled spletnega mesta, da bodo popravki vidni v poročilih." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Shrani" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Prizadeta koda" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Oglejte si težavo z ID %d na spletni strani, odpre se novo okno" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Ogled na strani" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Popravek: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Popravi" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Vaš uporabniški račun nima dovoljenja za prezrtje te težave." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Ni podrobnosti za vrnitev" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Ni podatkov o berljivosti za vrnitev" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Ni podatkov o prezrtju za vrnitev" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Povzetek ni bil nastavljen" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Nimate dovoljenja za urejanje te objave." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Vrednost ID ni bila nastavljena" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Objava ni bila najdena" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Poizvedba o težavi ni vrnila rezultatov" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Poizvedba o objektu ni vrnila rezultatov" @@ -636,6 +653,12 @@ msgstr "Ime" msgid "Type your first name" msgstr "Vnesite svoje ime" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "S prijavo na prejemanje obvestil soglašate s prejemanjem e-poštnih sporočil v skladu z našo %1$sPolitiko zasebnosti%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Zgodovina pregledov" @@ -875,10 +898,6 @@ msgstr "Pridobi Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Pridobi Accessibility Checker Pro (se odpre v novem oknu)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Manjka zahtevan parameter." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-sv.mo b/languages/accessibility-checker-sv.mo index 0bd2f1676..806cef874 100644 Binary files a/languages/accessibility-checker-sv.mo and b/languages/accessibility-checker-sv.mo differ diff --git a/languages/accessibility-checker-sv.po b/languages/accessibility-checker-sv.po index 4fc9d1d45..c4a6fe2f1 100644 --- a/languages/accessibility-checker-sv.po +++ b/languages/accessibility-checker-sv.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Skaffa pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Öppnas i ett nytt fönster." @@ -188,11 +188,14 @@ msgstr "Uppgradera nu" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Åtkomst nekad" @@ -230,31 +233,37 @@ msgstr "Fråga aldrig igen" msgid "The review action value was not set" msgstr "Recensionsåtgärdsvärdet var inte inställt" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "Inläggs-ID:t var inte inställt" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Du har inte behörighet att se denna information för detta inlägg." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "En förenklad sammanfattning har inte inkluderats för detta innehåll." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Ditt innehåll har en läsnivå på eller under årskurs 9 och kräver inte en förenklad sammanfattning." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Läsnivån för den förenklade sammanfattningen är för hög." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "En förenklad sammanfattning har inkluderats för detta innehåll." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Ingen sammanfattning att returnera" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Ogiltigt tabellnamn" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Dessa inställningar aktiverar globala korrigeringar över hela din webbplats." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Sidor kan behöva sparas om eller en fullständig webbplatsskanning köras för att se korrigeringar återspeglade i rapporter." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Spara" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Påverkad kod" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Visa problem-ID %d på webbplatsen, öppnas i ett nytt fönster" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Visa på sidan" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Åtgärd: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Åtgärda" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Ditt användarkonto har inte behörighet att ignorera detta problem." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Inga detaljer att returnera" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Inga läsbarhetsdata att returnera" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Inga ignoreringsdata att returnera" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Sammanfattningen var inte inställd" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Du har inte behörighet att redigera detta inlägg." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "ID-värdet var inte inställt" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Inlägg hittades inte" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Problemfrågan returnerade inga resultat" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Objektfrågan returnerade inga resultat" @@ -636,6 +653,12 @@ msgstr "Förnamn" msgid "Type your first name" msgstr "Ange ditt förnamn" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Genom att prenumerera samtycker du till att ta emot e-postmeddelanden i enlighet med vår %1$sIntegritetspolicy%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Granskningshistorik" @@ -875,10 +898,6 @@ msgstr "Skaffa Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Hämta Accessibility Checker Pro (öppnas i ett nytt fönster)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "En obligatorisk parameter saknas." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-th.mo b/languages/accessibility-checker-th.mo index 2369de5b2..62251d369 100644 Binary files a/languages/accessibility-checker-th.mo and b/languages/accessibility-checker-th.mo differ diff --git a/languages/accessibility-checker-th.po b/languages/accessibility-checker-th.po index e1137e34e..41825f8c2 100644 --- a/languages/accessibility-checker-th.po +++ b/languages/accessibility-checker-th.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "อัปเกรดเป็น Pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "เปิดในหน้าต่างใหม่." @@ -188,11 +188,14 @@ msgstr "อัปเกรดทันที" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "การอนุญาตถูกปฏิเสธ" @@ -230,31 +233,37 @@ msgstr "ไม่ต้องถามอีก" msgid "The review action value was not set" msgstr "ค่าการดำเนินการรีวิวไม่ได้ถูกตั้งค่า" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "ไม่ได้กำหนดรหัสโพสต์" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "คุณไม่มีสิทธิ์ดูข้อมูลนี้สำหรับโพสต์นี้" + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "ไม่ได้รวมบทสรุปแบบย่อสำหรับเนื้อหานี้." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "เนื้อหาของคุณมีระดับการอ่านที่ระดับชั้นมัธยมศึกษาปีที่ 3 หรือต่ำกว่า จึงไม่จำเป็นต้องมีบทสรุปแบบย่อ." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "ระดับการอ่านของบทสรุปแบบย่อสูงเกินไป." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "มีการรวมบทสรุปแบบย่อสำหรับเนื้อหานี้แล้ว." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "ไม่มีบทสรุปที่จะส่งคืน" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "ชื่อตารางไม่ถูกต้อง" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "การตั้งค่าเหล่านี้เปิดใช้งานการแก้ไขทั่วทั้งเว็บไซต์ของคุณ." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "อาจจำเป็นต้องบันทึกหน้าใหม่หรือทำการสแกนเว็บไซต์ทั้งหมดเพื่อดูการแก้ไขที่แสดงในรายงาน." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "บันทึก" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "โค้ดที่ได้รับผลกระทบ" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "ดูปัญหา ID %d บนเว็บไซต์ (เปิดในหน้าต่างใหม่)" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "ดูบนหน้าเว็บ" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "แก้ไข: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "แก้ไข" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "บัญชีผู้ใช้ของคุณไม่มีสิทธิ์ในการละเว้นปัญหานี้." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "ไม่มีรายละเอียดที่จะส่งคืน" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "ไม่มีข้อมูลความสามารถในการอ่านที่จะส่งคืน" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "ไม่มีข้อมูลการละเว้นที่จะส่งคืน" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "ไม่ได้กำหนดบทสรุป" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "คุณไม่มีสิทธิ์แก้ไขโพสต์นี้" + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "ไม่ได้กำหนดค่า ID" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "ไม่พบโพสต์" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "การค้นหาปัญหาไม่พบผลลัพธ์" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "การค้นหาวัตถุไม่พบผลลัพธ์" @@ -636,6 +653,12 @@ msgstr "ชื่อ" msgid "Type your first name" msgstr "พิมพ์ชื่อของคุณ" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "โดยการสมัครสมาชิก คุณยินยอมที่จะรับอีเมลตาม %1$sนโยบายความเป็นส่วนตัว%2$s ของเรา" + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — ประวัติการตรวจสอบ" @@ -875,10 +898,6 @@ msgstr "รับ Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "รับ Accessibility Checker Pro (เปิดในหน้าต่างใหม่)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "พารามิเตอร์ที่จำเป็นหายไป" - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-tr.mo b/languages/accessibility-checker-tr.mo index 64c4e0fb8..d358a761d 100644 Binary files a/languages/accessibility-checker-tr.mo and b/languages/accessibility-checker-tr.mo differ diff --git a/languages/accessibility-checker-tr.po b/languages/accessibility-checker-tr.po index 01104d815..7b48eb724 100644 --- a/languages/accessibility-checker-tr.po +++ b/languages/accessibility-checker-tr.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Pro'ya geçin" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Yeni bir pencerede açılır." @@ -188,11 +188,14 @@ msgstr "Şimdi yükseltin" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "İzin reddedildi" @@ -230,31 +233,37 @@ msgstr "Bir daha sorma" msgid "The review action value was not set" msgstr "İnceleme eylem değeri ayarlanmadı" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "Gönderi kimliği ayarlanmadı" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Bu gönderi için bu bilgileri görüntüleme izniniz yok." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Bu içerik için basitleştirilmiş bir özet eklenmemiştir." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "İçeriğinizin okuma düzeyi 9. sınıf veya altındadır ve basitleştirilmiş bir özet gerektirmez." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Basitleştirilmiş özetin okuma düzeyi çok yüksek." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Bu içerik için basitleştirilmiş bir özet eklenmiştir." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Döndürülecek özet yok" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Geçersiz tablo adı" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Bu ayarlar, tüm siteniz genelinde küresel düzeltmeleri etkinleştirir." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Düzeltmelerin raporlarda görüntülenmesi için sayfaların yeniden kaydedilmesi veya tam site taraması yapılması gerekebilir." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Kaydet" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Etkilenen kod" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Web sitesinde %d sorun kimliğini görüntüleyin, yeni bir pencere açar" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Sayfada görüntüle" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Düzeltme: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Düzelt" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Kullanıcı hesabınızın bu sorunu göz ardı etme izni yok." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Döndürülecek ayrıntı yok" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Döndürülecek okunabilirlik verisi yok" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Döndürülecek göz ardı etme verisi yok" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Özet ayarlanmadı" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Bu gönderiyi düzenleme izniniz yok." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Kimlik değeri ayarlanmadı" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Gönderi bulunamadı" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Sorun sorgusu sonuç döndürmedi" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Nesne sorgusu sonuç döndürmedi" @@ -636,6 +653,12 @@ msgstr "Ad" msgid "Type your first name" msgstr "Adınızı yazın" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Abone olarak, %1$sGizlilik Politikamız%2$s uyarınca e-posta almayı kabul etmiş olursunuz." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Denetim Geçmişi" @@ -875,10 +898,6 @@ msgstr "Accessibility Checker Pro'yu Edinin" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Accessibility Checker Pro'yu Edinin (yeni pencerede açılır)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Gerekli bir parametre eksik." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-uk.mo b/languages/accessibility-checker-uk.mo index 8e498a2cb..e357e8b57 100644 Binary files a/languages/accessibility-checker-uk.mo and b/languages/accessibility-checker-uk.mo differ diff --git a/languages/accessibility-checker-uk.po b/languages/accessibility-checker-uk.po index fc58fb85d..18d508c1a 100644 --- a/languages/accessibility-checker-uk.po +++ b/languages/accessibility-checker-uk.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Отримати pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Відкривається в новому вікні." @@ -188,11 +188,14 @@ msgstr "Оновити зараз" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "У доступі відмовлено" @@ -230,31 +233,37 @@ msgstr "Більше не питати" msgid "The review action value was not set" msgstr "Значення дії відгуку не було встановлено" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "ID публікації не було встановлено" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "У вас немає дозволу переглядати цю інформацію для цього допису." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Спрощений підсумок не було включено для цього вмісту." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Ваш вміст має рівень читабельності 9-го класу або нижче і не потребує спрощеного підсумку." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Рівень читабельності спрощеного підсумку занадто високий." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Спрощений підсумок було включено для цього вмісту." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "%s Errors" msgstr[1] "%s Errors" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "%s Contrast Errors" msgstr[1] "%s Contrast Errors" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "%s Warnings" msgstr[1] "%s Warnings" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "%s Ignored Items" msgstr[1] "%s Ignored Items" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Немає підсумку для повернення" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Недійсна назва таблиці" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Ці налаштування вмикають глобальні виправлення на всьому вашому сайті." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Можливо, знадобиться повторно зберегти сторінки або запустити повне сканування сайту, щоб побачити виправлення у звітах." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Зберегти" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Код, що зазнав впливу" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Переглянути проблему з ID %d на сайті, відкривається в новому вікні" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Переглянути на сторінці" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Виправлення: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Виправити" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Ваш обліковий запис користувача не має дозволу ігнорувати цю проблему." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Немає деталей для повернення" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Немає даних про читабельність для повернення" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Немає даних про ігнорування для повернення" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Підсумок не було встановлено" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "У вас немає дозволу редагувати цей допис." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Значення id не було встановлено" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Допис не знайдено" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Запит проблеми не повернув результатів" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Запит об'єкта не повернув результатів" @@ -636,6 +653,12 @@ msgstr "Ім'я" msgid "Type your first name" msgstr "Введіть ваше ім'я" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Підписуючись, ви погоджуєтеся отримувати електронні листи відповідно до нашої %1$sПолітики конфіденційності%2$s." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Історія перевірок" @@ -875,10 +898,6 @@ msgstr "Отримати Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Отримати Accessibility Checker Pro (відкривається у новому вікні)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Відсутній обов'язковий параметр." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-vi.mo b/languages/accessibility-checker-vi.mo index 6c53f21c8..f76a98f7d 100644 Binary files a/languages/accessibility-checker-vi.mo and b/languages/accessibility-checker-vi.mo differ diff --git a/languages/accessibility-checker-vi.po b/languages/accessibility-checker-vi.po index 52ee9bc38..a331e409b 100644 --- a/languages/accessibility-checker-vi.po +++ b/languages/accessibility-checker-vi.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "Nâng cấp lên bản Pro" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "Mở trong cửa sổ mới." @@ -188,11 +188,14 @@ msgstr "Nâng cấp ngay" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "Quyền truy cập bị từ chối" @@ -230,31 +233,37 @@ msgstr "Không bao giờ hỏi lại" msgid "The review action value was not set" msgstr "Giá trị hành động đánh giá không được thiết lập" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "ID bài viết chưa được thiết lập" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "Bạn không có quyền xem thông tin này cho bài viết này." + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "Bản tóm tắt đơn giản hóa chưa được bao gồm cho nội dung này." -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "Nội dung của bạn có trình độ đọc ở mức lớp 9 hoặc thấp hơn và không cần bản tóm tắt đơn giản hóa." -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "Trình độ đọc của bản tóm tắt đơn giản hóa quá cao." -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "Bản tóm tắt đơn giản hóa đã được bao gồm cho nội dung này." #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "Không có bản tóm tắt để trả về" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "Tên bảng không hợp lệ" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "Những cài đặt này cho phép sửa lỗi toàn cục trên toàn bộ trang web của bạn." -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "Các trang có thể cần được lưu lại hoặc quét toàn bộ trang web cần được thực hiện để thấy các sửa đổi được phản ánh trong báo cáo." -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "Lưu" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "Mã bị ảnh hưởng" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "Xem Vấn đề ID %d trên trang web, mở cửa sổ mới" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "Xem trên trang" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "Sửa: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "Sửa" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "Tài khoản người dùng của bạn không có quyền bỏ qua vấn đề này." -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "Không có chi tiết để trả về" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "Không có dữ liệu khả năng đọc để trả về" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "Không có dữ liệu bỏ qua để trả về" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "Bản tóm tắt chưa được thiết lập" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "Bạn không có quyền chỉnh sửa bài viết này." + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "Giá trị id chưa được thiết lập" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "Không tìm thấy bài viết" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "Truy vấn vấn đề không trả về kết quả nào" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "Truy vấn đối tượng không trả về kết quả nào" @@ -636,6 +653,12 @@ msgstr "Tên" msgid "Type your first name" msgstr "Nhập tên của bạn" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "Bằng cách đăng ký, bạn đồng ý nhận email theo %1$sChính sách Quyền riêng tư%2$s của chúng tôi." + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — Lịch sử kiểm tra" @@ -875,10 +898,6 @@ msgstr "Nhận Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "Nhận Accessibility Checker Pro (mở trong cửa sổ mới)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "Thiếu một tham số bắt buộc." - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker-zh-Hans.mo b/languages/accessibility-checker-zh-Hans.mo index a40ef1a50..35ee2813b 100644 Binary files a/languages/accessibility-checker-zh-Hans.mo and b/languages/accessibility-checker-zh-Hans.mo differ diff --git a/languages/accessibility-checker-zh-Hans.po b/languages/accessibility-checker-zh-Hans.po index fcfe035a6..c3a5de772 100644 --- a/languages/accessibility-checker-zh-Hans.po +++ b/languages/accessibility-checker-zh-Hans.po @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -74,7 +74,7 @@ msgid "Get Pro" msgstr "获取专业版" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "在新窗口中打开。" @@ -188,11 +188,14 @@ msgstr "立即升级" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "权限被拒绝" @@ -230,31 +233,37 @@ msgstr "不再询问" msgid "The review action value was not set" msgstr "评价操作值未设置" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "未设置帖子 ID" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "您没有权限查看此帖子的此信息。" + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "本内容未包含简化摘要。" -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "您的内容的阅读水平为九年级或以下,不需要简化摘要。" -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "简化摘要的阅读水平过高。" -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "本内容包含一个简化摘要。" #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -262,7 +271,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -270,7 +279,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -278,86 +287,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "无返回摘要" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "表格名称无效" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "这些设置可对整个网站进行全局修复。" -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "可能需要重新保存页面或进行全站扫描,才能在报告中看到修复结果。" -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "节省" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "受影响的代码" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "在网站上查看问题 ID %d,打开一个新窗口" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "在页面上查看" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "修复: " -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "修复" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "您的用户账户没有权限忽略此问题。" -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "没有返回的详细信息" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "无可读性数据返回" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "没有要返回的忽略数据" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "未设置摘要" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "您没有权限编辑此帖子。" + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "未设置 id 值" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "未找到帖子" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "问题查询未返回结果" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "对象查询未返回结果" @@ -636,6 +653,12 @@ msgstr "名字" msgid "Type your first name" msgstr "输入您的名字" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "通过订阅,您同意根据我们的 %1$s隐私政策%2$s 接收电子邮件。" + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "Accessibility Checker — 审核历史" @@ -875,10 +898,6 @@ msgstr "获取 Accessibility Checker Pro" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "获取 Accessibility Checker Pro(在新窗口中打开)" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "缺少必需参数。" - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/languages/accessibility-checker.pot b/languages/accessibility-checker.pot index 8450cb5ba..d86dfc6dc 100644 --- a/languages/accessibility-checker.pot +++ b/languages/accessibility-checker.pot @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Accessibility Checker 1.30.1\n" +"Project-Id-Version: Accessibility Checker 1.31.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/accessibility-checker\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-08-29T11:10:07+00:00\n" +"POT-Creation-Date: 2025-09-04T18:22:49+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.12.0\n" "X-Domain: accessibility-checker\n" @@ -73,7 +73,7 @@ msgid "Get Pro" msgstr "" #: admin/AdminPage/FixesSettingType/Checkbox.php:67 -#: admin/class-ajax.php:350 +#: admin/class-ajax.php:340 msgid "Opens in a new window." msgstr "" @@ -187,11 +187,14 @@ msgstr "" #: admin/class-admin-notices.php:238 #: admin/class-admin-notices.php:327 #: admin/class-ajax.php:56 -#: admin/class-ajax.php:208 -#: admin/class-ajax.php:593 -#: admin/class-ajax.php:731 -#: admin/class-ajax.php:811 +#: admin/class-ajax.php:202 +#: admin/class-ajax.php:579 +#: admin/class-ajax.php:712 +#: admin/class-ajax.php:786 #: admin/class-frontend-highlight.php:78 +#: admin/class-frontend-highlight.php:96 +#: admin/class-frontend-highlight.php:101 +#: admin/class-frontend-highlight.php:105 msgid "Permission Denied" msgstr "" @@ -229,31 +232,37 @@ msgstr "" msgid "The review action value was not set" msgstr "" -#: admin/class-ajax.php:63 -#: admin/class-ajax.php:215 -#: admin/class-ajax.php:600 -#: admin/class-ajax.php:818 +#: admin/class-ajax.php:60 +#: admin/class-ajax.php:206 +#: admin/class-ajax.php:583 +#: admin/class-ajax.php:790 msgid "The post ID was not set" msgstr "" -#: admin/class-ajax.php:85 +#: admin/class-ajax.php:64 +#: admin/class-ajax.php:210 +#: admin/class-ajax.php:587 +msgid "You do not have permission to view this information for this post." +msgstr "" + +#: admin/class-ajax.php:83 msgid "A Simplified summary has not been included for this content." msgstr "" -#: admin/class-ajax.php:88 +#: admin/class-ajax.php:86 msgid "Your content has a reading level at or below 9th grade and does not require a simplified summary." msgstr "" -#: admin/class-ajax.php:91 +#: admin/class-ajax.php:89 msgid "The reading level of the simplified summary is too high." msgstr "" -#: admin/class-ajax.php:93 +#: admin/class-ajax.php:91 msgid "A simplified summary has been included for this content." msgstr "" #. translators: %s: Number of errors -#: admin/class-ajax.php:129 +#: admin/class-ajax.php:127 #, php-format msgid "%s Error" msgid_plural "%s Errors" @@ -261,7 +270,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of contrast errors -#: admin/class-ajax.php:135 +#: admin/class-ajax.php:133 #, php-format msgid "%s Contrast Error" msgid_plural "%s Contrast Errors" @@ -269,7 +278,7 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of warnings -#: admin/class-ajax.php:141 +#: admin/class-ajax.php:139 #, php-format msgid "%s Warning" msgid_plural "%s Warnings" @@ -277,86 +286,94 @@ msgstr[0] "" msgstr[1] "" #. translators: %s: Number of ignored items -#: admin/class-ajax.php:147 +#: admin/class-ajax.php:145 #, php-format msgid "%s Ignored Item" msgid_plural "%s Ignored Items" msgstr[0] "" msgstr[1] "" -#: admin/class-ajax.php:185 +#: admin/class-ajax.php:182 msgid "No summary to return" msgstr "" -#: admin/class-ajax.php:229 +#: admin/class-ajax.php:221 msgid "Invalid table name" msgstr "" -#: admin/class-ajax.php:375 +#: admin/class-ajax.php:365 msgid "These settings enable global fixes across your entire site." msgstr "" -#: admin/class-ajax.php:376 +#: admin/class-ajax.php:366 msgid "Pages may need to be resaved or a full site scan run to see fixes reflected in reports." msgstr "" -#: admin/class-ajax.php:404 +#: admin/class-ajax.php:394 #: build/frontendHighlighterApp.bundle.js:2 msgid "Save" msgstr "" -#: admin/class-ajax.php:426 +#: admin/class-ajax.php:416 msgid "Affected Code" msgstr "" #. Translators: %d is the issue ID. -#: admin/class-ajax.php:509 +#: admin/class-ajax.php:499 #, php-format msgid "View Issue ID %d on website, opens a new window" msgstr "" -#: admin/class-ajax.php:510 +#: admin/class-ajax.php:500 msgid "View on page" msgstr "" -#: admin/class-ajax.php:529 +#: admin/class-ajax.php:519 msgid "Fix: " msgstr "" -#: admin/class-ajax.php:530 +#: admin/class-ajax.php:520 msgid "Fix" msgstr "" -#: admin/class-ajax.php:553 +#: admin/class-ajax.php:543 msgid "Your user account doesn't have permission to ignore this issue." msgstr "" -#: admin/class-ajax.php:571 +#: admin/class-ajax.php:560 msgid "No details to return" msgstr "" -#: admin/class-ajax.php:710 +#: admin/class-ajax.php:694 msgid "No readability data to return" msgstr "" +#: admin/class-ajax.php:746 #: admin/class-ajax.php:767 -#: admin/class-ajax.php:790 msgid "No ignore data to return" msgstr "" -#: admin/class-ajax.php:825 +#: admin/class-ajax.php:794 msgid "The summary was not set" msgstr "" -#: admin/class-frontend-highlight.php:83 +#: admin/class-ajax.php:798 +msgid "You do not have permission to edit this post." +msgstr "" + +#: admin/class-frontend-highlight.php:82 msgid "The id value was not set" msgstr "" -#: admin/class-frontend-highlight.php:91 +#: admin/class-frontend-highlight.php:89 +msgid "Post not found" +msgstr "" + +#: admin/class-frontend-highlight.php:111 msgid "Issue query returned no results" msgstr "" -#: admin/class-frontend-highlight.php:137 +#: admin/class-frontend-highlight.php:155 msgid "Object query returned no results" msgstr "" @@ -635,6 +652,12 @@ msgstr "" msgid "Type your first name" msgstr "" +#. translators: 1: link to privacy policy page. 2: link close tag. +#: admin/opt-in/class-email-opt-in.php:153 +#, php-format +msgid "By subscribing, you consent to receive emails in accordance with our %1$sPrivacy Policy%2$s." +msgstr "" + #: admin/site-health/class-audit-history.php:32 msgid "Accessibility Checker — Audit History" msgstr "" @@ -874,10 +897,6 @@ msgstr "" msgid "Get Accessibility Checker Pro (opens in new window)" msgstr "" -#: includes/classes/class-rest-api.php:222 -msgid "A required parameter is missing." -msgstr "" - #: includes/classes/class-simplified-summary.php:73 #: includes/options-page.php:897 #: includes/options-page.php:921 diff --git a/package.json b/package.json index 338c5ad94..e9fe38adf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "accessibility-checker", - "version": "1.31.0", + "version": "1.31.1", "description": "Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.", "author": "Equalize Digital", "license": "GPL-2.0+", diff --git a/readme.txt b/readme.txt index f5bce3942..e0279c2e2 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: equalizedigital, alh0319, stevejonesdev Tags: accessibility, accessible, wcag, ada, WP accessibility Requires at least: 6.6 Tested up to: 6.8 -Stable tag: 1.31.0 +Stable tag: 1.31.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -211,6 +211,10 @@ You can report security bugs through the Patchstack Vulnerability Disclosure Pro == Changelog == += 1.31.1 = +* Added: Privacy policy link added at newsletter signup. +* Improved: Error messages returned from some ajax actions are more descriptive. + = 1.31.0 = * Improved: Don't flag YouTube scripts as video present mistakenly. * Improved: Underlined text rule now will find more instances of underlined text. diff --git a/src/emailOptIn/sass/email-opt-in.scss b/src/emailOptIn/sass/email-opt-in.scss index 417ee1239..526c1cf78 100644 --- a/src/emailOptIn/sass/email-opt-in.scss +++ b/src/emailOptIn/sass/email-opt-in.scss @@ -4,6 +4,23 @@ input { width: 100%; } + + ._button-wrapper { + display: flex; + flex-direction: row-reverse; + justify-content: flex-start; + gap: 1rem; + align-items: center; + margin-top: 0; + + .edac-welcome-aside & { + flex-direction: column; + + button { + width: 100%; + } + } + } }